DataZone / Paginator / ListEnvironmentProfiles
ListEnvironmentProfiles#
- class DataZone.Paginator.ListEnvironmentProfiles#
paginator = client.get_paginator('list_environment_profiles')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
DataZone.Client.list_environment_profiles()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( awsAccountId='string', awsAccountRegion='string', domainIdentifier='string', environmentBlueprintIdentifier='string', name='string', projectIdentifier='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
awsAccountId (string) – The identifier of the Amazon Web Services account where you want to list environment profiles.
awsAccountRegion (string) – The Amazon Web Services region where you want to list environment profiles.
domainIdentifier (string) –
[REQUIRED]
The identifier of the Amazon DataZone domain.
environmentBlueprintIdentifier (string) – The identifier of the blueprint that was used to create the environment profiles that you want to list.
name (string) –
projectIdentifier (string) – The identifier of the Amazon DataZone project.
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': [ { 'awsAccountId': 'string', 'awsAccountRegion': 'string', 'createdAt': datetime(2015, 1, 1), 'createdBy': 'string', 'description': 'string', 'domainId': 'string', 'environmentBlueprintId': 'string', 'id': 'string', 'name': 'string', 'projectId': 'string', 'updatedAt': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
items (list) –
The results of the
ListEnvironmentProfiles
action.(dict) –
The details of an environment profile.
awsAccountId (string) –
The identifier of an Amazon Web Services account in which an environment profile exists.
awsAccountRegion (string) –
The Amazon Web Services Region in which an environment profile exists.
createdAt (datetime) –
The timestamp of when an environment profile was created.
createdBy (string) –
The Amazon DataZone user who created the environment profile.
description (string) –
The description of the environment profile.
domainId (string) –
The identifier of the Amazon DataZone domain in which the environment profile exists.
environmentBlueprintId (string) –
The identifier of a blueprint with which an environment profile is created.
id (string) –
The identifier of the environment profile.
name (string) –
The name of the environment profile.
projectId (string) –
The identifier of a project in which an environment profile exists.
updatedAt (datetime) –
The timestamp of when the environment profile was updated.
NextToken (string) –
A token to resume pagination.