Class: Aws::CloudWatchEvents::Types::ConnectionBodyParameter

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

Overview

Additional parameter included in the body. You can include up to 100 additional body 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 secret.

Returns:

  • (Boolean)


477
478
479
480
481
482
483
# File 'lib/aws-sdk-cloudwatchevents/types.rb', line 477

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

#keyString

The key for the parameter.

Returns:

  • (String)


477
478
479
480
481
482
483
# File 'lib/aws-sdk-cloudwatchevents/types.rb', line 477

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

#valueString

The value associated with the key.

Returns:

  • (String)


477
478
479
480
481
482
483
# File 'lib/aws-sdk-cloudwatchevents/types.rb', line 477

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