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)


5071
5072
5073
5074
5075
5076
5077
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5071

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

#idString

The query identifier.

Returns:

  • (String)


5071
5072
5073
5074
5075
5076
5077
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5071

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

#messageString

The error message associated with the current query error.

Returns:

  • (String)


5071
5072
5073
5074
5075
5076
5077
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5071

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