aws-cdk-lib.aws_personalize.CfnDatasetGroupProps

interface CfnDatasetGroupProps

LanguageType name
.NETAmazon.CDK.AWS.Personalize.CfnDatasetGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awspersonalize#CfnDatasetGroupProps
Javasoftware.amazon.awscdk.services.personalize.CfnDatasetGroupProps
Pythonaws_cdk.aws_personalize.CfnDatasetGroupProps
TypeScript aws-cdk-lib » aws_personalize » CfnDatasetGroupProps

Properties for defining a CfnDatasetGroup.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_personalize as personalize } from 'aws-cdk-lib';
const cfnDatasetGroupProps: personalize.CfnDatasetGroupProps = {
  name: 'name',

  // the properties below are optional
  domain: 'domain',
  kmsKeyArn: 'kmsKeyArn',
  roleArn: 'roleArn',
};

Properties

NameTypeDescription
namestringThe name of the dataset group.
domain?stringThe domain of a Domain dataset group.
kmsKeyArn?stringThe Amazon Resource Name (ARN) of the AWS Key Management Service (KMS) key used to encrypt the datasets.
roleArn?stringThe ARN of the IAM role that has permissions to create the dataset group.

name

Type: string

The name of the dataset group.


domain?

Type: string (optional)

The domain of a Domain dataset group.


kmsKeyArn?

Type: string (optional)

The Amazon Resource Name (ARN) of the AWS Key Management Service (KMS) key used to encrypt the datasets.


roleArn?

Type: string (optional)

The ARN of the IAM role that has permissions to create the dataset group.