Class CfnDatasetGroupMixinProps
Properties for CfnDatasetGroupPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Personalize
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDatasetGroupMixinProps : ICfnDatasetGroupMixinProps
Syntax (vb)
Public Class CfnDatasetGroupMixinProps Implements ICfnDatasetGroupMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Personalize;
var cfnDatasetGroupMixinProps = new CfnDatasetGroupMixinProps {
Domain = "domain",
KmsKeyArn = "kmsKeyArn",
Name = "name",
RoleArn = "roleArn"
};
Synopsis
Constructors
| CfnDatasetGroupMixinProps() | Properties for CfnDatasetGroupPropsMixin. |
Properties
| Domain | The domain of a Domain dataset group. |
| KmsKeyArn | 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. |
| RoleArn | The ARN of the AWS Identity and Access Management (IAM) role that has permissions to access the AWS Key Management Service (KMS) key. |
Constructors
CfnDatasetGroupMixinProps()
Properties for CfnDatasetGroupPropsMixin.
public CfnDatasetGroupMixinProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Personalize;
var cfnDatasetGroupMixinProps = new CfnDatasetGroupMixinProps {
Domain = "domain",
KmsKeyArn = "kmsKeyArn",
Name = "name",
RoleArn = "roleArn"
};
Properties
Domain
The domain of a Domain dataset group.
public string? Domain { get; set; }
Property Value
Remarks
KmsKeyArn
The Amazon Resource Name (ARN) of the AWS Key Management Service (KMS) key used to encrypt the datasets.
public string? KmsKeyArn { get; set; }
Property Value
Remarks
Name
The name of the dataset group.
public string? Name { get; set; }
Property Value
Remarks
RoleArn
The ARN of the AWS Identity and Access Management (IAM) role that has permissions to access the AWS Key Management Service (KMS) key.
public string? RoleArn { get; set; }
Property Value
Remarks
Supplying an IAM role is only valid when also specifying a KMS key.