Interface CfnResourceDataSync.AwsOrganizationsSourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnResourceDataSync.AwsOrganizationsSourceProperty.Jsii$Proxy
Enclosing class:
CfnResourceDataSync

@Stability(Stable) public static interface CfnResourceDataSync.AwsOrganizationsSourceProperty extends software.amazon.jsii.JsiiSerializable
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 isn't present, from multiple AWS Regions .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ssm.*;
 AwsOrganizationsSourceProperty awsOrganizationsSourceProperty = AwsOrganizationsSourceProperty.builder()
         .organizationSourceType("organizationSourceType")
         // the properties below are optional
         .organizationalUnits(List.of("organizationalUnits"))
         .build();
 

See Also: