Lambda / Client / exceptions / ENINotReadyException
ENINotReadyException¶
- class Lambda.Client.exceptions.ENINotReadyException¶
Lambda couldn’t invoke the Lambda function because the elastic network interface (ENI) configured for its VPC connection isn’t ready yet. Wait a few moments and try the request again. For more information about VPC configuration, see Configuring a Lambda function to access resources in a VPC.
Example
try: ... except client.exceptions.ENINotReadyException as e: print(e.response)
- response¶
The parsed error response. All exceptions have a top level
Errorkey that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.Syntax
{ 'Type': 'string', 'Message': 'string', 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
Lambda couldn’t invoke the Lambda function because the elastic network interface (ENI) configured for its VPC connection isn’t ready yet. Wait a few moments and try the request again. For more information about VPC configuration, see Configuring a Lambda function to access resources in a VPC.
Type (string) –
The exception type.
Message (string) –
The exception message.
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.