Class: Aws::SESV2::Types::MetricDataError
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::MetricDataError
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
An error corresponding to the unsuccessful processing of a single metric data query.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
The query error code.
-
#id ⇒ String
The query identifier.
-
#message ⇒ String
The error message associated with the current query error.
Instance Attribute Details
#code ⇒ String
The query error code. Can be one of:
INTERNAL_FAILURE
– Amazon SES has failed to process one of the queries.ACCESS_DENIED
– You have insufficient access to retrieve metrics based on the given query.
5134 5135 5136 5137 5138 5139 5140 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5134 class MetricDataError < Struct.new( :id, :code, :message) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The query identifier.
5134 5135 5136 5137 5138 5139 5140 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5134 class MetricDataError < Struct.new( :id, :code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
The error message associated with the current query error.
5134 5135 5136 5137 5138 5139 5140 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5134 class MetricDataError < Struct.new( :id, :code, :message) SENSITIVE = [] include Aws::Structure end |