Class: Aws::ForecastService::Types::DatasetGroupSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::DatasetGroupSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-forecastservice/types.rb
Overview
Provides a summary of the dataset group properties used in the
- ListDatasetGroups][1
-
operation. To get the complete set of
properties, call the [DescribeDatasetGroup] operation, and provide the ‘DatasetGroupArn`.
[1]: docs.aws.amazon.com/forecast/latest/dg/API_ListDatasetGroups.html [2]: docs.aws.amazon.com/forecast/latest/dg/API_DescribeDatasetGroup.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_time ⇒ Time
When the dataset group was created.
-
#dataset_group_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset group.
-
#dataset_group_name ⇒ String
The name of the dataset group.
-
#last_modification_time ⇒ Time
When the dataset group was created or last updated from a call to the [UpdateDatasetGroup] operation.
Instance Attribute Details
#creation_time ⇒ Time
When the dataset group was created.
1933 1934 1935 1936 1937 1938 1939 1940 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 1933 class DatasetGroupSummary < Struct.new( :dataset_group_arn, :dataset_group_name, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#dataset_group_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset group.
1933 1934 1935 1936 1937 1938 1939 1940 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 1933 class DatasetGroupSummary < Struct.new( :dataset_group_arn, :dataset_group_name, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |
#dataset_group_name ⇒ String
The name of the dataset group.
1933 1934 1935 1936 1937 1938 1939 1940 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 1933 class DatasetGroupSummary < Struct.new( :dataset_group_arn, :dataset_group_name, :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 `ListDatasetGroups` call.
[1]: docs.aws.amazon.com/forecast/latest/dg/API_UpdateDatasetGroup.html
1933 1934 1935 1936 1937 1938 1939 1940 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 1933 class DatasetGroupSummary < Struct.new( :dataset_group_arn, :dataset_group_name, :creation_time, :last_modification_time) SENSITIVE = [] include Aws::Structure end |