Show / Hide Table of Contents

Class CfnResourceDataSyncPropsMixin.SyncSourceProperty

Information about the source of the data included in the resource data sync.

Inheritance
object
CfnResourceDataSyncPropsMixin.SyncSourceProperty
Implements
CfnResourceDataSyncPropsMixin.ISyncSourceProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SSM
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnResourceDataSyncPropsMixin.SyncSourceProperty : CfnResourceDataSyncPropsMixin.ISyncSourceProperty
Syntax (vb)
Public Class CfnResourceDataSyncPropsMixin.SyncSourceProperty Implements CfnResourceDataSyncPropsMixin.ISyncSourceProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html

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.CfnPropertyMixins.AWS.SSM;

             var syncSourceProperty = new SyncSourceProperty {
                 AwsOrganizationsSource = new AwsOrganizationsSourceProperty {
                     OrganizationalUnits = new [] { "organizationalUnits" },
                     OrganizationSourceType = "organizationSourceType"
                 },
                 IncludeFutureRegions = false,
                 SourceRegions = new [] { "sourceRegions" },
                 SourceType = "sourceType"
             };

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 SyncSource AWS Regions included in the resource data sync.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html

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.CfnPropertyMixins.AWS.SSM;

             var syncSourceProperty = new SyncSourceProperty {
                 AwsOrganizationsSource = new AwsOrganizationsSourceProperty {
                     OrganizationalUnits = new [] { "organizationalUnits" },
                     OrganizationSourceType = "organizationSourceType"
                 },
                 IncludeFutureRegions = false,
                 SourceRegions = new [] { "sourceRegions" },
                 SourceType = "sourceType"
             };

Properties

AwsOrganizationsSource

Information about the AwsOrganizationsSource resource data sync source.

public object? AwsOrganizationsSource { get; set; }
Property Value

object

Remarks

A sync source of this type can synchronize data from AWS Organizations .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-awsorganizationssource

Type union: either IResolvable or CfnResourceDataSyncPropsMixin.IAwsOrganizationsSourceProperty

IncludeFutureRegions

Whether to automatically synchronize and aggregate data from new AWS Regions when those Regions come online.

public object? IncludeFutureRegions { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-includefutureregions

Type union: either bool or IResolvable

SourceRegions

The SyncSource AWS Regions included in the resource data sync.

public string[]? SourceRegions { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourceregions

SourceType

The type of data source for the resource data sync.

public string? SourceType { get; set; }
Property Value

string

Remarks

SourceType is either AwsOrganizations (if an organization is present in AWS Organizations ) or SingleAccountMultiRegions .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-syncsource.html#cfn-ssm-resourcedatasync-syncsource-sourcetype

Implements

CfnResourceDataSyncPropsMixin.ISyncSourceProperty
Back to top Generated by DocFX