Interface CfnCanaryPropsMixin.ArtifactConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCanaryPropsMixin.ArtifactConfigProperty.Jsii$Proxy
Enclosing class:
CfnCanaryPropsMixin

@Stability(Stable) public static interface CfnCanaryPropsMixin.ArtifactConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.mixins.preview.services.synthetics.mixins.*;
 ArtifactConfigProperty artifactConfigProperty = ArtifactConfigProperty.builder()
         .s3Encryption(S3EncryptionProperty.builder()
                 .encryptionMode("encryptionMode")
                 .kmsKeyArn("kmsKeyArn")
                 .build())
         .build();
 

See Also: