Class: Aws::EventBridge::Types::ConnectionBodyParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::ConnectionBodyParameter
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass ConnectionBodyParameter data as a hash:
{
key: "String",
value: "String",
is_value_secret: false,
}
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 =
[]
Instance Attribute Summary collapse
-
#is_value_secret ⇒ Boolean
Specified whether the value is secret.
-
#key ⇒ String
The key for the parameter.
-
#value ⇒ String
The value associated with the key.
Instance Attribute Details
#is_value_secret ⇒ Boolean
Specified whether the value is secret.
555 556 557 558 559 560 561 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 555 class ConnectionBodyParameter < Struct.new( :key, :value, :is_value_secret) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The key for the parameter.
555 556 557 558 559 560 561 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 555 class ConnectionBodyParameter < Struct.new( :key, :value, :is_value_secret) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value associated with the key.
555 556 557 558 559 560 561 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 555 class ConnectionBodyParameter < Struct.new( :key, :value, :is_value_secret) SENSITIVE = [] include Aws::Structure end |