Class: Aws::Personalize::Types::DatasetSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::DatasetSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
Provides a summary of the properties of a dataset. For a complete listing, call the [DescribeDataset] API.
[1]: docs.aws.amazon.com/personalize/latest/dg/API_DescribeDataset.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_date_time ⇒ Time
The date and time (in Unix time) that the dataset was created.
-
#dataset_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset.
-
#dataset_type ⇒ String
The dataset type.
-
#last_updated_date_time ⇒ Time
The date and time (in Unix time) that the dataset was last updated.
-
#name ⇒ String
The name of the dataset.
-
#status ⇒ String
The status of the dataset.
Instance Attribute Details
#creation_date_time ⇒ Time
The date and time (in Unix time) that the dataset was created.
2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 |
# File 'lib/aws-sdk-personalize/types.rb', line 2648 class DatasetSummary < Struct.new( :name, :dataset_arn, :dataset_type, :status, :creation_date_time, :last_updated_date_time) SENSITIVE = [] include Aws::Structure end |
#dataset_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset.
2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 |
# File 'lib/aws-sdk-personalize/types.rb', line 2648 class DatasetSummary < Struct.new( :name, :dataset_arn, :dataset_type, :status, :creation_date_time, :last_updated_date_time) SENSITIVE = [] include Aws::Structure end |
#dataset_type ⇒ String
The dataset type. One of the following values:
-
Interactions
-
Items
-
Users
-
Event-Interactions
2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 |
# File 'lib/aws-sdk-personalize/types.rb', line 2648 class DatasetSummary < Struct.new( :name, :dataset_arn, :dataset_type, :status, :creation_date_time, :last_updated_date_time) SENSITIVE = [] include Aws::Structure end |
#last_updated_date_time ⇒ Time
The date and time (in Unix time) that the dataset was last updated.
2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 |
# File 'lib/aws-sdk-personalize/types.rb', line 2648 class DatasetSummary < Struct.new( :name, :dataset_arn, :dataset_type, :status, :creation_date_time, :last_updated_date_time) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the dataset.
2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 |
# File 'lib/aws-sdk-personalize/types.rb', line 2648 class DatasetSummary < Struct.new( :name, :dataset_arn, :dataset_type, :status, :creation_date_time, :last_updated_date_time) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the dataset.
A dataset can be in one of the following states:
-
CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
-
DELETE PENDING > DELETE IN_PROGRESS
2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 |
# File 'lib/aws-sdk-personalize/types.rb', line 2648 class DatasetSummary < Struct.new( :name, :dataset_arn, :dataset_type, :status, :creation_date_time, :last_updated_date_time) SENSITIVE = [] include Aws::Structure end |