Class: Aws::ElastiCache::Types::CompleteMigrationMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::CompleteMigrationMessage
- Defined in:
- gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb
Overview
Note:
When making an API call, you may pass CompleteMigrationMessage data as a hash:
{
replication_group_id: "String", # required
force: false,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#force ⇒ Boolean
Forces the migration to stop without ensuring that data is in sync.
-
#replication_group_id ⇒ String
The ID of the replication group to which data is being migrated.
Instance Attribute Details
#force ⇒ Boolean
Forces the migration to stop without ensuring that data is in sync. It is recommended to use this option only to abort the migration and not recommended when application wants to continue migration to ElastiCache.
1333 1334 1335 1336 1337 1338 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 1333 class CompleteMigrationMessage < Struct.new( :replication_group_id, :force) SENSITIVE = [] include Aws::Structure end |
#replication_group_id ⇒ String
The ID of the replication group to which data is being migrated.
1333 1334 1335 1336 1337 1338 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 1333 class CompleteMigrationMessage < Struct.new( :replication_group_id, :force) SENSITIVE = [] include Aws::Structure end |