Skip to content

Restore table to point in time

async_boto.validation.dynamodb.restore_table_to_point_in_time

RestoreTableToPointInTimeRequest

Bases: BaseModel

Request model for the RestoreTableToPointInTime operation.

ATTRIBUTE DESCRIPTION
TargetTableName

The name of the new table to which it must be restored to.

TYPE: str

BillingModeOverride

The billing mode of the restored table.

TYPE: Optional[str]

GlobalSecondaryIndexOverride

List of global secondary indexes for the restored table.

TYPE: Optional[List[GlobalSecondaryIndex]]

LocalSecondaryIndexOverride

List of local secondary indexes for the restored table.

TYPE: Optional[List[LocalSecondaryIndex]]

OnDemandThroughputOverride

Sets the maximum number of read and write units for the specified on-demand table.

TYPE: Optional[OnDemandThroughput]

ProvisionedThroughputOverride

Provisioned throughput settings for the restored table.

TYPE: Optional[ProvisionedThroughput]

RestoreDateTime

Time in the past to restore the table to.

TYPE: Optional[datetime]

SourceTableArn

The DynamoDB table that will be restored.

TYPE: Optional[str]

SourceTableName

Name of the source table that is being restored.

TYPE: Optional[str]

SSESpecificationOverride

The new server-side encryption settings for the restored table.

TYPE: Optional[SSESpecification]

UseLatestRestorableTime

Restore the table to the latest possible time.

TYPE: Optional[bool]

TargetTableName instance-attribute

TargetTableName

BillingModeOverride class-attribute instance-attribute

BillingModeOverride = None

GlobalSecondaryIndexOverride class-attribute instance-attribute

GlobalSecondaryIndexOverride = None

LocalSecondaryIndexOverride class-attribute instance-attribute

LocalSecondaryIndexOverride = None

OnDemandThroughputOverride class-attribute instance-attribute

OnDemandThroughputOverride = None

ProvisionedThroughputOverride class-attribute instance-attribute

ProvisionedThroughputOverride = None

RestoreDateTime class-attribute instance-attribute

RestoreDateTime = None

SourceTableArn class-attribute instance-attribute

SourceTableArn = None

SourceTableName class-attribute instance-attribute

SourceTableName = None

SSESpecificationOverride class-attribute instance-attribute

SSESpecificationOverride = None

UseLatestRestorableTime class-attribute instance-attribute

UseLatestRestorableTime = None

RestoreTableToPointInTimeResponse

Bases: BaseModel

Response model for the RestoreTableToPointInTime operation.

ATTRIBUTE DESCRIPTION
TableDescription

Represents the properties of a table.

TYPE: TableDescription

TableDescription instance-attribute

TableDescription