Table of Contents

Interface CfnAssociation.IS3OutputLocationProperty

Namespace
Amazon.CDK.AWS.SSM
Assembly
Amazon.CDK.AWS.SSM.dll

S3OutputLocation is a property of the AWS::SSM::Association resource that specifies an Amazon S3 bucket where you want to store the results of this association request.

public interface CfnAssociation.IS3OutputLocationProperty

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 s3OutputLocationProperty = new S3OutputLocationProperty {
                 OutputS3BucketName = "outputS3BucketName",
                 OutputS3KeyPrefix = "outputS3KeyPrefix",
                 OutputS3Region = "outputS3Region"
             };

Remarks

Properties

OutputS3BucketName

The name of the S3 bucket.

string? OutputS3BucketName { get; }

Property Value

string

Remarks

OutputS3KeyPrefix

The S3 bucket subfolder.

string? OutputS3KeyPrefix { get; }

Property Value

string

Remarks

OutputS3Region

The AWS Region of the S3 bucket.

string? OutputS3Region { get; }

Property Value

string

Remarks