Class: Aws::SSM::Types::ResourceDataSyncAwsOrganizationsSource

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 ResourceDataSyncAwsOrganizationsSource data as a hash:

{
  organization_source_type: "ResourceDataSyncOrganizationSourceType", # required
  organizational_units: [
    {
      organizational_unit_id: "ResourceDataSyncOrganizationalUnitId",
    },
  ],
}

Information about the AwsOrganizationsSource resource data sync source. A sync source of this type can synchronize data from AWS Organizations or, if an AWS Organization is not present, from multiple AWS Regions.

Instance Attribute Summary collapse

Instance Attribute Details

#organization_source_typeString

If an AWS Organization is present, this is either ‘OrganizationalUnits` or `EntireOrganization`. For `OrganizationalUnits`, the data is aggregated from a set of organization units. For `EntireOrganization`, the data is aggregated from the entire AWS Organization.

Returns:

  • (String)


13941
13942
13943
13944
13945
# File 'lib/aws-sdk-ssm/types.rb', line 13941

class ResourceDataSyncAwsOrganizationsSource < Struct.new(
  :organization_source_type,
  :organizational_units)
  include Aws::Structure
end

#organizational_unitsArray<Types::ResourceDataSyncOrganizationalUnit>

The AWS Organizations organization units included in the sync.



13941
13942
13943
13944
13945
# File 'lib/aws-sdk-ssm/types.rb', line 13941

class ResourceDataSyncAwsOrganizationsSource < Struct.new(
  :organization_source_type,
  :organizational_units)
  include Aws::Structure
end