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.
4016 4017 4018 4019 4020 4021 4022 4023 |
# File 'lib/aws-sdk-ssm/types.rb', line 4016 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.
4016 4017 4018 4019 4020 4021 4022 4023 |
# File 'lib/aws-sdk-ssm/types.rb', line 4016 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.
4016 4017 4018 4019 4020 4021 4022 4023 |
# File 'lib/aws-sdk-ssm/types.rb', line 4016 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`.
4016 4017 4018 4019 4020 4021 4022 4023 |
# File 'lib/aws-sdk-ssm/types.rb', line 4016 class CreateResourceDataSyncRequest < Struct.new( :sync_name, :s3_destination, :sync_type, :sync_source) SENSITIVE = [] include Aws::Structure end |