ApplicationDiscoveryService.Paginator.
DescribeContinuousExports
¶paginator = client.get_paginator('describe_continuous_exports')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from ApplicationDiscoveryService.Client.describe_continuous_exports()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
exportIds=[
'string',
],
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
The unique IDs assigned to the exports.
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.
dict
Response Syntax
{
'descriptions': [
{
'exportId': 'string',
'status': 'START_IN_PROGRESS'|'START_FAILED'|'ACTIVE'|'ERROR'|'STOP_IN_PROGRESS'|'STOP_FAILED'|'INACTIVE',
'statusDetail': 'string',
's3Bucket': 'string',
'startTime': datetime(2015, 1, 1),
'stopTime': datetime(2015, 1, 1),
'dataSource': 'AGENT',
'schemaStorageConfig': {
'string': 'string'
}
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
descriptions (list) --
A list of continuous export descriptions.
(dict) --
A list of continuous export descriptions.
exportId (string) --
The unique ID assigned to this export.
status (string) --
Describes the status of the export. Can be one of the following values:
statusDetail (string) --
Contains information about any errors that have occurred. This data type can have the following values:
s3Bucket (string) --
The name of the s3 bucket where the export data parquet files are stored.
startTime (datetime) --
The timestamp representing when the continuous export was started.
stopTime (datetime) --
The timestamp that represents when this continuous export was stopped.
dataSource (string) --
The type of data collector used to gather this data (currently only offered for AGENT).
schemaStorageConfig (dict) --
An object which describes how the data is stored.
databaseName
- the name of the Glue database used to store the schema.NextToken (string) --
A token to resume pagination.