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.
public class CfnAssociation.S3OutputLocationProperty : CfnAssociation.IS3OutputLocationProperty
- Inheritance
-
CfnAssociation.S3OutputLocationProperty
- Implements
- Inherited Members
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
ExampleMetadata: fixture=_generated
Constructors
S3OutputLocationProperty()
public S3OutputLocationProperty()
Properties
OutputS3BucketName
The name of the S3 bucket.
public string? OutputS3BucketName { get; set; }
Property Value
Remarks
OutputS3KeyPrefix
The S3 bucket subfolder.
public string? OutputS3KeyPrefix { get; set; }
Property Value
Remarks
OutputS3Region
The AWS Region of the S3 bucket.
public string? OutputS3Region { get; set; }