interface CfnDatasetGroupProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Personalize.CfnDatasetGroupProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspersonalize#CfnDatasetGroupProps |
Java | software.amazon.awscdk.services.personalize.CfnDatasetGroupProps |
Python | aws_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
Name | Type | Description |
---|---|---|
name | string | The name of the dataset group. |
domain? | string | The domain of a Domain dataset group. |
kms | string | The Amazon Resource Name (ARN) of the AWS Key Management Service (KMS) key used to encrypt the datasets. |
role | string | The ARN of the AWS Identity and Access Management (IAM) role that has permissions to access the AWS Key Management Service (KMS) key. |
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 AWS Identity and Access Management (IAM) role that has permissions to access the AWS Key Management Service (KMS) key.
Supplying an IAM role is only valid when also specifying a KMS key.