aws-cdk-lib.aws_ssm.CfnAssociation.S3OutputLocationProperty

interface S3OutputLocationProperty

LanguageType name
.NETAmazon.CDK.AWS.SSM.CfnAssociation.S3OutputLocationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnAssociation_S3OutputLocationProperty
Javasoftware.amazon.awscdk.services.ssm.CfnAssociation.S3OutputLocationProperty
Pythonaws_cdk.aws_ssm.CfnAssociation.S3OutputLocationProperty
TypeScript aws-cdk-lib » aws_ssm » CfnAssociation » 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-lib';
const s3OutputLocationProperty: ssm.CfnAssociation.S3OutputLocationProperty = {
  outputS3BucketName: 'outputS3BucketName',
  outputS3KeyPrefix: 'outputS3KeyPrefix',
  outputS3Region: 'outputS3Region',
};

Properties

NameTypeDescription
outputS3BucketName?stringThe name of the S3 bucket.
outputS3KeyPrefix?stringThe S3 bucket subfolder.
outputS3Region?stringThe AWS Region of the S3 bucket.

outputS3BucketName?

Type: string (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.