Class: Aws::SESV2::Types::MetricDataError

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#codeString

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.

Returns:

  • (String)


5712
5713
5714
5715
5716
5717
5718
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5712

class MetricDataError < Struct.new(
  :id,
  :code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end

#idString

The query identifier.

Returns:

  • (String)


5712
5713
5714
5715
5716
5717
5718
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5712

class MetricDataError < Struct.new(
  :id,
  :code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end

#messageString

The error message associated with the current query error.

Returns:

  • (String)


5712
5713
5714
5715
5716
5717
5718
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5712

class MetricDataError < Struct.new(
  :id,
  :code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end