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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnResourceDataSync.SyncSourceProperty
static final class
An implementation forCfnResourceDataSync.SyncSourceProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Information about the AwsOrganizationsSource resource data sync source.default Object
Whether to automatically synchronize and aggregate data from new AWS Regions when those Regions come online.TheSyncSource
AWS 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
TheSyncSource
AWS Regions included in the resource data sync. -
getSourceType
The type of data source for the resource data sync.SourceType
is 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
-