Class: Aws::ApplicationSignals::Types::BatchDeleteError
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::BatchDeleteError
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-applicationsignals/types.rb
Overview
Represents an error that occurred when attempting to delete a configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
Error code indicating the type of failure.
-
#message ⇒ String
Descriptive error message.
-
#resource_arn ⇒ String
ARN of the configuration that failed to delete.
Instance Attribute Details
#code ⇒ String
Error code indicating the type of failure.
263 264 265 266 267 268 269 |
# File 'lib/aws-sdk-applicationsignals/types.rb', line 263 class BatchDeleteError < Struct.new( :resource_arn, :code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
Descriptive error message.
263 264 265 266 267 268 269 |
# File 'lib/aws-sdk-applicationsignals/types.rb', line 263 class BatchDeleteError < Struct.new( :resource_arn, :code, :message) SENSITIVE = [] include Aws::Structure end |
#resource_arn ⇒ String
ARN of the configuration that failed to delete.
263 264 265 266 267 268 269 |
# File 'lib/aws-sdk-applicationsignals/types.rb', line 263 class BatchDeleteError < Struct.new( :resource_arn, :code, :message) SENSITIVE = [] include Aws::Structure end |