Class: Aws::ResilienceHub::Types::ConflictException
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResilienceHub::Types::ConflictException
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-resiliencehub/types.rb
Overview
This exception occurs when a conflict with a previous successful write is detected. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
- #message ⇒ String
-
#resource_id ⇒ String
The identifier of the resource that the exception applies to.
-
#resource_type ⇒ String
The type of the resource that the exception applies to.
Instance Attribute Details
#message ⇒ String
1249 1250 1251 1252 1253 1254 1255 |
# File 'lib/aws-sdk-resiliencehub/types.rb', line 1249 class ConflictException < Struct.new( :message, :resource_id, :resource_type) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
The identifier of the resource that the exception applies to.
1249 1250 1251 1252 1253 1254 1255 |
# File 'lib/aws-sdk-resiliencehub/types.rb', line 1249 class ConflictException < Struct.new( :message, :resource_id, :resource_type) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of the resource that the exception applies to.
1249 1250 1251 1252 1253 1254 1255 |
# File 'lib/aws-sdk-resiliencehub/types.rb', line 1249 class ConflictException < Struct.new( :message, :resource_id, :resource_type) SENSITIVE = [] include Aws::Structure end |