GroundStation / Client / list_dataflow_endpoint_groups

list_dataflow_endpoint_groups#

GroundStation.Client.list_dataflow_endpoint_groups(**kwargs)#

Returns a list of DataflowEndpoint groups.

See also: AWS API Documentation

Request Syntax

response = client.list_dataflow_endpoint_groups(
    maxResults=123,
    nextToken='string'
)
Parameters:
  • maxResults (integer) – Maximum number of dataflow endpoint groups returned.

  • nextToken (string) – Next token returned in the request of a previous ListDataflowEndpointGroups call. Used to get the next page of results.

Return type:

dict

Returns:

Response Syntax

{
    'dataflowEndpointGroupList': [
        {
            'dataflowEndpointGroupArn': 'string',
            'dataflowEndpointGroupId': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • dataflowEndpointGroupList (list) –

      A list of dataflow endpoint groups.

      • (dict) –

        Item in a list of DataflowEndpoint groups.

        • dataflowEndpointGroupArn (string) –

          ARN of a dataflow endpoint group.

        • dataflowEndpointGroupId (string) –

          UUID of a dataflow endpoint group.

    • nextToken (string) –

      Next token returned in the response of a previous ListDataflowEndpointGroups call. Used to get the next page of results.

Exceptions