Class: Aws::KinesisAnalyticsV2::Types::StopApplicationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::StopApplicationRequest
- Defined in:
- gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_name ⇒ String
The name of the running application to stop.
-
#force ⇒ Boolean
Set to
true
to force the application to stop.
Instance Attribute Details
#application_name ⇒ String
The name of the running application to stop.
4850 4851 4852 4853 4854 4855 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4850 class StopApplicationRequest < Struct.new( :application_name, :force) SENSITIVE = [] include Aws::Structure end |
#force ⇒ Boolean
Set to true
to force the application to stop. If you set Force
to true
, Managed Service for Apache Flink stops the application
without taking a snapshot.
You can only force stop a Managed Service for Apache Flink application. You can't force stop a SQL-based Kinesis Data Analytics application.
The application must be in the STARTING
, UPDATING
, STOPPING
,
AUTOSCALING
, or RUNNING
status.
4850 4851 4852 4853 4854 4855 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 4850 class StopApplicationRequest < Struct.new( :application_name, :force) SENSITIVE = [] include Aws::Structure end |