Class: Aws::SSM::Types::CreateResourceDataSyncRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SSM::Types::CreateResourceDataSyncRequest
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-ssm/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #s3_destination  ⇒ Types::ResourceDataSyncS3Destination 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Amazon S3 configuration details for the sync.
 - 
  
    
      #sync_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A name for the configuration.
 - 
  
    
      #sync_source  ⇒ Types::ResourceDataSyncSource 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specify information about the data sources to synchronize.
 - 
  
    
      #sync_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specify ‘SyncToDestination` to create a resource data sync that synchronizes data to an S3 bucket for Inventory.
 
Instance Attribute Details
#s3_destination ⇒ Types::ResourceDataSyncS3Destination
Amazon S3 configuration details for the sync. This parameter is required if the ‘SyncType` value is SyncToDestination.
      4219 4220 4221 4222 4223 4224 4225 4226  | 
    
      # File 'lib/aws-sdk-ssm/types.rb', line 4219 class CreateResourceDataSyncRequest < Struct.new( :sync_name, :s3_destination, :sync_type, :sync_source) SENSITIVE = [] include Aws::Structure end  | 
  
#sync_name ⇒ String
A name for the configuration.
      4219 4220 4221 4222 4223 4224 4225 4226  | 
    
      # File 'lib/aws-sdk-ssm/types.rb', line 4219 class CreateResourceDataSyncRequest < Struct.new( :sync_name, :s3_destination, :sync_type, :sync_source) SENSITIVE = [] include Aws::Structure end  | 
  
#sync_source ⇒ Types::ResourceDataSyncSource
Specify information about the data sources to synchronize. This parameter is required if the ‘SyncType` value is SyncFromSource.
      4219 4220 4221 4222 4223 4224 4225 4226  | 
    
      # File 'lib/aws-sdk-ssm/types.rb', line 4219 class CreateResourceDataSyncRequest < Struct.new( :sync_name, :s3_destination, :sync_type, :sync_source) SENSITIVE = [] include Aws::Structure end  | 
  
#sync_type ⇒ String
Specify ‘SyncToDestination` to create a resource data sync that synchronizes data to an S3 bucket for Inventory. If you specify `SyncToDestination`, you must provide a value for `S3Destination`. Specify `SyncFromSource` to synchronize data from a single account and multiple Regions, or multiple Amazon Web Services accounts and Amazon Web Services Regions, as listed in Organizations for Explorer. If you specify `SyncFromSource`, you must provide a value for `SyncSource`. The default value is `SyncToDestination`.
      4219 4220 4221 4222 4223 4224 4225 4226  | 
    
      # File 'lib/aws-sdk-ssm/types.rb', line 4219 class CreateResourceDataSyncRequest < Struct.new( :sync_name, :s3_destination, :sync_type, :sync_source) SENSITIVE = [] include Aws::Structure end  |