Skip to content

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 3 years ago401 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']
AWS
EXPERT
answered 3 years ago
1

Thanks! Much appreciated.

answered 3 years 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.