interface CfnDatasetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Personalize.Mixins.CfnDatasetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspersonalize/mixins#CfnDatasetGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.personalize.mixins.CfnDatasetGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_personalize.mixins.CfnDatasetGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_personalize » mixins » CfnDatasetGroupMixinProps |
Properties for CfnDatasetGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as personalize_mixins } from '@aws-cdk/mixins-preview/aws-personalize';
const cfnDatasetGroupMixinProps: personalize_mixins.CfnDatasetGroupMixinProps = {
domain: 'domain',
kmsKeyArn: 'kmsKeyArn',
name: 'name',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| name? | string | The name of the dataset group. |
| 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. |
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.
name?
Type:
string
(optional)
The name of the dataset group.
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.

.NET
Go
Java
Python
TypeScript