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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResourceDataSync.AwsOrganizationsSourcePropertystatic final classAn 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 eitherOrganizationalUnitsorEntireOrganization.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOrganizationSourceType
If an AWS organization is present, this is eitherOrganizationalUnitsorEntireOrganization.For
OrganizationalUnits, the data is aggregated from a set of organization units. ForEntireOrganization, the data is aggregated from the entire AWS organization.- See Also:
-
getOrganizationalUnits
The AWS Organizations organization units included in the sync.- See Also:
-
builder
-