Show / Hide Table of Contents

Class CfnAssociation.S3OutputLocationProperty

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.

Inheritance
object
CfnAssociation.S3OutputLocationProperty
Implements
CfnAssociation.IS3OutputLocationProperty
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 CfnAssociation.S3OutputLocationProperty : CfnAssociation.IS3OutputLocationProperty
Syntax (vb)
Public Class CfnAssociation.S3OutputLocationProperty Implements CfnAssociation.IS3OutputLocationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.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 s3OutputLocationProperty = new S3OutputLocationProperty {
                 OutputS3BucketName = "outputS3BucketName",
                 OutputS3KeyPrefix = "outputS3KeyPrefix",
                 OutputS3Region = "outputS3Region"
             };

Synopsis

Constructors

S3OutputLocationProperty()

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.

Properties

OutputS3BucketName

The name of the S3 bucket.

OutputS3KeyPrefix

The S3 bucket subfolder.

OutputS3Region

The AWS Region of the S3 bucket.

Constructors

S3OutputLocationProperty()

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 S3OutputLocationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.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 s3OutputLocationProperty = new S3OutputLocationProperty {
                 OutputS3BucketName = "outputS3BucketName",
                 OutputS3KeyPrefix = "outputS3KeyPrefix",
                 OutputS3Region = "outputS3Region"
             };

Properties

OutputS3BucketName

The name of the S3 bucket.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3bucketname

OutputS3KeyPrefix

The S3 bucket subfolder.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3keyprefix

OutputS3Region

The AWS Region of the S3 bucket.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-s3outputlocation.html#cfn-ssm-association-s3outputlocation-outputs3region

Implements

CfnAssociation.IS3OutputLocationProperty
Back to top Generated by DocFX