working examples for python GreengrassCoreIPCClientV2().get_configuration()

0

Google gives me nothing, when I try to look for working python examples of GreengrassCoreIPCClientV2() followed by get_configuration()

I cant follow the API reference well enough to figure out what to do with Return type: GetConfigurationResponse

??

asked a year ago243 views
2 Answers
2
Accepted Answer

Hi. It's like this (for a component with config parameters foo and bar):

        response = ipc_client.get_configuration()
        foo = response.value['foo']
        bar = response.value['bar']
profile pictureAWS
EXPERT
Greg_B
answered a year ago
1

Thanks! Much appreciated.

answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions