Interface CfnResourceDataSyncPropsMixin.SyncSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceDataSyncPropsMixin.SyncSourceProperty.Jsii$Proxy
- Enclosing class:
CfnResourceDataSyncPropsMixin
@Stability(Stable)
public static interface CfnResourceDataSyncPropsMixin.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.cfnpropertymixins.services.ssm.*;
SyncSourceProperty syncSourceProperty = SyncSourceProperty.builder()
.awsOrganizationsSource(AwsOrganizationsSourceProperty.builder()
.organizationalUnits(List.of("organizationalUnits"))
.organizationSourceType("organizationSourceType")
.build())
.includeFutureRegions(false)
.sourceRegions(List.of("sourceRegions"))
.sourceType("sourceType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResourceDataSyncPropsMixin.SyncSourcePropertystatic final classAn implementation forCfnResourceDataSyncPropsMixin.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.default StringThe type of data source for the resource data sync.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsOrganizationsSource
Information about the AwsOrganizationsSource resource data sync source.A sync source of this type can synchronize data from AWS Organizations .
Returns union: either
IResolvableorCfnResourceDataSyncPropsMixin.AwsOrganizationsSourceProperty- See Also:
-
getIncludeFutureRegions
Whether to automatically synchronize and aggregate data from new AWS Regions when those Regions come online.Returns union: either
BooleanorIResolvable- See Also:
-
getSourceRegions
TheSyncSourceAWS Regions included in the resource data sync.- See Also:
-
getSourceType
The type of data source for the resource data sync.SourceTypeis eitherAwsOrganizations(if an organization is present in AWS Organizations ) orSingleAccountMultiRegions.- See Also:
-
builder
-