Interface CfnAssociation.S3OutputLocationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAssociation.S3OutputLocationProperty.Jsii$Proxy
Enclosing class:
CfnAssociation

@Stability(Stable) public static interface CfnAssociation.S3OutputLocationProperty extends software.amazon.jsii.JsiiSerializable
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.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ssm.*;
 S3OutputLocationProperty s3OutputLocationProperty = S3OutputLocationProperty.builder()
         .outputS3BucketName("outputS3BucketName")
         .outputS3KeyPrefix("outputS3KeyPrefix")
         .outputS3Region("outputS3Region")
         .build();