Class: Aws::EventBridge::Types::ConnectionQueryStringParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::ConnectionQueryStringParameter
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass ConnectionQueryStringParameter data as a hash:
{
key: "QueryStringKey",
value: "QueryStringValue",
is_value_secret: false,
}
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 =
[]
Instance Attribute Summary collapse
-
#is_value_secret ⇒ Boolean
Specifies whether the value is secret.
-
#key ⇒ String
The key for a query string parameter.
-
#value ⇒ String
The value associated with the key for the query string parameter.
Instance Attribute Details
#is_value_secret ⇒ Boolean
Specifies whether the value is secret.
726 727 728 729 730 731 732 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 726 class ConnectionQueryStringParameter < Struct.new( :key, :value, :is_value_secret) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The key for a query string parameter.
726 727 728 729 730 731 732 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 726 class ConnectionQueryStringParameter < Struct.new( :key, :value, :is_value_secret) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value associated with the key for the query string parameter.
726 727 728 729 730 731 732 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 726 class ConnectionQueryStringParameter < Struct.new( :key, :value, :is_value_secret) SENSITIVE = [] include Aws::Structure end |