Class: Aws::Invoicing::Types::ConflictException
- Inherits:
-
Struct
- Object
- Struct
- Aws::Invoicing::Types::ConflictException
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-invoicing/types.rb
Overview
The request could not be completed due to a conflict with the current state of the resource. This exception occurs when a concurrent modification is detected during an update operation, or when attempting to create a resource that already exists.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
- #message ⇒ String
-
#resource_id ⇒ String
The identifier of the resource that caused the conflict.
-
#resource_type ⇒ String
The type of resource that caused the conflict.
Instance Attribute Details
#message ⇒ String
123 124 125 126 127 128 129 |
# File 'lib/aws-sdk-invoicing/types.rb', line 123 class ConflictException < Struct.new( :message, :resource_id, :resource_type) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
The identifier of the resource that caused the conflict.
123 124 125 126 127 128 129 |
# File 'lib/aws-sdk-invoicing/types.rb', line 123 class ConflictException < Struct.new( :message, :resource_id, :resource_type) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of resource that caused the conflict.
123 124 125 126 127 128 129 |
# File 'lib/aws-sdk-invoicing/types.rb', line 123 class ConflictException < Struct.new( :message, :resource_id, :resource_type) SENSITIVE = [] include Aws::Structure end |