Class: Aws::ResilienceHub::Types::DeleteAppRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResilienceHub::Types::DeleteAppRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-resiliencehub/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_arn ⇒ String
Amazon Resource Name (ARN) of the Resilience Hub application.
-
#client_token ⇒ String
Used for an idempotency token.
-
#force_delete ⇒ Boolean
A boolean option to force the deletion of an Resilience Hub application.
Instance Attribute Details
#app_arn ⇒ String
Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:‘partition`:resiliencehub:`region`:`account`:app/`app-id`. For more information about ARNs, see [ Amazon Resource Names (ARNs)] in the *Amazon Web Services General Reference* guide.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
1893 1894 1895 1896 1897 1898 1899 |
# File 'lib/aws-sdk-resiliencehub/types.rb', line 1893 class DeleteAppRequest < Struct.new( :app_arn, :client_token, :force_delete) SENSITIVE = [] include Aws::Structure end |
#client_token ⇒ String
Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. You should not reuse the same client token for other API requests.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
1893 1894 1895 1896 1897 1898 1899 |
# File 'lib/aws-sdk-resiliencehub/types.rb', line 1893 class DeleteAppRequest < Struct.new( :app_arn, :client_token, :force_delete) SENSITIVE = [] include Aws::Structure end |
#force_delete ⇒ Boolean
A boolean option to force the deletion of an Resilience Hub application.
1893 1894 1895 1896 1897 1898 1899 |
# File 'lib/aws-sdk-resiliencehub/types.rb', line 1893 class DeleteAppRequest < Struct.new( :app_arn, :client_token, :force_delete) SENSITIVE = [] include Aws::Structure end |