Passer au contenu

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

??

demandé il y a 3 ans407 vues
2 réponses
2
Réponse acceptée

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
répondu il y a 3 ans
1

Thanks! Much appreciated.

répondu il y a 3 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.