Interface CfnDataset.EncryptionConfigProperty

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

@Stability(Stable) public static interface CfnDataset.EncryptionConfigProperty extends software.amazon.jsii.JsiiSerializable
An AWS Key Management Service (KMS) key and an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the key.

You can specify this optional object in the CreateDataset and CreatePredictor requests.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.forecast.*;
 EncryptionConfigProperty encryptionConfigProperty = EncryptionConfigProperty.builder()
         .kmsKeyArn("kmsKeyArn")
         .roleArn("roleArn")
         .build();