Class: Aws::BedrockAgentCoreControl::Types::RequestHeaderConfiguration

Inherits:
Struct
  • Object
show all
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

RequestHeaderAllowlist, Unknown

Defined Under Namespace

Classes: RequestHeaderAllowlist, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#request_header_allowlistArray<String>

A list of HTTP request headers that are allowed to be passed through to the runtime.

Returns:

  • (Array<String>)


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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4065
4066
4067
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 4065

def unknown
  @unknown
end