Class CfnResourceDataSync.SyncSourceProperty
Information about the source of the data included in the resource data sync.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SSM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnResourceDataSync.SyncSourceProperty : CfnResourceDataSync.ISyncSourceProperty
Syntax (vb)
Public Class CfnResourceDataSync.SyncSourceProperty Implements CfnResourceDataSync.ISyncSourceProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SSM;
var syncSourceProperty = new SyncSourceProperty {
SourceRegions = new [] { "sourceRegions" },
SourceType = "sourceType",
// the properties below are optional
AwsOrganizationsSource = new AwsOrganizationsSourceProperty {
OrganizationSourceType = "organizationSourceType",
// the properties below are optional
OrganizationalUnits = new [] { "organizationalUnits" }
},
IncludeFutureRegions = false
};
Synopsis
Constructors
SyncSourceProperty() | Information about the source of the data included in the resource data sync. |
Properties
AwsOrganizationsSource | Information about the AwsOrganizationsSource resource data sync source. |
IncludeFutureRegions | Whether to automatically synchronize and aggregate data from new AWS Regions when those Regions come online. |
SourceRegions | The |
SourceType | The type of data source for the resource data sync. |
Constructors
SyncSourceProperty()
Information about the source of the data included in the resource data sync.
public SyncSourceProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SSM;
var syncSourceProperty = new SyncSourceProperty {
SourceRegions = new [] { "sourceRegions" },
SourceType = "sourceType",
// the properties below are optional
AwsOrganizationsSource = new AwsOrganizationsSourceProperty {
OrganizationSourceType = "organizationSourceType",
// the properties below are optional
OrganizationalUnits = new [] { "organizationalUnits" }
},
IncludeFutureRegions = false
};
Properties
AwsOrganizationsSource
Information about the AwsOrganizationsSource resource data sync source.
public object? AwsOrganizationsSource { get; set; }
Property Value
Remarks
A sync source of this type can synchronize data from AWS Organizations .
IncludeFutureRegions
Whether to automatically synchronize and aggregate data from new AWS Regions when those Regions come online.
public object? IncludeFutureRegions { get; set; }
Property Value
Remarks
SourceRegions
The SyncSource
AWS Regions included in the resource data sync.
public string[] SourceRegions { get; set; }
Property Value
string[]
Remarks
SourceType
The type of data source for the resource data sync.
public string SourceType { get; set; }
Property Value
Remarks
SourceType
is either AwsOrganizations
(if an organization is present in AWS Organizations ) or SingleAccountMultiRegions
.