Class: Aws::Keyspaces::Types::UpdateKeyspaceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::UpdateKeyspaceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-keyspaces/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_side_timestamps ⇒ Types::ClientSideTimestamps
The client-side timestamp setting of the table.
-
#keyspace_name ⇒ String
The name of the keyspace.
-
#replication_specification ⇒ Types::ReplicationSpecification
The replication specification of the keyspace includes:.
Instance Attribute Details
#client_side_timestamps ⇒ Types::ClientSideTimestamps
The client-side timestamp setting of the table.
For more information, see [How it works: Amazon Keyspaces client-side timestamps] in the *Amazon Keyspaces Developer Guide*.
[1]: docs.aws.amazon.com/keyspaces/latest/devguide/client-side-timestamps-how-it-works.html
2021 2022 2023 2024 2025 2026 2027 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 2021 class UpdateKeyspaceRequest < Struct.new( :keyspace_name, :replication_specification, :client_side_timestamps) SENSITIVE = [] include Aws::Structure end |
#keyspace_name ⇒ String
The name of the keyspace.
2021 2022 2023 2024 2025 2026 2027 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 2021 class UpdateKeyspaceRequest < Struct.new( :keyspace_name, :replication_specification, :client_side_timestamps) SENSITIVE = [] include Aws::Structure end |
#replication_specification ⇒ Types::ReplicationSpecification
The replication specification of the keyspace includes:
-
‘regionList` - up to six Amazon Web Services Regions where the keyspace is replicated in.
-
‘replicationStrategy` - the required value is `SINGLE_REGION` or `MULTI_REGION`.
2021 2022 2023 2024 2025 2026 2027 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 2021 class UpdateKeyspaceRequest < Struct.new( :keyspace_name, :replication_specification, :client_side_timestamps) SENSITIVE = [] include Aws::Structure end |