interface AwsOrganizationsSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSM.Mixins.CfnResourceDataSyncPropsMixin.AwsOrganizationsSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssm/mixins#CfnResourceDataSyncPropsMixin_AwsOrganizationsSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssm.mixins.CfnResourceDataSyncPropsMixin.AwsOrganizationsSourceProperty |
Python | aws_cdk.mixins_preview.aws_ssm.mixins.CfnResourceDataSyncPropsMixin.AwsOrganizationsSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssm » mixins » CfnResourceDataSyncPropsMixin » AwsOrganizationsSourceProperty |
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 { mixins as ssm_mixins } from '@aws-cdk/mixins-preview/aws-ssm';
const awsOrganizationsSourceProperty: ssm_mixins.CfnResourceDataSyncPropsMixin.AwsOrganizationsSourceProperty = {
organizationalUnits: ['organizationalUnits'],
organizationSourceType: 'organizationSourceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| organization | string | If an AWS organization is present, this is either OrganizationalUnits or EntireOrganization . |
| organizational | string[] | The AWS Organizations organization units included in the sync. |
organizationSourceType?
Type:
string
(optional)
If an AWS organization is present, this is either OrganizationalUnits or EntireOrganization .
For OrganizationalUnits , the data is aggregated from a set of organization units. For EntireOrganization , the data is aggregated from the entire AWS organization.
organizationalUnits?
Type:
string[]
(optional)
The AWS Organizations organization units included in the sync.

.NET
Go
Java
Python
TypeScript