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();
 
  • Method Details

    • getSourceRegions

      @Stability(Stable) @NotNull List<String> getSourceRegions()
      The SyncSource AWS Regions included in the resource data sync.
    • getSourceType

      @Stability(Stable) @NotNull String getSourceType()
      The type of data source for the resource data sync.

      SourceType is either AwsOrganizations (if an organization is present in AWS Organizations ) or SingleAccountMultiRegions .

    • getAwsOrganizationsSource

      @Stability(Stable) @Nullable default Object getAwsOrganizationsSource()
      Information about the AwsOrganizationsSource resource data sync source.

      A sync source of this type can synchronize data from AWS Organizations .

    • getIncludeFutureRegions

      @Stability(Stable) @Nullable default Object getIncludeFutureRegions()
      Whether to automatically synchronize and aggregate data from new AWS Regions when those Regions come online.
    • builder

      @Stability(Stable) static CfnResourceDataSync.SyncSourceProperty.Builder builder()
      Returns:
      a CfnResourceDataSync.SyncSourceProperty.Builder of CfnResourceDataSync.SyncSourceProperty