Skip to content

DynamoDB  >  Operations  >  list_exports

list_exports

Operation

list_exports async

list_exports(input: ListExportsInput, plugins: list[Plugin] | None = None) -> ListExportsOutput

Lists completed exports within the past 90 days, in reverse alphanumeric order of ExportArn.

Parameters:

Name Type Description Default
input ListExportsInput

An instance of ListExportsInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
ListExportsOutput

An instance of ListExportsOutput.

Input

ListExportsInput dataclass

Dataclass for ListExportsInput structure.

Attributes

max_results class-attribute instance-attribute
max_results: int | None = None

Maximum number of results to return per page.

next_token class-attribute instance-attribute
next_token: str | None = None

An optional string that, if supplied, must be copied from the output of a previous call to ListExports. When provided in this manner, the API fetches the next page of results.

table_arn class-attribute instance-attribute
table_arn: str | None = None

The Amazon Resource Name (ARN) associated with the exported table.

Output

ListExportsOutput dataclass

Dataclass for ListExportsOutput structure.

Attributes

export_summaries class-attribute instance-attribute
export_summaries: list[ExportSummary] | None = None

A list of ExportSummary objects.

next_token class-attribute instance-attribute
next_token: str | None = None

If this value is returned, there are additional results to be displayed. To retrieve them, call ListExports again, with NextToken set to this value.