Skip to content

DynamoDB  >  Operations  >  list_imports

list_imports

Operation

list_imports async

list_imports(input: ListImportsInput, plugins: list[Plugin] | None = None) -> ListImportsOutput

Lists completed imports within the past 90 days.

Parameters:

Name Type Description Default
input ListImportsInput

An instance of ListImportsInput.

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
ListImportsOutput

An instance of ListImportsOutput.

Input

ListImportsInput dataclass

Dataclass for ListImportsInput structure.

Attributes

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 ListImports. When provided in this manner, the API fetches the next page of results.

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

The number of ImportSummaryobjects returned in a single page.

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

The Amazon Resource Name (ARN) associated with the table that was imported to.

Output

ListImportsOutput dataclass

Dataclass for ListImportsOutput structure.

Attributes

import_summary_list class-attribute instance-attribute
import_summary_list: list[ImportSummary] | None = None

A list of ImportSummary 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 ListImports again, with NextToken set to this value.