ApplicationDiscoveryService.Client.
describe_continuous_exports
(**kwargs)¶Lists exports as specified by ID. All continuous exports associated with your user account can be listed if you call DescribeContinuousExports
as is without passing any parameters.
See also: AWS API Documentation
Request Syntax
response = client.describe_continuous_exports(
exportIds=[
'string',
],
maxResults=123,
nextToken='string'
)
The unique IDs assigned to the exports.
DescribeExportTasks
.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) --
The token from the previous call to DescribeExportTasks
.
Exceptions
ApplicationDiscoveryService.Client.exceptions.AuthorizationErrorException
ApplicationDiscoveryService.Client.exceptions.InvalidParameterException
ApplicationDiscoveryService.Client.exceptions.InvalidParameterValueException
ApplicationDiscoveryService.Client.exceptions.ServerInternalErrorException
ApplicationDiscoveryService.Client.exceptions.OperationNotPermittedException
ApplicationDiscoveryService.Client.exceptions.ResourceNotFoundException
ApplicationDiscoveryService.Client.exceptions.HomeRegionNotSetException