Interface CfnResourceDataSync.IAwsOrganizationsSourceProperty
Information about the AwsOrganizationsSource resource data sync source.
Namespace: Amazon.CDK.AWS.SSM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnResourceDataSync.IAwsOrganizationsSourceProperty
Syntax (vb)
Public Interface CfnResourceDataSync.IAwsOrganizationsSourceProperty
Remarks
A sync source of this type can synchronize data from AWS Organizations or, if an AWS organization isn't present, from multiple AWS Regions .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SSM;
var awsOrganizationsSourceProperty = new AwsOrganizationsSourceProperty {
OrganizationSourceType = "organizationSourceType",
// the properties below are optional
OrganizationalUnits = new [] { "organizationalUnits" }
};
Synopsis
Properties
| OrganizationSourceType | If an AWS organization is present, this is either |
| OrganizationalUnits | The AWS Organizations organization units included in the sync. |
Properties
OrganizationSourceType
If an AWS organization is present, this is either OrganizationalUnits or EntireOrganization .
string OrganizationSourceType { get; }
Property Value
Remarks
For OrganizationalUnits , the data is aggregated from a set of organization units. For EntireOrganization , the data is aggregated from the entire AWS organization.
OrganizationalUnits
The AWS Organizations organization units included in the sync.
string[]? OrganizationalUnits { get; }
Property Value
string[]