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
System.Object
CfnAssociation.S3OutputLocationProperty
Implements
Namespace: Amazon.CDK.AWS.SSM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class S3OutputLocationProperty : Object, CfnAssociation.IS3OutputLocationProperty
Syntax (vb)
Public Class S3OutputLocationProperty
Inherits Object
Implements CfnAssociation.IS3OutputLocationProperty
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 s3OutputLocationProperty = new S3OutputLocationProperty {
OutputS3BucketName = "outputS3BucketName",
OutputS3KeyPrefix = "outputS3KeyPrefix",
OutputS3Region = "outputS3Region"
};
Synopsis
Constructors
S3OutputLocationProperty() |
Properties
OutputS3BucketName | The name of the S3 bucket. |
OutputS3KeyPrefix | The S3 bucket subfolder. |
OutputS3Region | The AWS Region of the S3 bucket. |
Constructors
S3OutputLocationProperty()
public S3OutputLocationProperty()
Properties
OutputS3BucketName
The name of the S3 bucket.
public string OutputS3BucketName { get; set; }
Property Value
System.String
Remarks
OutputS3KeyPrefix
The S3 bucket subfolder.
public string OutputS3KeyPrefix { get; set; }
Property Value
System.String
Remarks
OutputS3Region
The AWS Region of the S3 bucket.
public string OutputS3Region { get; set; }
Property Value
System.String