interface CfnDatasetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Personalize.Mixins.CfnDatasetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspersonalize/mixins#CfnDatasetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.personalize.mixins.CfnDatasetMixinProps |
Python | aws_cdk.mixins_preview.aws_personalize.mixins.CfnDatasetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_personalize » mixins » CfnDatasetMixinProps |
Properties for CfnDatasetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-dataset.html
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';
declare const dataSource: any;
const cfnDatasetMixinProps: personalize_mixins.CfnDatasetMixinProps = {
datasetGroupArn: 'datasetGroupArn',
datasetImportJob: {
datasetArn: 'datasetArn',
datasetImportJobArn: 'datasetImportJobArn',
dataSource: dataSource,
jobName: 'jobName',
roleArn: 'roleArn',
},
datasetType: 'datasetType',
name: 'name',
schemaArn: 'schemaArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| dataset | string | The Amazon Resource Name (ARN) of the dataset group. |
| dataset | IResolvable | Dataset | Describes a job that imports training data from a data source (Amazon S3 bucket) to an Amazon Personalize dataset. |
| dataset | string | One of the following values:. |
| name? | string | The name of the dataset. |
| schema | string | The ARN of the associated schema. |
datasetGroupArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the dataset group.
datasetImportJob?
Type:
IResolvable | Dataset
(optional)
Describes a job that imports training data from a data source (Amazon S3 bucket) to an Amazon Personalize dataset.
If you specify a dataset import job as part of a dataset, all dataset import job fields are required.
datasetType?
Type:
string
(optional)
One of the following values:.
- Interactions
- Items
- Users
You can't use CloudFormation to create an Action Interactions or Actions dataset.
name?
Type:
string
(optional)
The name of the dataset.
schemaArn?
Type:
string
(optional)
The ARN of the associated schema.

.NET
Go
Java
Python
TypeScript