Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DatasetGroup

import type { DatasetGroup } from "https://aws-api.deno.dev/v0.3/services/personalize.ts?docs=full";

A dataset group is a collection of related datasets (Interactions, User, and Item). 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 Key Management Service (KMS) key to encrypt the datasets in the group.

interface DatasetGroup {
creationDateTime?: Date | number | null;
datasetGroupArn?: string | null;
domain?: Domain | null;
failureReason?: string | null;
kmsKeyArn?: string | null;
lastUpdatedDateTime?: Date | number | null;
name?: string | null;
roleArn?: string | null;
status?: string | null;
}

§Properties

§
creationDateTime?: Date | number | null
[src]

The creation date and time (in Unix time) of the dataset group.

§
datasetGroupArn?: string | null
[src]

The Amazon Resource Name (ARN) of the dataset group.

§
domain?: Domain | null
[src]

The domain of a Domain dataset group.

§
failureReason?: string | null
[src]

If creating a dataset group fails, provides the reason why.

§
kmsKeyArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Key Management Service (KMS) key used to encrypt the datasets.

§
lastUpdatedDateTime?: Date | number | null
[src]

The last update date and time (in Unix time) of the dataset group.

§
name?: string | null
[src]

The name of the dataset group.

§
roleArn?: string | null
[src]

The ARN of the IAM role that has permissions to create the dataset group.

§
status?: string | null
[src]

The current status of the dataset group.

A dataset group can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
  • DELETE PENDING