aws-cdk-lib.aws_ssm.CfnAssociation.InstanceAssociationOutputLocationProperty

interface InstanceAssociationOutputLocationProperty

LanguageType name
.NETAmazon.CDK.AWS.SSM.CfnAssociation.InstanceAssociationOutputLocationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnAssociation_InstanceAssociationOutputLocationProperty
Javasoftware.amazon.awscdk.services.ssm.CfnAssociation.InstanceAssociationOutputLocationProperty
Pythonaws_cdk.aws_ssm.CfnAssociation.InstanceAssociationOutputLocationProperty
TypeScript aws-cdk-lib » aws_ssm » CfnAssociation » InstanceAssociationOutputLocationProperty

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 { aws_ssm as ssm } from 'aws-cdk-lib';
const instanceAssociationOutputLocationProperty: ssm.CfnAssociation.InstanceAssociationOutputLocationProperty = {
  s3Location: {
    outputS3BucketName: 'outputS3BucketName',
    outputS3KeyPrefix: 'outputS3KeyPrefix',
    outputS3Region: 'outputS3Region',
  },
};

Properties

NameTypeDescription
s3Location?IResolvable | S3OutputLocationPropertyS3OutputLocation is a property of the InstanceAssociationOutputLocation property that specifies an Amazon S3 bucket where you want to store the results of this request.

s3Location?

Type: IResolvable | S3OutputLocationProperty (optional)

S3OutputLocation is a property of the InstanceAssociationOutputLocation property that specifies an Amazon S3 bucket where you want to store the results of this request.