Class: Aws::IdentityStore::Types::ConflictException
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::ConflictException
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-identitystore/types.rb
Overview
This request cannot be completed for one of the following reasons:
-
Performing the requested operation would violate an existing uniqueness claim in the identity store. Resolve the conflict before retrying this request.
-
The requested resource was being concurrently modified by another request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
- #message ⇒ String
-
#reason ⇒ String
Indicates the reason for a conflict error when the service is unable to access a Customer Managed KMS key.
-
#request_id ⇒ String
The identifier for each request.
Instance Attribute Details
#message ⇒ String
171 172 173 174 175 176 177 |
# File 'lib/aws-sdk-identitystore/types.rb', line 171 class ConflictException < Struct.new( :message, :request_id, :reason) SENSITIVE = [] include Aws::Structure end |
#reason ⇒ String
Indicates the reason for a conflict error when the service is unable to access a Customer Managed KMS key. For non-KMS permission errors, this field is not included.
171 172 173 174 175 176 177 |
# File 'lib/aws-sdk-identitystore/types.rb', line 171 class ConflictException < Struct.new( :message, :request_id, :reason) SENSITIVE = [] include Aws::Structure end |
#request_id ⇒ String
The identifier for each request. This value is a globally unique ID that is generated by the identity store service for each sent request, and is then returned inside the exception if the request fails.
171 172 173 174 175 176 177 |
# File 'lib/aws-sdk-identitystore/types.rb', line 171 class ConflictException < Struct.new( :message, :request_id, :reason) SENSITIVE = [] include Aws::Structure end |