Class: Aws::SMS::Types::DeleteAppRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SMS::Types::DeleteAppRequest
- Defined in:
- gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb
Overview
Note:
When making an API call, you may pass DeleteAppRequest data as a hash:
{
app_id: "AppId",
force_stop_app_replication: false,
force_terminate_app: false,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_id ⇒ String
The ID of the application.
-
#force_stop_app_replication ⇒ Boolean
Indicates whether to stop all replication jobs corresponding to the servers in the application while deleting the application.
-
#force_terminate_app ⇒ Boolean
Indicates whether to terminate the stack corresponding to the application while deleting the application.
Instance Attribute Details
#app_id ⇒ String
The ID of the application.
515 516 517 518 519 520 521 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 515 class DeleteAppRequest < Struct.new( :app_id, :force_stop_app_replication, :force_terminate_app) SENSITIVE = [] include Aws::Structure end |
#force_stop_app_replication ⇒ Boolean
Indicates whether to stop all replication jobs corresponding to the servers in the application while deleting the application.
515 516 517 518 519 520 521 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 515 class DeleteAppRequest < Struct.new( :app_id, :force_stop_app_replication, :force_terminate_app) SENSITIVE = [] include Aws::Structure end |
#force_terminate_app ⇒ Boolean
Indicates whether to terminate the stack corresponding to the application while deleting the application.
515 516 517 518 519 520 521 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 515 class DeleteAppRequest < Struct.new( :app_id, :force_stop_app_replication, :force_terminate_app) SENSITIVE = [] include Aws::Structure end |