Class: Aws::SSM::Types::UpdateResourceDataSyncRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ssm/types.rb

Overview

Note:

When making an API call, you may pass UpdateResourceDataSyncRequest data as a hash:

{
  sync_name: "ResourceDataSyncName", # required
  sync_type: "ResourceDataSyncType", # required
  sync_source: { # required
    source_type: "ResourceDataSyncSourceType", # required
    aws_organizations_source: {
      organization_source_type: "ResourceDataSyncOrganizationSourceType", # required
      organizational_units: [
        {
          organizational_unit_id: "ResourceDataSyncOrganizationalUnitId",
        },
      ],
    },
    source_regions: ["ResourceDataSyncSourceRegion"], # required
    include_future_regions: false,
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#sync_nameString

The name of the resource data sync you want to update.

Returns:

  • (String)


17064
17065
17066
17067
17068
17069
# File 'lib/aws-sdk-ssm/types.rb', line 17064

class UpdateResourceDataSyncRequest < Struct.new(
  :sync_name,
  :sync_type,
  :sync_source)
  include Aws::Structure
end

#sync_sourceTypes::ResourceDataSyncSource

Specify information about the data sources to synchronize.



17064
17065
17066
17067
17068
17069
# File 'lib/aws-sdk-ssm/types.rb', line 17064

class UpdateResourceDataSyncRequest < Struct.new(
  :sync_name,
  :sync_type,
  :sync_source)
  include Aws::Structure
end

#sync_typeString

The type of resource data sync. If ‘SyncType` is `SyncToDestination`, then the resource data sync synchronizes data to an Amazon S3 bucket. If the `SyncType` is `SyncFromSource` then the resource data sync synchronizes data from AWS Organizations or from multiple AWS Regions.

Returns:

  • (String)


17064
17065
17066
17067
17068
17069
# File 'lib/aws-sdk-ssm/types.rb', line 17064

class UpdateResourceDataSyncRequest < Struct.new(
  :sync_name,
  :sync_type,
  :sync_source)
  include Aws::Structure
end