Show / Hide Table of Contents

Class CfnResourceDataSync.S3DestinationProperty

Information about the target S3 bucket for the resource data sync.

Inheritance
object
CfnResourceDataSync.S3DestinationProperty
Implements
CfnResourceDataSync.IS3DestinationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SSM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnResourceDataSync.S3DestinationProperty : CfnResourceDataSync.IS3DestinationProperty
Syntax (vb)
Public Class CfnResourceDataSync.S3DestinationProperty Implements CfnResourceDataSync.IS3DestinationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.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.AWS.SSM;

             var s3DestinationProperty = new S3DestinationProperty {
                 BucketName = "bucketName",
                 BucketRegion = "bucketRegion",
                 SyncFormat = "syncFormat",

                 // the properties below are optional
                 BucketPrefix = "bucketPrefix",
                 KmsKeyArn = "kmsKeyArn"
             };

Synopsis

Constructors

S3DestinationProperty()

Information about the target S3 bucket for the resource data sync.

Properties

BucketName

The name of the S3 bucket where the aggregated data is stored.

BucketPrefix

An Amazon S3 prefix for the bucket.

BucketRegion

The AWS Region with the S3 bucket targeted by the resource data sync.

KmsKeyArn

The ARN of an encryption key for a destination in Amazon S3.

SyncFormat

A supported sync format.

Constructors

S3DestinationProperty()

Information about the target S3 bucket for the resource data sync.

public S3DestinationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.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.AWS.SSM;

             var s3DestinationProperty = new S3DestinationProperty {
                 BucketName = "bucketName",
                 BucketRegion = "bucketRegion",
                 SyncFormat = "syncFormat",

                 // the properties below are optional
                 BucketPrefix = "bucketPrefix",
                 KmsKeyArn = "kmsKeyArn"
             };

Properties

BucketName

The name of the S3 bucket where the aggregated data is stored.

public string BucketName { get; set; }
Property Value

string

Remarks

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

BucketPrefix

An Amazon S3 prefix for the bucket.

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

string

Remarks

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

BucketRegion

The AWS Region with the S3 bucket targeted by the resource data sync.

public string BucketRegion { get; set; }
Property Value

string

Remarks

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

KmsKeyArn

The ARN of an encryption key for a destination in Amazon S3.

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

string

Remarks

Must belong to the same Region as the destination S3 bucket.

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

SyncFormat

A supported sync format.

public string SyncFormat { get; set; }
Property Value

string

Remarks

The following format is currently supported: JsonSerDe

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

Implements

CfnResourceDataSync.IS3DestinationProperty
Back to top Generated by DocFX