Class: Aws::Personalize::Types::DatasetGroupSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::DatasetGroupSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
Provides a summary of the properties of a dataset group. For a complete listing, call the [DescribeDatasetGroup] API.
[1]: docs.aws.amazon.com/personalize/latest/dg/API_DescribeDatasetGroup.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_date_time ⇒ Time
The date and time (in Unix time) that the dataset group was created.
-
#dataset_group_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset group.
-
#domain ⇒ String
The domain of a Domain dataset group.
-
#failure_reason ⇒ String
If creating a dataset group fails, the reason behind the failure.
-
#last_updated_date_time ⇒ Time
The date and time (in Unix time) that the dataset group was last updated.
-
#name ⇒ String
The name of the dataset group.
-
#status ⇒ String
The status of the dataset group.
Instance Attribute Details
#creation_date_time ⇒ Time
The date and time (in Unix time) that the dataset group was created.
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 |
# File 'lib/aws-sdk-personalize/types.rb', line 2351 class DatasetGroupSummary < Struct.new( :name, :dataset_group_arn, :status, :creation_date_time, :last_updated_date_time, :failure_reason, :domain) SENSITIVE = [] include Aws::Structure end |
#dataset_group_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset group.
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 |
# File 'lib/aws-sdk-personalize/types.rb', line 2351 class DatasetGroupSummary < Struct.new( :name, :dataset_group_arn, :status, :creation_date_time, :last_updated_date_time, :failure_reason, :domain) SENSITIVE = [] include Aws::Structure end |
#domain ⇒ String
The domain of a Domain dataset group.
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 |
# File 'lib/aws-sdk-personalize/types.rb', line 2351 class DatasetGroupSummary < Struct.new( :name, :dataset_group_arn, :status, :creation_date_time, :last_updated_date_time, :failure_reason, :domain) SENSITIVE = [] include Aws::Structure end |
#failure_reason ⇒ String
If creating a dataset group fails, the reason behind the failure.
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 |
# File 'lib/aws-sdk-personalize/types.rb', line 2351 class DatasetGroupSummary < Struct.new( :name, :dataset_group_arn, :status, :creation_date_time, :last_updated_date_time, :failure_reason, :domain) SENSITIVE = [] include Aws::Structure end |
#last_updated_date_time ⇒ Time
The date and time (in Unix time) that the dataset group was last updated.
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 |
# File 'lib/aws-sdk-personalize/types.rb', line 2351 class DatasetGroupSummary < Struct.new( :name, :dataset_group_arn, :status, :creation_date_time, :last_updated_date_time, :failure_reason, :domain) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the dataset group.
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 |
# File 'lib/aws-sdk-personalize/types.rb', line 2351 class DatasetGroupSummary < Struct.new( :name, :dataset_group_arn, :status, :creation_date_time, :last_updated_date_time, :failure_reason, :domain) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The 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
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 |
# File 'lib/aws-sdk-personalize/types.rb', line 2351 class DatasetGroupSummary < Struct.new( :name, :dataset_group_arn, :status, :creation_date_time, :last_updated_date_time, :failure_reason, :domain) SENSITIVE = [] include Aws::Structure end |