Class: Aws::ForecastService::Types::UpdateDatasetGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::UpdateDatasetGroupRequest
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
Note:
When making an API call, you may pass UpdateDatasetGroupRequest data as a hash:
{
dataset_group_arn: "Arn", # required
dataset_arns: ["Arn"], # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dataset_arns ⇒ Array<String>
An array of the Amazon Resource Names (ARNs) of the datasets to add to the dataset group.
-
#dataset_group_arn ⇒ String
The ARN of the dataset group.
Instance Attribute Details
#dataset_arns ⇒ Array<String>
An array of the Amazon Resource Names (ARNs) of the datasets to add to the dataset group.
6861 6862 6863 6864 6865 6866 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 6861 class UpdateDatasetGroupRequest < Struct.new( :dataset_group_arn, :dataset_arns) SENSITIVE = [] include Aws::Structure end |
#dataset_group_arn ⇒ String
The ARN of the dataset group.
6861 6862 6863 6864 6865 6866 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 6861 class UpdateDatasetGroupRequest < Struct.new( :dataset_group_arn, :dataset_arns) SENSITIVE = [] include Aws::Structure end |