interface ArtifactConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Synthetics.Mixins.CfnCanaryPropsMixin.ArtifactConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssynthetics/mixins#CfnCanaryPropsMixin_ArtifactConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.synthetics.mixins.CfnCanaryPropsMixin.ArtifactConfigProperty |
Python | aws_cdk.mixins_preview.aws_synthetics.mixins.CfnCanaryPropsMixin.ArtifactConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_synthetics » mixins » 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 { mixins as synthetics_mixins } from '@aws-cdk/mixins-preview/aws-synthetics';
const artifactConfigProperty: synthetics_mixins.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