Class: Aws::ForecastService::Types::StopResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::StopResourceRequest
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
Note:
When making an API call, you may pass StopResourceRequest data as a hash:
{
resource_arn: "Arn", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) that identifies the resource to stop.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) that identifies the resource to stop.
The supported ARNs are DatasetImportJobArn
, PredictorArn
,
PredictorBacktestExportJobArn
, ForecastArn
,
ForecastExportJobArn
, ExplainabilityArn
, and
ExplainabilityExportArn
.
6399 6400 6401 6402 6403 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 6399 class StopResourceRequest < Struct.new( :resource_arn) SENSITIVE = [] include Aws::Structure end |