PcaConnectorAd / Client / exceptions / ResourceNotFoundException
ResourceNotFoundException#
- class PcaConnectorAd.Client.exceptions.ResourceNotFoundException#
The operation tried to access a nonexistent resource. The resource might not be specified correctly, or its status might not be ACTIVE.
Example
try: ... except client.exceptions.ResourceNotFoundException 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) –
The operation tried to access a nonexistent resource. The resource might not be specified correctly, or its status might not be ACTIVE.
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.