@Stability(value=Stable)
public static interface CfnResourceDataSync.AwsOrganizationsSourceProperty
extends software.amazon.jsii.JsiiSerializable
A sync source of this type can synchronize data from AWS Organizations or, if an AWS organization isn't present, from multiple AWS Regions .
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.*;
AwsOrganizationsSourceProperty awsOrganizationsSourceProperty = AwsOrganizationsSourceProperty.builder()
.organizationSourceType("organizationSourceType")
// the properties below are optional
.organizationalUnits(List.of("organizationalUnits"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnResourceDataSync.AwsOrganizationsSourceProperty.Builder
A builder for
CfnResourceDataSync.AwsOrganizationsSourceProperty |
static class |
CfnResourceDataSync.AwsOrganizationsSourceProperty.Jsii$Proxy
An implementation for
CfnResourceDataSync.AwsOrganizationsSourceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnResourceDataSync.AwsOrganizationsSourceProperty.Builder |
builder() |
default List<String> |
getOrganizationalUnits()
The AWS Organizations organization units included in the sync.
|
String |
getOrganizationSourceType()
If an AWS organization is present, this is either `OrganizationalUnits` or `EntireOrganization` .
|
@Stability(value=Stable) @NotNull String getOrganizationSourceType()
For OrganizationalUnits , the data is aggregated from a set of organization units. For EntireOrganization , the data is aggregated from the entire AWS organization.
@Stability(value=Stable) @Nullable default List<String> getOrganizationalUnits()
@Stability(value=Stable) static CfnResourceDataSync.AwsOrganizationsSourceProperty.Builder builder()
Copyright © 2022. All rights reserved.