interface SyncSourceProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SSM.CfnResourceDataSync.SyncSourceProperty |
Java | software.amazon.awscdk.services.ssm.CfnResourceDataSync.SyncSourceProperty |
Python | aws_cdk.aws_ssm.CfnResourceDataSync.SyncSourceProperty |
TypeScript | @aws-cdk/aws-ssm » CfnResourceDataSync » 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 * as ssm from '@aws-cdk/aws-ssm';
const syncSourceProperty: ssm.CfnResourceDataSync.SyncSourceProperty = {
sourceRegions: ['sourceRegions'],
sourceType: 'sourceType',
// the properties below are optional
awsOrganizationsSource: {
organizationSourceType: 'organizationSourceType',
// the properties below are optional
organizationalUnits: ['organizationalUnits'],
},
includeFutureRegions: false,
};
Properties
Name | Type | Description |
---|---|---|
source | string[] | The SyncSource AWS Regions included in the resource data sync. |
source | string | The type of data source for the resource data sync. |
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. |
sourceRegions
Type:
string[]
The SyncSource
AWS Regions included in the resource data sync.
sourceType
Type:
string
The type of data source for the resource data sync.
SourceType
is either AwsOrganizations
(if an organization is present in AWS Organizations ) or SingleAccountMultiRegions
.
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.