Class: Aws::QConnect::Types::EmailHeader

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

Overview

The email header to include in email messages.

Constant Summary collapse

SENSITIVE =
[:value]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the email header.

Returns:

  • (String)


3900
3901
3902
3903
3904
3905
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3900

class EmailHeader < Struct.new(
  :name,
  :value)
  SENSITIVE = [:value]
  include Aws::Structure
end

#valueString

The value of the email header.

Returns:

  • (String)


3900
3901
3902
3903
3904
3905
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3900

class EmailHeader < Struct.new(
  :name,
  :value)
  SENSITIVE = [:value]
  include Aws::Structure
end