Interface CfnResourceDataSync.SyncSourceProperty

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

@Stability(Stable) public static interface CfnResourceDataSync.SyncSourceProperty extends software.amazon.jsii.JsiiSerializable
Information about the source of the data included in the resource data sync.

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.*;
 SyncSourceProperty syncSourceProperty = SyncSourceProperty.builder()
         .sourceRegions(List.of("sourceRegions"))
         .sourceType("sourceType")
         // the properties below are optional
         .awsOrganizationsSource(AwsOrganizationsSourceProperty.builder()
                 .organizationSourceType("organizationSourceType")
                 // the properties below are optional
                 .organizationalUnits(List.of("organizationalUnits"))
                 .build())
         .includeFutureRegions(false)
         .build();
 

See Also: