GlueDataBrew.Paginator.
ListProjects
¶paginator = client.get_paginator('list_projects')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from GlueDataBrew.Client.list_projects()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
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.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'Projects': [
{
'AccountId': 'string',
'CreateDate': datetime(2015, 1, 1),
'CreatedBy': 'string',
'DatasetName': 'string',
'LastModifiedDate': datetime(2015, 1, 1),
'LastModifiedBy': 'string',
'Name': 'string',
'RecipeName': 'string',
'ResourceArn': 'string',
'Sample': {
'Size': 123,
'Type': 'FIRST_N'|'LAST_N'|'RANDOM'
},
'Tags': {
'string': 'string'
},
'RoleArn': 'string',
'OpenedBy': 'string',
'OpenDate': datetime(2015, 1, 1)
},
],
}
Response Structure
A list of projects that are defined .
Represents all of the attributes of a DataBrew project.
The ID of the Amazon Web Services account that owns the project.
The date and time that the project was created.
The Amazon Resource Name (ARN) of the user who crated the project.
The dataset that the project is to act upon.
The last modification date and time for the project.
The Amazon Resource Name (ARN) of the user who last modified the project.
The unique name of a project.
The name of a recipe that will be developed during a project session.
The Amazon Resource Name (ARN) for the project.
The sample size and sampling type to apply to the data. If this parameter isn't specified, then the sample consists of the first 500 rows from the dataset.
The number of rows in the sample.
The way in which DataBrew obtains rows from a dataset.
Metadata tags that have been applied to the project.
The Amazon Resource Name (ARN) of the role that will be assumed for this project.
The Amazon Resource Name (ARN) of the user that opened the project for use.
The date and time when the project was opened.