Class: Aws::EventBridgeV2::Types::SqsMessageAttributeValue

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb

Overview

A custom SQS message attribute (data type plus string or binary value).

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#binary_value ⇒ String

Base64-encoded literal binary attribute value.

Returns:

  • (String)


2512
2513
2514
2515
2516
2517
2518
# File 'gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb', line 2512

class SqsMessageAttributeValue < Struct.new(
  :data_type,
  :string_value,
  :binary_value)
  SENSITIVE = []
  include Aws::Structure
end

#data_type ⇒ String

Attribute data type. Requiredness, the accepted vocabulary, and any custom label belong to SQS, which rejects an attribute without a data type on delivery.

Returns:

  • (String)


2512
2513
2514
2515
2516
2517
2518
# File 'gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb', line 2512

class SqsMessageAttributeValue < Struct.new(
  :data_type,
  :string_value,
  :binary_value)
  SENSITIVE = []
  include Aws::Structure
end

#string_value ⇒ String

String attribute value. A JSONata expression resolves once per delivered event.

Returns:

  • (String)


2512
2513
2514
2515
2516
2517
2518
# File 'gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb', line 2512

class SqsMessageAttributeValue < Struct.new(
  :data_type,
  :string_value,
  :binary_value)
  SENSITIVE = []
  include Aws::Structure
end