list_gateways
(**kwargs)¶Retrieves a list of gateway summaries. Use GetGateway to retrieve details of a specific gateway. An optional gateway group ARN can be provided to only retrieve gateway summaries of gateways that are associated with that gateway group ARN.
See also: AWS API Documentation
Request Syntax
response = client.list_gateways(
GatewayGroupArn='string',
NextToken='string',
MaxResults=123
)
dict
Response Syntax
{
'Gateways': [
{
'Arn': 'string',
'Name': 'string',
'Description': 'string',
'GatewayGroupArn': 'string',
'SoftwareVersion': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
Gateways (list) --
The gateways in the list.
(dict) --
The summary of a gateway.
Arn (string) --
The ARN of the gateway.
Name (string) --
The name of the gateway.
Description (string) --
The description of the gateway.
GatewayGroupArn (string) --
The ARN of the gateway group that the gateway is associated to.
SoftwareVersion (string) --
The software version of the gateway. The gateway automatically updates its software version during normal operation.
NextToken (string) --
The token used to paginate though multiple pages of gateway summaries.