Interface CfnResourceDataSync.AwsOrganizationsSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceDataSync.AwsOrganizationsSourceProperty.Jsii$Proxy
- Enclosing class:
- CfnResourceDataSync
@Stability(Stable)
public static interface CfnResourceDataSync.AwsOrganizationsSourceProperty
extends software.amazon.jsii.JsiiSerializable
Information about the
AwsOrganizationsSource
resource data sync source.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnResourceDataSync.AwsOrganizationsSourceProperty
static final class
An implementation forCfnResourceDataSync.AwsOrganizationsSourceProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The AWS Organizations organization units included in the sync.If an AWS organization is present, this is eitherOrganizationalUnits
orEntireOrganization
.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOrganizationSourceType
If an AWS organization is present, this is eitherOrganizationalUnits
orEntireOrganization
.For
OrganizationalUnits
, the data is aggregated from a set of organization units. ForEntireOrganization
, the data is aggregated from the entire AWS organization. -
getOrganizationalUnits
The AWS Organizations organization units included in the sync. -
builder
-