Class: Aws::AppIntegrationsService::Types::DeleteApplicationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppIntegrationsService::Types::DeleteApplicationRequest
- Defined in:
- gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the Application.
-
#force ⇒ Boolean
Specifies whether to delete the application even if it still has application associations.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the Application.
646 647 648 649 650 651 |
# File 'gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb', line 646 class DeleteApplicationRequest < Struct.new( :arn, :force) SENSITIVE = [] include Aws::Structure end |
#force ⇒ Boolean
Specifies whether to delete the application even if it still has
application associations. If true, the operation removes the
application and its associations. If false or absent, the delete
fails when associations exist.
Setting this parameter to true permanently removes all of the
application's associations. Doing so might impact other resources
that rely on and reference the application. This action can't be
undone.
646 647 648 649 650 651 |
# File 'gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb', line 646 class DeleteApplicationRequest < Struct.new( :arn, :force) SENSITIVE = [] include Aws::Structure end |