DataZone / Client / list_environment_blueprint_configurations

list_environment_blueprint_configurations#

DataZone.Client.list_environment_blueprint_configurations(**kwargs)#

Lists blueprint configurations for a Amazon DataZone environment.

See also: AWS API Documentation

Request Syntax

response = client.list_environment_blueprint_configurations(
    domainIdentifier='string',
    maxResults=123,
    nextToken='string'
)
Parameters:
  • domainIdentifier (string) –

    [REQUIRED]

    The identifier of the Amazon DataZone domain.

  • maxResults (integer) – The maximum number of blueprint configurations to return in a single call to ListEnvironmentBlueprintConfigurations. When the number of configurations to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListEnvironmentBlueprintConfigurations to list the next set of configurations.

  • nextToken (string) – When the number of blueprint configurations is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of configurations, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListEnvironmentBlueprintConfigurations to list the next set of configurations.

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) –

      When the number of blueprint configurations is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of configurations, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListEnvironmentBlueprintConfigurations to list the next set of configurations.

Exceptions