Does an GetThingShadowRequest in awsiot.greengrasscoreipc.model require an internet connection back to IOTCore?

0

Hi, I am working on a project that uses IOT named shadows on a raspberry pi. I am wondering does an GetThingShadowRequest in awsiot.greengrasscoreipc.model require an internet connection back to AWS's IOTCore? I have deployed the shadow manager component to allow syncing back to IOTCore. So I understand that syncing will happen when connectivity is returned.

But I am wondering if the raspberry pi looses internet connectivity can my code still get and update the local named shadows?

For example, will the following code still work if my raspberry pi doesn't have internet connectivity? Or more specifically does the following code on a raspberry pi cause the request to be made back to IOTcore on AWS?

ipc_client = awsiot.greengrasscoreipc.connect()
# create the GetThingShadow request
get_thing_shadow_request = GetThingShadowRequest()

Many thanks,

Oide

asked a year ago209 views
1 Answer
0

The shadow manager component will automatically synchronize shadow state between the cloud and the device. It will continue to work when the device is offline, using the last synchronized state. When the device eventually gets a connection again, the shadow state will be synchronized again with the cloud state.

Cheers,

Michael

AWS
EXPERT
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