Class: Aws::Personalize::Types::Dataset
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::Dataset
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
Provides metadata for a dataset.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_date_time ⇒ Time
The creation date and time (in Unix time) of the dataset.
-
#dataset_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset that you want metadata for.
-
#dataset_group_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset group.
-
#dataset_type ⇒ String
One of the following values:.
-
#last_updated_date_time ⇒ Time
A time stamp that shows when the dataset was updated.
-
#latest_dataset_update ⇒ Types::DatasetUpdateSummary
Describes the latest update to the dataset.
-
#name ⇒ String
The name of the dataset.
-
#schema_arn ⇒ String
The ARN of the associated schema.
-
#status ⇒ String
The status of the dataset.
-
#tracking_id ⇒ String
The ID of the event tracker for an Action interactions dataset.
Instance Attribute Details
#creation_date_time ⇒ Time
The creation date and time (in Unix time) of the dataset.
2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 |
# File 'lib/aws-sdk-personalize/types.rb', line 2058 class Dataset < Struct.new( :name, :dataset_arn, :dataset_group_arn, :dataset_type, :schema_arn, :status, :creation_date_time, :last_updated_date_time, :latest_dataset_update, :tracking_id) SENSITIVE = [] include Aws::Structure end |
#dataset_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset that you want metadata for.
2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 |
# File 'lib/aws-sdk-personalize/types.rb', line 2058 class Dataset < Struct.new( :name, :dataset_arn, :dataset_group_arn, :dataset_type, :schema_arn, :status, :creation_date_time, :last_updated_date_time, :latest_dataset_update, :tracking_id) SENSITIVE = [] include Aws::Structure end |
#dataset_group_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset group.
2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 |
# File 'lib/aws-sdk-personalize/types.rb', line 2058 class Dataset < Struct.new( :name, :dataset_arn, :dataset_group_arn, :dataset_type, :schema_arn, :status, :creation_date_time, :last_updated_date_time, :latest_dataset_update, :tracking_id) SENSITIVE = [] include Aws::Structure end |
#dataset_type ⇒ String
One of the following values:
-
Interactions
-
Items
-
Users
-
Actions
-
Action_Interactions
2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 |
# File 'lib/aws-sdk-personalize/types.rb', line 2058 class Dataset < Struct.new( :name, :dataset_arn, :dataset_group_arn, :dataset_type, :schema_arn, :status, :creation_date_time, :last_updated_date_time, :latest_dataset_update, :tracking_id) SENSITIVE = [] include Aws::Structure end |
#last_updated_date_time ⇒ Time
A time stamp that shows when the dataset was updated.
2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 |
# File 'lib/aws-sdk-personalize/types.rb', line 2058 class Dataset < Struct.new( :name, :dataset_arn, :dataset_group_arn, :dataset_type, :schema_arn, :status, :creation_date_time, :last_updated_date_time, :latest_dataset_update, :tracking_id) SENSITIVE = [] include Aws::Structure end |
#latest_dataset_update ⇒ Types::DatasetUpdateSummary
Describes the latest update to the dataset.
2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 |
# File 'lib/aws-sdk-personalize/types.rb', line 2058 class Dataset < Struct.new( :name, :dataset_arn, :dataset_group_arn, :dataset_type, :schema_arn, :status, :creation_date_time, :last_updated_date_time, :latest_dataset_update, :tracking_id) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the dataset.
2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 |
# File 'lib/aws-sdk-personalize/types.rb', line 2058 class Dataset < Struct.new( :name, :dataset_arn, :dataset_group_arn, :dataset_type, :schema_arn, :status, :creation_date_time, :last_updated_date_time, :latest_dataset_update, :tracking_id) SENSITIVE = [] include Aws::Structure end |
#schema_arn ⇒ String
The ARN of the associated schema.
2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 |
# File 'lib/aws-sdk-personalize/types.rb', line 2058 class Dataset < Struct.new( :name, :dataset_arn, :dataset_group_arn, :dataset_type, :schema_arn, :status, :creation_date_time, :last_updated_date_time, :latest_dataset_update, :tracking_id) 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
2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 |
# File 'lib/aws-sdk-personalize/types.rb', line 2058 class Dataset < Struct.new( :name, :dataset_arn, :dataset_group_arn, :dataset_type, :schema_arn, :status, :creation_date_time, :last_updated_date_time, :latest_dataset_update, :tracking_id) SENSITIVE = [] include Aws::Structure end |
#tracking_id ⇒ String
The ID of the event tracker for an Action interactions dataset. You specify the tracker’s ID in the ‘PutActionInteractions` API operation. Amazon Personalize uses it to direct new data to the Action interactions dataset in your dataset group.
2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 |
# File 'lib/aws-sdk-personalize/types.rb', line 2058 class Dataset < Struct.new( :name, :dataset_arn, :dataset_group_arn, :dataset_type, :schema_arn, :status, :creation_date_time, :last_updated_date_time, :latest_dataset_update, :tracking_id) SENSITIVE = [] include Aws::Structure end |