interface InstanceAssociationOutputLocationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SSM.CfnAssociation.InstanceAssociationOutputLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnAssociation_InstanceAssociationOutputLocationProperty |
Java | software.amazon.awscdk.services.ssm.CfnAssociation.InstanceAssociationOutputLocationProperty |
Python | aws_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
Name | Type | Description |
---|---|---|
s3 | IResolvable | S3 | S3OutputLocation 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
|
S3
(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.