interface SyncSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSM.CfnResourceDataSyncPropsMixin.SyncSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssm#CfnResourceDataSyncPropsMixin_SyncSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssm.CfnResourceDataSyncPropsMixin.SyncSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssm.CfnResourceDataSyncPropsMixin.SyncSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssm » 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 { aws_ssm as ssm } from '@aws-cdk/cfn-property-mixins';
const syncSourceProperty: ssm.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