@Stability(value=Stable)
public static interface CfnResourceDataSync.SyncSourceProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnResourceDataSync.SyncSourceProperty.Builder
A builder for
CfnResourceDataSync.SyncSourceProperty |
static class |
CfnResourceDataSync.SyncSourceProperty.Jsii$Proxy
An implementation for
CfnResourceDataSync.SyncSourceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnResourceDataSync.SyncSourceProperty.Builder |
builder() |
default Object |
getAwsOrganizationsSource()
Information about the AwsOrganizationsSource resource data sync source.
|
default Object |
getIncludeFutureRegions()
Whether to automatically synchronize and aggregate data from new AWS Regions when those Regions come online.
|
List<String> |
getSourceRegions()
The `SyncSource` AWS Regions included in the resource data sync.
|
String |
getSourceType()
The type of data source for the resource data sync.
|
@Stability(value=Stable) @NotNull List<String> getSourceRegions()
@Stability(value=Stable) @NotNull String getSourceType()
SourceType is either AwsOrganizations (if an organization is present in AWS Organizations ) or SingleAccountMultiRegions .
@Stability(value=Stable) @Nullable default Object getAwsOrganizationsSource()
A sync source of this type can synchronize data from AWS Organizations .
@Stability(value=Stable) @Nullable default Object getIncludeFutureRegions()
@Stability(value=Stable) static CfnResourceDataSync.SyncSourceProperty.Builder builder()
Copyright © 2022. All rights reserved.