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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAssociation.S3OutputLocationPropertystatic final classAn implementation forCfnAssociation.S3OutputLocationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOutputS3BucketName
The name of the S3 bucket.- See Also:
-
getOutputS3KeyPrefix
The S3 bucket subfolder.- See Also:
-
getOutputS3Region
The AWS Region of the S3 bucket.- See Also:
-
builder
-