aws-cdk-lib.aws_ssm.CfnResourceDataSync.SyncSourceProperty

interface SyncSourceProperty

LanguageType name
.NETAmazon.CDK.AWS.SSM.CfnResourceDataSync.SyncSourceProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnResourceDataSync_SyncSourceProperty
Javasoftware.amazon.awscdk.services.ssm.CfnResourceDataSync.SyncSourceProperty
Pythonaws_cdk.aws_ssm.CfnResourceDataSync.SyncSourceProperty
TypeScript aws-cdk-lib » 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 { aws_ssm as ssm } from 'aws-cdk-lib';
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

NameTypeDescription
sourceRegionsstring[]The SyncSource AWS Regions included in the resource data sync.
sourceTypestringThe type of data source for the resource data sync.
awsOrganizationsSource?IResolvable | AwsOrganizationsSourcePropertyInformation about the AwsOrganizationsSource resource data sync source.
includeFutureRegions?boolean | IResolvableWhether 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 | AwsOrganizationsSourceProperty (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.