Interface CfnAssociation.IInstanceAssociationOutputLocationProperty
InstanceAssociationOutputLocation
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.IInstanceAssociationOutputLocationProperty
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 instanceAssociationOutputLocationProperty = new InstanceAssociationOutputLocationProperty {
S3Location = new S3OutputLocationProperty {
OutputS3BucketName = "outputS3BucketName",
OutputS3KeyPrefix = "outputS3KeyPrefix",
OutputS3Region = "outputS3Region"
}
};
Remarks
For the minimal permissions required to enable Amazon S3 output for an association, see Creating associations in the Systems Manager User Guide .
ExampleMetadata: fixture=_generated
Properties
S3Location
S3OutputLocation
is a property of the InstanceAssociationOutputLocation property that specifies an Amazon S3 bucket where you want to store the results of this request.
object? S3Location { get; }