interface S3OutputLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSM.CfnAssociationPropsMixin.S3OutputLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssm#CfnAssociationPropsMixin_S3OutputLocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssm.CfnAssociationPropsMixin.S3OutputLocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssm.CfnAssociationPropsMixin.S3OutputLocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssm » CfnAssociationPropsMixin » 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.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssm as ssm } from '@aws-cdk/cfn-property-mixins';
const s3OutputLocationProperty: ssm.CfnAssociationPropsMixin.S3OutputLocationProperty = {
outputS3BucketName: 'outputS3BucketName',
outputS3KeyPrefix: 'outputS3KeyPrefix',
outputS3Region: 'outputS3Region',
};
Properties
| Name | Type | Description |
|---|---|---|
| output | string | IBucket | The name of the S3 bucket. |
| output | string | The S3 bucket subfolder. |
| output | string | The AWS Region of the S3 bucket. |
outputS3BucketName?
Type:
string | IBucket
(optional)
The name of the S3 bucket.
outputS3KeyPrefix?
Type:
string
(optional)
The S3 bucket subfolder.
outputS3Region?
Type:
string
(optional)
The AWS Region of the S3 bucket.

.NET
Go
Java
Python
TypeScript