Interface CfnAssociation.InstanceAssociationOutputLocationProperty

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

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

For the minimal permissions required to enable Amazon S3 output for an association, see Creating associations in the Systems Manager User Guide .

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.*;
 InstanceAssociationOutputLocationProperty instanceAssociationOutputLocationProperty = InstanceAssociationOutputLocationProperty.builder()
         .s3Location(S3OutputLocationProperty.builder()
                 .outputS3BucketName("outputS3BucketName")
                 .outputS3KeyPrefix("outputS3KeyPrefix")
                 .outputS3Region("outputS3Region")
                 .build())
         .build();
 

See Also: