Class: Aws::ForecastService::Types::DescribeDatasetGroupResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::DescribeDatasetGroupResponse
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_time ⇒ Time
When the dataset group was created.
-
#dataset_arns ⇒ Array<String>
An array of Amazon Resource Names (ARNs) of the datasets contained in the dataset group.
-
#dataset_group_arn ⇒ String
The ARN of the dataset group.
-
#dataset_group_name ⇒ String
The name of the dataset group.
-
#domain ⇒ String
The domain associated with the dataset group.
-
#last_modification_time ⇒ Time
When the dataset group was created or last updated from a call to the [UpdateDatasetGroup][1] operation.
-
#status ⇒ String
The status of the dataset group.
Instance Attribute Details
#creation_time ⇒ Time
When the dataset group was created.
2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 2417 class DescribeDatasetGroupResponse < Struct.new( :dataset_group_name, :dataset_group_arn, :dataset_arns, :domain, :status, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#dataset_arns ⇒ Array<String>
An array of Amazon Resource Names (ARNs) of the datasets contained in the dataset group.
2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 2417 class DescribeDatasetGroupResponse < Struct.new( :dataset_group_name, :dataset_group_arn, :dataset_arns, :domain, :status, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#dataset_group_arn ⇒ String
The ARN of the dataset group.
2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 2417 class DescribeDatasetGroupResponse < Struct.new( :dataset_group_name, :dataset_group_arn, :dataset_arns, :domain, :status, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#dataset_group_name ⇒ String
The name of the dataset group.
2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 2417 class DescribeDatasetGroupResponse < Struct.new( :dataset_group_name, :dataset_group_arn, :dataset_arns, :domain, :status, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#domain ⇒ String
The domain associated with the dataset group.
2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 2417 class DescribeDatasetGroupResponse < Struct.new( :dataset_group_name, :dataset_group_arn, :dataset_arns, :domain, :status, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#last_modification_time ⇒ Time
When the dataset group was created or last updated from a call to
the UpdateDatasetGroup operation. While the dataset group is
being updated, LastModificationTime
is the current time of the
DescribeDatasetGroup
call.
2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 2417 class DescribeDatasetGroupResponse < Struct.new( :dataset_group_name, :dataset_group_arn, :dataset_arns, :domain, :status, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the dataset group. States include:
ACTIVE
CREATE_PENDING
,CREATE_IN_PROGRESS
,CREATE_FAILED
DELETE_PENDING
,DELETE_IN_PROGRESS
,DELETE_FAILED
UPDATE_PENDING
,UPDATE_IN_PROGRESS
,UPDATE_FAILED
The UPDATE
states apply when you call the UpdateDatasetGroup
operation.
Status
of the dataset group must be ACTIVE
before you can
use the dataset group to create a predictor.
2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 2417 class DescribeDatasetGroupResponse < Struct.new( :dataset_group_name, :dataset_group_arn, :dataset_arns, :domain, :status, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |