Class CfnDatasetGroupPropsMixin
A dataset group is a collection of related datasets (Item interactions, Users, Items, Actions, Action interactions).
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Personalize.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDatasetGroupPropsMixin : Mixin, IMixin
Syntax (vb)
Public Class CfnDatasetGroupPropsMixin Inherits Mixin Implements IMixin
Remarks
You create a dataset group by calling CreateDatasetGroup . You then create a dataset and add it to a dataset group by calling CreateDataset . The dataset group is used to create and train a solution by calling CreateSolution . A dataset group can contain only one of each type of dataset.
You can specify an AWS Key Management Service (KMS) key to encrypt the datasets in the group.
CloudformationResource: AWS::Personalize::DatasetGroup
Mixin: true
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.Mixins.Preview.Mixins;
using Amazon.CDK.Mixins.Preview.AWS.Personalize.Mixins;
var cfnDatasetGroupPropsMixin = new CfnDatasetGroupPropsMixin(new CfnDatasetGroupMixinProps {
Domain = "domain",
KmsKeyArn = "kmsKeyArn",
Name = "name",
RoleArn = "roleArn"
}, new CfnPropertyMixinOptions {
Strategy = PropertyMergeStrategy.OVERRIDE
});
Synopsis
Constructors
| CfnDatasetGroupPropsMixin(ICfnDatasetGroupMixinProps, ICfnPropertyMixinOptions?) | Create a mixin to apply properties to |
Properties
| CFN_PROPERTY_KEYS | A dataset group is a collection of related datasets (Item interactions, Users, Items, Actions, Action interactions). |
| Props | A dataset group is a collection of related datasets (Item interactions, Users, Items, Actions, Action interactions). |
| Strategy | A dataset group is a collection of related datasets (Item interactions, Users, Items, Actions, Action interactions). |
Methods
| ApplyTo(IConstruct) | Apply the mixin properties to the construct. |
| Supports(IConstruct) | Check if this mixin supports the given construct. |
Constructors
CfnDatasetGroupPropsMixin(ICfnDatasetGroupMixinProps, ICfnPropertyMixinOptions?)
Create a mixin to apply properties to AWS::Personalize::DatasetGroup.
public CfnDatasetGroupPropsMixin(ICfnDatasetGroupMixinProps props, ICfnPropertyMixinOptions? options = null)
Parameters
- props ICfnDatasetGroupMixinProps
L1 properties to apply.
- options ICfnPropertyMixinOptions
Mixin options.
Remarks
You create a dataset group by calling CreateDatasetGroup . You then create a dataset and add it to a dataset group by calling CreateDataset . The dataset group is used to create and train a solution by calling CreateSolution . A dataset group can contain only one of each type of dataset.
You can specify an AWS Key Management Service (KMS) key to encrypt the datasets in the group.
CloudformationResource: AWS::Personalize::DatasetGroup
Mixin: true
ExampleMetadata: fixture=_generated
Properties
CFN_PROPERTY_KEYS
A dataset group is a collection of related datasets (Item interactions, Users, Items, Actions, Action interactions).
protected static string[] CFN_PROPERTY_KEYS { get; }
Property Value
string[]
Remarks
You create a dataset group by calling CreateDatasetGroup . You then create a dataset and add it to a dataset group by calling CreateDataset . The dataset group is used to create and train a solution by calling CreateSolution . A dataset group can contain only one of each type of dataset.
You can specify an AWS Key Management Service (KMS) key to encrypt the datasets in the group.
CloudformationResource: AWS::Personalize::DatasetGroup
Mixin: true
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.Mixins.Preview.Mixins;
using Amazon.CDK.Mixins.Preview.AWS.Personalize.Mixins;
var cfnDatasetGroupPropsMixin = new CfnDatasetGroupPropsMixin(new CfnDatasetGroupMixinProps {
Domain = "domain",
KmsKeyArn = "kmsKeyArn",
Name = "name",
RoleArn = "roleArn"
}, new CfnPropertyMixinOptions {
Strategy = PropertyMergeStrategy.OVERRIDE
});
Props
A dataset group is a collection of related datasets (Item interactions, Users, Items, Actions, Action interactions).
protected virtual ICfnDatasetGroupMixinProps Props { get; }
Property Value
Remarks
You create a dataset group by calling CreateDatasetGroup . You then create a dataset and add it to a dataset group by calling CreateDataset . The dataset group is used to create and train a solution by calling CreateSolution . A dataset group can contain only one of each type of dataset.
You can specify an AWS Key Management Service (KMS) key to encrypt the datasets in the group.
CloudformationResource: AWS::Personalize::DatasetGroup
Mixin: true
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.Mixins.Preview.Mixins;
using Amazon.CDK.Mixins.Preview.AWS.Personalize.Mixins;
var cfnDatasetGroupPropsMixin = new CfnDatasetGroupPropsMixin(new CfnDatasetGroupMixinProps {
Domain = "domain",
KmsKeyArn = "kmsKeyArn",
Name = "name",
RoleArn = "roleArn"
}, new CfnPropertyMixinOptions {
Strategy = PropertyMergeStrategy.OVERRIDE
});
Strategy
A dataset group is a collection of related datasets (Item interactions, Users, Items, Actions, Action interactions).
protected virtual PropertyMergeStrategy Strategy { get; }
Property Value
Remarks
You create a dataset group by calling CreateDatasetGroup . You then create a dataset and add it to a dataset group by calling CreateDataset . The dataset group is used to create and train a solution by calling CreateSolution . A dataset group can contain only one of each type of dataset.
You can specify an AWS Key Management Service (KMS) key to encrypt the datasets in the group.
CloudformationResource: AWS::Personalize::DatasetGroup
Mixin: true
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.Mixins.Preview.Mixins;
using Amazon.CDK.Mixins.Preview.AWS.Personalize.Mixins;
var cfnDatasetGroupPropsMixin = new CfnDatasetGroupPropsMixin(new CfnDatasetGroupMixinProps {
Domain = "domain",
KmsKeyArn = "kmsKeyArn",
Name = "name",
RoleArn = "roleArn"
}, new CfnPropertyMixinOptions {
Strategy = PropertyMergeStrategy.OVERRIDE
});
Methods
ApplyTo(IConstruct)
Apply the mixin properties to the construct.
public override IConstruct ApplyTo(IConstruct construct)
Parameters
- construct IConstruct
Returns
IConstruct
Overrides
Remarks
You create a dataset group by calling CreateDatasetGroup . You then create a dataset and add it to a dataset group by calling CreateDataset . The dataset group is used to create and train a solution by calling CreateSolution . A dataset group can contain only one of each type of dataset.
You can specify an AWS Key Management Service (KMS) key to encrypt the datasets in the group.
CloudformationResource: AWS::Personalize::DatasetGroup
Mixin: true
ExampleMetadata: fixture=_generated
Supports(IConstruct)
Check if this mixin supports the given construct.
public override bool Supports(IConstruct construct)
Parameters
- construct IConstruct
Returns
Overrides
Remarks
You create a dataset group by calling CreateDatasetGroup . You then create a dataset and add it to a dataset group by calling CreateDataset . The dataset group is used to create and train a solution by calling CreateSolution . A dataset group can contain only one of each type of dataset.
You can specify an AWS Key Management Service (KMS) key to encrypt the datasets in the group.
CloudformationResource: AWS::Personalize::DatasetGroup
Mixin: true
ExampleMetadata: fixture=_generated