Class: Aws::Keyspaces::Types::RestoreTableRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-keyspaces/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#auto_scaling_specificationTypes::AutoScalingSpecification

The optional auto scaling settings for the restored table in provisioned capacity mode. Specifies if the service can manage throughput capacity of a provisioned table automatically on your behalf. Amazon Keyspaces auto scaling helps you provision throughput capacity for variable workloads efficiently by increasing and decreasing your table’s read and write capacity automatically in response to application traffic.

For more information, see [Managing throughput capacity automatically with Amazon Keyspaces auto scaling] in the *Amazon Keyspaces Developer Guide*.

[1]: docs.aws.amazon.com/keyspaces/latest/devguide/autoscaling.html



1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
# File 'lib/aws-sdk-keyspaces/types.rb', line 1452

class RestoreTableRequest < Struct.new(
  :source_keyspace_name,
  :source_table_name,
  :target_keyspace_name,
  :target_table_name,
  :restore_timestamp,
  :capacity_specification_override,
  :encryption_specification_override,
  :point_in_time_recovery_override,
  :tags_override,
  :auto_scaling_specification,
  :replica_specifications)
  SENSITIVE = []
  include Aws::Structure
end

#capacity_specification_overrideTypes::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*.

[1]: docs.aws.amazon.com/keyspaces/latest/devguide/ReadWriteCapacityMode.html



1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
# File 'lib/aws-sdk-keyspaces/types.rb', line 1452

class RestoreTableRequest < Struct.new(
  :source_keyspace_name,
  :source_table_name,
  :target_keyspace_name,
  :target_table_name,
  :restore_timestamp,
  :capacity_specification_override,
  :encryption_specification_override,
  :point_in_time_recovery_override,
  :tags_override,
  :auto_scaling_specification,
  :replica_specifications)
  SENSITIVE = []
  include Aws::Structure
end

#encryption_specification_overrideTypes::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*.

[1]: docs.aws.amazon.com/keyspaces/latest/devguide/EncryptionAtRest.html



1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
# File 'lib/aws-sdk-keyspaces/types.rb', line 1452

class RestoreTableRequest < Struct.new(
  :source_keyspace_name,
  :source_table_name,
  :target_keyspace_name,
  :target_table_name,
  :restore_timestamp,
  :capacity_specification_override,
  :encryption_specification_override,
  :point_in_time_recovery_override,
  :tags_override,
  :auto_scaling_specification,
  :replica_specifications)
  SENSITIVE = []
  include Aws::Structure
end

#point_in_time_recovery_overrideTypes::PointInTimeRecovery

Specifies the ‘pointInTimeRecovery` settings for the target table. The options are:

  • ‘status=ENABLED`

  • ‘status=DISABLED`

If it’s not specified, the default is ‘status=DISABLED`.

For more information, see [Point-in-time recovery] in the *Amazon Keyspaces Developer Guide*.

[1]: docs.aws.amazon.com/keyspaces/latest/devguide/PointInTimeRecovery.html



1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
# File 'lib/aws-sdk-keyspaces/types.rb', line 1452

class RestoreTableRequest < Struct.new(
  :source_keyspace_name,
  :source_table_name,
  :target_keyspace_name,
  :target_table_name,
  :restore_timestamp,
  :capacity_specification_override,
  :encryption_specification_override,
  :point_in_time_recovery_override,
  :tags_override,
  :auto_scaling_specification,
  :replica_specifications)
  SENSITIVE = []
  include Aws::Structure
end

#replica_specificationsArray<Types::ReplicaSpecification>

The optional Region specific settings of a multi-Regional table.

Returns:



1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
# File 'lib/aws-sdk-keyspaces/types.rb', line 1452

class RestoreTableRequest < Struct.new(
  :source_keyspace_name,
  :source_table_name,
  :target_keyspace_name,
  :target_table_name,
  :restore_timestamp,
  :capacity_specification_override,
  :encryption_specification_override,
  :point_in_time_recovery_override,
  :tags_override,
  :auto_scaling_specification,
  :replica_specifications)
  SENSITIVE = []
  include Aws::Structure
end

#restore_timestampTime

The restore timestamp in ISO 8601 format.

Returns:

  • (Time)


1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
# File 'lib/aws-sdk-keyspaces/types.rb', line 1452

class RestoreTableRequest < Struct.new(
  :source_keyspace_name,
  :source_table_name,
  :target_keyspace_name,
  :target_table_name,
  :restore_timestamp,
  :capacity_specification_override,
  :encryption_specification_override,
  :point_in_time_recovery_override,
  :tags_override,
  :auto_scaling_specification,
  :replica_specifications)
  SENSITIVE = []
  include Aws::Structure
end

#source_keyspace_nameString

The keyspace name of the source table.

Returns:

  • (String)


1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
# File 'lib/aws-sdk-keyspaces/types.rb', line 1452

class RestoreTableRequest < Struct.new(
  :source_keyspace_name,
  :source_table_name,
  :target_keyspace_name,
  :target_table_name,
  :restore_timestamp,
  :capacity_specification_override,
  :encryption_specification_override,
  :point_in_time_recovery_override,
  :tags_override,
  :auto_scaling_specification,
  :replica_specifications)
  SENSITIVE = []
  include Aws::Structure
end

#source_table_nameString

The name of the source table.

Returns:

  • (String)


1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
# File 'lib/aws-sdk-keyspaces/types.rb', line 1452

class RestoreTableRequest < Struct.new(
  :source_keyspace_name,
  :source_table_name,
  :target_keyspace_name,
  :target_table_name,
  :restore_timestamp,
  :capacity_specification_override,
  :encryption_specification_override,
  :point_in_time_recovery_override,
  :tags_override,
  :auto_scaling_specification,
  :replica_specifications)
  SENSITIVE = []
  include Aws::Structure
end

#tags_overrideArray<Types::Tag>

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*.

[1]: docs.aws.amazon.com/keyspaces/latest/devguide/tagging-keyspaces.html

Returns:



1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
# File 'lib/aws-sdk-keyspaces/types.rb', line 1452

class RestoreTableRequest < Struct.new(
  :source_keyspace_name,
  :source_table_name,
  :target_keyspace_name,
  :target_table_name,
  :restore_timestamp,
  :capacity_specification_override,
  :encryption_specification_override,
  :point_in_time_recovery_override,
  :tags_override,
  :auto_scaling_specification,
  :replica_specifications)
  SENSITIVE = []
  include Aws::Structure
end

#target_keyspace_nameString

The name of the target keyspace.

Returns:

  • (String)


1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
# File 'lib/aws-sdk-keyspaces/types.rb', line 1452

class RestoreTableRequest < Struct.new(
  :source_keyspace_name,
  :source_table_name,
  :target_keyspace_name,
  :target_table_name,
  :restore_timestamp,
  :capacity_specification_override,
  :encryption_specification_override,
  :point_in_time_recovery_override,
  :tags_override,
  :auto_scaling_specification,
  :replica_specifications)
  SENSITIVE = []
  include Aws::Structure
end

#target_table_nameString

The name of the target table.

Returns:

  • (String)


1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
# File 'lib/aws-sdk-keyspaces/types.rb', line 1452

class RestoreTableRequest < Struct.new(
  :source_keyspace_name,
  :source_table_name,
  :target_keyspace_name,
  :target_table_name,
  :restore_timestamp,
  :capacity_specification_override,
  :encryption_specification_override,
  :point_in_time_recovery_override,
  :tags_override,
  :auto_scaling_specification,
  :replica_specifications)
  SENSITIVE = []
  include Aws::Structure
end