aws-cdk-lib.aws_comprehend.CfnFlywheel.DataSecurityConfigProperty

interface DataSecurityConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.Comprehend.CfnFlywheel.DataSecurityConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscomprehend#CfnFlywheel_DataSecurityConfigProperty
Javasoftware.amazon.awscdk.services.comprehend.CfnFlywheel.DataSecurityConfigProperty
Pythonaws_cdk.aws_comprehend.CfnFlywheel.DataSecurityConfigProperty
TypeScript aws-cdk-lib » aws_comprehend » CfnFlywheel » DataSecurityConfigProperty

Data security configuration.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_comprehend as comprehend } from 'aws-cdk-lib';
const dataSecurityConfigProperty: comprehend.CfnFlywheel.DataSecurityConfigProperty = {
  dataLakeKmsKeyId: 'dataLakeKmsKeyId',
  modelKmsKeyId: 'modelKmsKeyId',
  volumeKmsKeyId: 'volumeKmsKeyId',
  vpcConfig: {
    securityGroupIds: ['securityGroupIds'],
    subnets: ['subnets'],
  },
};

Properties

NameTypeDescription
dataLakeKmsKeyId?stringID for the AWS KMS key that Amazon Comprehend uses to encrypt the data in the data lake.
modelKmsKeyId?stringID for the AWS KMS key that Amazon Comprehend uses to encrypt trained custom models.
volumeKmsKeyId?stringID for the AWS KMS key that Amazon Comprehend uses to encrypt the volume.
vpcConfig?IResolvable | VpcConfigPropertyConfiguration parameters for an optional private Virtual Private Cloud (VPC) containing the resources you are using for the job.

dataLakeKmsKeyId?

Type: string (optional)

ID for the AWS KMS key that Amazon Comprehend uses to encrypt the data in the data lake.


modelKmsKeyId?

Type: string (optional)

ID for the AWS KMS key that Amazon Comprehend uses to encrypt trained custom models.

The ModelKmsKeyId can be either of the following formats:

  • KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
  • Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"

volumeKmsKeyId?

Type: string (optional)

ID for the AWS KMS key that Amazon Comprehend uses to encrypt the volume.


vpcConfig?

Type: IResolvable | VpcConfigProperty (optional)

Configuration parameters for an optional private Virtual Private Cloud (VPC) containing the resources you are using for the job.

For more information, see Amazon VPC .