Class: Aws::MainframeModernization::Types::StopApplicationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MainframeModernization::Types::StopApplicationRequest
- Defined in:
- gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_id ⇒ String
The unique identifier of the application you want to stop.
-
#force_stop ⇒ Boolean
Stopping an application process can take a long time.
Instance Attribute Details
#application_id ⇒ String
The unique identifier of the application you want to stop.
2972 2973 2974 2975 2976 2977 |
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 2972 class StopApplicationRequest < Struct.new( :application_id, :force_stop) SENSITIVE = [] include Aws::Structure end |
#force_stop ⇒ Boolean
Stopping an application process can take a long time. Setting this parameter to true lets you force stop the application so you don't need to wait until the process finishes to apply another action on the application. The default value is false.
2972 2973 2974 2975 2976 2977 |
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 2972 class StopApplicationRequest < Struct.new( :application_id, :force_stop) SENSITIVE = [] include Aws::Structure end |