CfnDatasetGroupMixinProps
- class aws_cdk.mixins_preview.aws_personalize.mixins.CfnDatasetGroupMixinProps(*, domain=None, kms_key_arn=None, name=None, role_arn=None)
Bases:
objectProperties for CfnDatasetGroupPropsMixin.
- Parameters:
domain (
Optional[str]) – The domain of a Domain dataset group.kms_key_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the AWS Key Management Service (KMS) key used to encrypt the datasets.name (
Optional[str]) – The name of the dataset group.role_arn (
Optional[str]) – 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.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_personalize import mixins as personalize_mixins cfn_dataset_group_mixin_props = personalize_mixins.CfnDatasetGroupMixinProps( domain="domain", kms_key_arn="kmsKeyArn", name="name", role_arn="roleArn" )
Attributes
- domain
The domain of a Domain dataset group.
- kms_key_arn
The Amazon Resource Name (ARN) of the AWS Key Management Service (KMS) key used to encrypt the datasets.
- name
The name of the dataset group.
- role_arn
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.