DataZone / Paginator / ListEnvironmentBlueprintConfigurations

ListEnvironmentBlueprintConfigurations#

class DataZone.Paginator.ListEnvironmentBlueprintConfigurations#
paginator = client.get_paginator('list_environment_blueprint_configurations')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from DataZone.Client.list_environment_blueprint_configurations().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    domainIdentifier='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • domainIdentifier (string) –

    [REQUIRED]

    The identifier of the Amazon DataZone domain.

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'items': [
        {
            'createdAt': datetime(2015, 1, 1),
            'domainId': 'string',
            'enabledRegions': [
                'string',
            ],
            'environmentBlueprintId': 'string',
            'manageAccessRoleArn': 'string',
            'provisioningRoleArn': 'string',
            'regionalParameters': {
                'string': {
                    'string': 'string'
                }
            },
            'updatedAt': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • items (list) –

      The results of the ListEnvironmentBlueprintConfigurations action.

      • (dict) –

        The configuration details of an environment blueprint.

        • createdAt (datetime) –

          The timestamp of when an environment blueprint was created.

        • domainId (string) –

          The identifier of the Amazon DataZone domain in which an environment blueprint exists.

        • enabledRegions (list) –

          The enabled Amazon Web Services Regions specified in a blueprint configuration.

          • (string) –

        • environmentBlueprintId (string) –

          The identifier of the environment blueprint.

        • manageAccessRoleArn (string) –

          The ARN of the manage access role specified in the environment blueprint configuration.

        • provisioningRoleArn (string) –

          The ARN of the provisioning role specified in the environment blueprint configuration.

        • regionalParameters (dict) –

          The regional parameters of the environment blueprint.

          • (string) –

            • (dict) –

              • (string) –

                • (string) –

        • updatedAt (datetime) –

          The timestamp of when the environment blueprint was updated.

    • NextToken (string) –

      A token to resume pagination.