SES / Client / exceptions / MissingRenderingAttributeException
MissingRenderingAttributeException#
- class SES.Client.exceptions.MissingRenderingAttributeException#
Indicates that one or more of the replacement values for the specified template was not specified. Ensure that the TemplateData object contains references to all of the replacement tags in the specified template.
Example
try: ... except client.exceptions.MissingRenderingAttributeException 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
{ 'TemplateName': 'string', 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
Indicates that one or more of the replacement values for the specified template was not specified. Ensure that the TemplateData object contains references to all of the replacement tags in the specified template.
TemplateName (string) –
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.