Show / Hide Table of Contents

Class CfnDatasetGroupMixinProps

Properties for CfnDatasetGroupPropsMixin.

Inheritance
object
CfnDatasetGroupMixinProps
Implements
ICfnDatasetGroupMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-datasetgroup.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-datasetgroup.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-datasetgroup.html#cfn-personalize-datasetgroup-domain

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-datasetgroup.html#cfn-personalize-datasetgroup-kmskeyarn

Name

The name of the dataset group.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-datasetgroup.html#cfn-personalize-datasetgroup-name

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

string

Remarks

Supplying an IAM role is only valid when also specifying a KMS key.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-datasetgroup.html#cfn-personalize-datasetgroup-rolearn

Implements

ICfnDatasetGroupMixinProps
Back to top Generated by DocFX