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
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.
| 1420 1421 1422 1423 1424 1425 | # File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 1420 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.
| 1420 1421 1422 1423 1424 1425 | # File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 1420 class CompleteMigrationMessage < Struct.new( :replication_group_id, :force) SENSITIVE = [] include Aws::Structure end |