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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResourceDataSync.SyncSourcePropertystatic final classAn implementation forCfnResourceDataSync.SyncSourceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectInformation about the AwsOrganizationsSource resource data sync source.default ObjectWhether to automatically synchronize and aggregate data from new AWS Regions when those Regions come online.TheSyncSourceAWS Regions included in the resource data sync.The type of data source for the resource data sync.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceRegions
TheSyncSourceAWS Regions included in the resource data sync. -
getSourceType
The type of data source for the resource data sync.SourceTypeis eitherAwsOrganizations(if an organization is present in AWS Organizations ) orSingleAccountMultiRegions. -
getAwsOrganizationsSource
Information about the AwsOrganizationsSource resource data sync source.A sync source of this type can synchronize data from AWS Organizations .
-
getIncludeFutureRegions
Whether to automatically synchronize and aggregate data from new AWS Regions when those Regions come online. -
builder
-