Class: Aws::DynamoDB::Types::GlobalTableWitnessGroupUpdate
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DynamoDB::Types::GlobalTableWitnessGroupUpdate
 
 
- Defined in:
 - gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
 
Overview
Represents one of the following:
A new witness to be added to a new global table.
An existing witness to be removed from an existing global table.
You can configure one witness per MRSC global table.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #create  ⇒ Types::CreateGlobalTableWitnessGroupMemberAction 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies a witness Region to be added to a new MRSC global table.
 - 
  
    
      #delete  ⇒ Types::DeleteGlobalTableWitnessGroupMemberAction 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies a witness Region to be removed from an existing global table.
 
Instance Attribute Details
#create ⇒ Types::CreateGlobalTableWitnessGroupMemberAction
Specifies a witness Region to be added to a new MRSC global table. The witness must be added when creating the MRSC global table.
      4658 4659 4660 4661 4662 4663  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 4658 class GlobalTableWitnessGroupUpdate < Struct.new( :create, :delete) SENSITIVE = [] include Aws::Structure end  | 
  
#delete ⇒ Types::DeleteGlobalTableWitnessGroupMemberAction
Specifies a witness Region to be removed from an existing global table. Must be done in conjunction with removing a replica. The deletion of both a witness and replica converts the remaining replica to a single-Region DynamoDB table.
      4658 4659 4660 4661 4662 4663  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 4658 class GlobalTableWitnessGroupUpdate < Struct.new( :create, :delete) SENSITIVE = [] include Aws::Structure end  |