interface ArtifactConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Synthetics.CfnCanaryPropsMixin.ArtifactConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssynthetics#CfnCanaryPropsMixin_ArtifactConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.synthetics.CfnCanaryPropsMixin.ArtifactConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_synthetics.CfnCanaryPropsMixin.ArtifactConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_synthetics » CfnCanaryPropsMixin » ArtifactConfigProperty |
A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3 .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_synthetics as synthetics } from '@aws-cdk/cfn-property-mixins';
const artifactConfigProperty: synthetics.CfnCanaryPropsMixin.ArtifactConfigProperty = {
s3Encryption: {
encryptionMode: 'encryptionMode',
kmsKeyArn: 'kmsKeyArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | A structure that contains the configuration of the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3 . |
s3Encryption?
Type:
IResolvable | S3
(optional)
A structure that contains the configuration of the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3 .
Artifact encryption functionality is available only for canaries that use Synthetics runtime version syn-nodejs-puppeteer-3.3 or later. For more information, see Encrypting canary artifacts .

.NET
Go
Java
Python
TypeScript