Class: Aws::CloudWatchEvents::Types::ConnectionHeaderParameter

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

Overview

Additional parameter included in the header. You can include up to 100 additional header parameters per request. An event payload cannot exceed 64 KB.

Constant Summary collapse

SENSITIVE =
[:value]

Instance Attribute Summary collapse

Instance Attribute Details

#is_value_secretBoolean

Specified whether the value is a secret.

Returns:

  • (Boolean)


503
504
505
506
507
508
509
# File 'gems/aws-sdk-cloudwatchevents/lib/aws-sdk-cloudwatchevents/types.rb', line 503

class ConnectionHeaderParameter < Struct.new(
  :key,
  :value,
  :is_value_secret)
  SENSITIVE = [:value]
  include Aws::Structure
end

#keyString

The key for the parameter.

Returns:

  • (String)


503
504
505
506
507
508
509
# File 'gems/aws-sdk-cloudwatchevents/lib/aws-sdk-cloudwatchevents/types.rb', line 503

class ConnectionHeaderParameter < Struct.new(
  :key,
  :value,
  :is_value_secret)
  SENSITIVE = [:value]
  include Aws::Structure
end

#valueString

The value associated with the key.

Returns:

  • (String)


503
504
505
506
507
508
509
# File 'gems/aws-sdk-cloudwatchevents/lib/aws-sdk-cloudwatchevents/types.rb', line 503

class ConnectionHeaderParameter < Struct.new(
  :key,
  :value,
  :is_value_secret)
  SENSITIVE = [:value]
  include Aws::Structure
end