Class: Aws::BedrockAgentCoreControl::Types::RequestHeaderConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::RequestHeaderConfiguration
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Note:
RequestHeaderConfiguration is a union - when making an API calls you must set exactly one of the members.
Note:
RequestHeaderConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RequestHeaderConfiguration corresponding to the set member.
Configuration for HTTP request headers that will be passed through to the runtime.
Direct Known Subclasses
Defined Under Namespace
Classes: RequestHeaderAllowlist, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#request_header_allowlist ⇒ Array<String>
A list of HTTP request headers that are allowed to be passed through to the runtime.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#request_header_allowlist ⇒ Array<String>
A list of HTTP request headers that are allowed to be passed through to the runtime.
4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 4065 class RequestHeaderConfiguration < Struct.new( :request_header_allowlist, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class RequestHeaderAllowlist < RequestHeaderConfiguration; end class Unknown < RequestHeaderConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4065 4066 4067 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 4065 def unknown @unknown end |