PcaConnectorAd / Client / exceptions / ConflictException
ConflictException#
- class PcaConnectorAd.Client.exceptions.ConflictException#
This request cannot be completed for one of the following reasons because the requested resource was being concurrently modified by another request.
Example
try: ... except client.exceptions.ConflictException as e: print(e.response)
- response#
The parsed error response. All exceptions have a top level
Error
key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.Syntax
{ 'Message': 'string', 'ResourceId': 'string', 'ResourceType': 'string', 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
This request cannot be completed for one of the following reasons because the requested resource was being concurrently modified by another request.
Message (string) –
ResourceId (string) –
The identifier of the Amazon Web Services resource.
ResourceType (string) –
The resource type, which can be one of
Connector
,Template
,TemplateGroupAccessControlEntry
,ServicePrincipalName
, orDirectoryRegistration
.Error (dict) – Normalized access to common exception attributes.
Code (string) – An identifier specifying the exception type.
Message (string) – A descriptive message explaining why the exception occured.