Class: Aws::CloudWatch::Types::MessageData

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudwatch/types.rb

Overview

A message returned by the ‘GetMetricData`API, including a code and a description.

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

The error code or status code associated with the message.

Returns:

  • (String)


984
985
986
987
988
# File 'lib/aws-sdk-cloudwatch/types.rb', line 984

class MessageData < Struct.new(
  :code,
  :value)
  include Aws::Structure
end

#valueString

The message text.

Returns:

  • (String)


984
985
986
987
988
# File 'lib/aws-sdk-cloudwatch/types.rb', line 984

class MessageData < Struct.new(
  :code,
  :value)
  include Aws::Structure
end