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)


5095
5096
5097
5098
5099
5100
5101
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5095

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

#idString

The query identifier.

Returns:

  • (String)


5095
5096
5097
5098
5099
5100
5101
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5095

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

#messageString

The error message associated with the current query error.

Returns:

  • (String)


5095
5096
5097
5098
5099
5100
5101
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5095

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