Class: Aws::IoT::Types::HttpActionHeader
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::HttpActionHeader
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass HttpActionHeader data as a hash:
{
key: "HeaderKey", # required
value: "HeaderValue", # required
}
The HTTP action header.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The HTTP header key.
-
#value ⇒ String
The HTTP header value.
Instance Attribute Details
#key ⇒ String
The HTTP header key.
9769 9770 9771 9772 9773 9774 |
# File 'lib/aws-sdk-iot/types.rb', line 9769 class HttpActionHeader < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The HTTP header value. Substitution templates are supported.
9769 9770 9771 9772 9773 9774 |
# File 'lib/aws-sdk-iot/types.rb', line 9769 class HttpActionHeader < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |