Struct aws_sdk_keyspaces::input::RestoreTableInput
source · [−]#[non_exhaustive]pub struct RestoreTableInput { /* private fields */ }
Implementations
sourceimpl RestoreTableInput
impl RestoreTableInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RestoreTable, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RestoreTable, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<RestoreTable
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RestoreTableInput
.
sourceimpl RestoreTableInput
impl RestoreTableInput
sourcepub fn source_keyspace_name(&self) -> Option<&str>
pub fn source_keyspace_name(&self) -> Option<&str>
The keyspace name of the source table.
sourcepub fn source_table_name(&self) -> Option<&str>
pub fn source_table_name(&self) -> Option<&str>
The name of the source table.
sourcepub fn target_keyspace_name(&self) -> Option<&str>
pub fn target_keyspace_name(&self) -> Option<&str>
The name of the target keyspace.
sourcepub fn target_table_name(&self) -> Option<&str>
pub fn target_table_name(&self) -> Option<&str>
The name of the target table.
sourcepub fn restore_timestamp(&self) -> Option<&DateTime>
pub fn restore_timestamp(&self) -> Option<&DateTime>
The restore timestamp in ISO 8601 format.
sourcepub fn capacity_specification_override(&self) -> Option<&CapacitySpecification>
pub fn capacity_specification_override(&self) -> Option<&CapacitySpecification>
Specifies the read/write throughput capacity mode for the target table. The options are:
• throughputMode:PAY_PER_REQUEST
• throughputMode:PROVISIONED
- Provisioned capacity mode requires readCapacityUnits
and writeCapacityUnits
as input.
The default is throughput_mode:PAY_PER_REQUEST
.
For more information, see Read/write capacity modes in the Amazon Keyspaces Developer Guide.
sourcepub fn encryption_specification_override(
&self
) -> Option<&EncryptionSpecification>
pub fn encryption_specification_override(
&self
) -> Option<&EncryptionSpecification>
Specifies the encryption settings for the target table. You can choose one of the following KMS key (KMS key):
• type:AWS_OWNED_KMS_KEY
- This key is owned by Amazon Keyspaces.
• type:CUSTOMER_MANAGED_KMS_KEY
- This key is stored in your account and is created, owned, and managed by you. This option requires the kms_key_identifier
of the KMS key in Amazon Resource Name (ARN) format as input.
The default is type:AWS_OWNED_KMS_KEY
.
For more information, see Encryption at rest in the Amazon Keyspaces Developer Guide.
sourcepub fn point_in_time_recovery_override(&self) -> Option<&PointInTimeRecovery>
pub fn point_in_time_recovery_override(&self) -> Option<&PointInTimeRecovery>
Specifies the pointInTimeRecovery
settings for the target table. The options are:
• ENABLED
• DISABLED
If it's not specified, the default is DISABLED
.
For more information, see Point-in-time recovery in the Amazon Keyspaces Developer Guide.
A list of key-value pair tags to be attached to the restored table.
For more information, see Adding tags and labels to Amazon Keyspaces resources in the Amazon Keyspaces Developer Guide.
Trait Implementations
sourceimpl Clone for RestoreTableInput
impl Clone for RestoreTableInput
sourcefn clone(&self) -> RestoreTableInput
fn clone(&self) -> RestoreTableInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more