Class: Aws::SSMIncidents::Types::CreateReplicationSetInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMIncidents::Types::CreateReplicationSetInput
- Defined in:
- gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb
Overview
Note:
When making an API call, you may pass CreateReplicationSetInput data as a hash:
{
client_token: "ClientToken",
regions: { # required
"RegionName" => {
sse_kms_key_id: "SseKmsKey",
},
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
A token ensuring that the operation is called only once with the specified details.
-
#regions ⇒ Hash<String,Types::RegionMapInputValue>
The Regions that Incident Manager replicates your data to.
Instance Attribute Details
#client_token ⇒ String
A token ensuring that the operation is called only once with the specified details.
A suitable default value is auto-generated. You should normally not need to pass this option.
253 254 255 256 257 258 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 253 class CreateReplicationSetInput < Struct.new( :client_token, :regions) SENSITIVE = [] include Aws::Structure end |
#regions ⇒ Hash<String,Types::RegionMapInputValue>
The Regions that Incident Manager replicates your data to. You can have up to three Regions in your replication set.
253 254 255 256 257 258 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 253 class CreateReplicationSetInput < Struct.new( :client_token, :regions) SENSITIVE = [] include Aws::Structure end |