Class: Aws::ForecastService::Types::DescribeDatasetGroupResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::DescribeDatasetGroupResponse
- Includes:
- Structure
- Defined in:
- 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] operation.
-
#status ⇒ String
The status of the dataset group.
Instance Attribute Details
#creation_time ⇒ Time
When the dataset group was created.
2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 2473 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.
2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 2473 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.
2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 2473 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.
2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 2473 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.
2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 2473 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.
[1]: docs.aws.amazon.com/forecast/latest/dg/API_UpdateDatasetGroup.html
2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 2473 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.
<note markdown=“1”> The ‘Status` of the dataset group must be `ACTIVE` before you can use the dataset group to create a predictor.
</note>
[1]: docs.aws.amazon.com/forecast/latest/dg/API_UpdateDatasetGroup.html
2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 2473 class DescribeDatasetGroupResponse < Struct.new( :dataset_group_name, :dataset_group_arn, :dataset_arns, :domain, :status, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |