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.
2957 2958 2959 2960 2961 2962 |
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 2957 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.
2957 2958 2959 2960 2961 2962 |
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 2957 class StopApplicationRequest < Struct.new( :application_id, :force_stop) SENSITIVE = [] include Aws::Structure end |