Class: Aws::EventBridge::Types::ConnectionQueryStringParameter

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

Overview

Any additional query string parameter for the connection. You can include up to 100 additional query string parameters per request. Each additional parameter counts towards the event payload size, which cannot exceed 64 KB.

Constant Summary collapse

SENSITIVE =
[:value]

Instance Attribute Summary collapse

Instance Attribute Details

#is_value_secretBoolean

Specifies whether the value is secret.

Returns:

  • (Boolean)


648
649
650
651
652
653
654
# File 'lib/aws-sdk-eventbridge/types.rb', line 648

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

#keyString

The key for a query string parameter.

Returns:

  • (String)


648
649
650
651
652
653
654
# File 'lib/aws-sdk-eventbridge/types.rb', line 648

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

#valueString

The value associated with the key for the query string parameter.

Returns:

  • (String)


648
649
650
651
652
653
654
# File 'lib/aws-sdk-eventbridge/types.rb', line 648

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