interface SyncSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSM.Mixins.CfnResourceDataSyncPropsMixin.SyncSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssm/mixins#CfnResourceDataSyncPropsMixin_SyncSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssm.mixins.CfnResourceDataSyncPropsMixin.SyncSourceProperty |
Python | aws_cdk.mixins_preview.aws_ssm.mixins.CfnResourceDataSyncPropsMixin.SyncSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssm » mixins » CfnResourceDataSyncPropsMixin » SyncSourceProperty |
Information about the source of the data included in the resource data sync.
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 syncSourceProperty: ssm_mixins.CfnResourceDataSyncPropsMixin.SyncSourceProperty = {
awsOrganizationsSource: {
organizationalUnits: ['organizationalUnits'],
organizationSourceType: 'organizationSourceType',
},
includeFutureRegions: false,
sourceRegions: ['sourceRegions'],
sourceType: 'sourceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | IResolvable | Aws | Information about the AwsOrganizationsSource resource data sync source. |
| include | boolean | IResolvable | Whether to automatically synchronize and aggregate data from new AWS Regions when those Regions come online. |
| source | string[] | The SyncSource AWS Regions included in the resource data sync. |
| source | string | The type of data source for the resource data sync. |
awsOrganizationsSource?
Type:
IResolvable | Aws
(optional)
Information about the AwsOrganizationsSource resource data sync source.
A sync source of this type can synchronize data from AWS Organizations .
includeFutureRegions?
Type:
boolean | IResolvable
(optional)
Whether to automatically synchronize and aggregate data from new AWS Regions when those Regions come online.
sourceRegions?
Type:
string[]
(optional)
The SyncSource AWS Regions included in the resource data sync.
sourceType?
Type:
string
(optional)
The type of data source for the resource data sync.
SourceType is either AwsOrganizations (if an organization is present in AWS Organizations ) or SingleAccountMultiRegions .

.NET
Go
Java
Python
TypeScript