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.
617 618 619 620 621 622 |
# File 'gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb', line 617 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.
617 618 619 620 621 622 |
# File 'gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb', line 617 class DeleteApplicationRequest < Struct.new( :arn, :force) SENSITIVE = [] include Aws::Structure end |