RequestHeaderConfiguration

class aws_cdk.aws_bedrock_agentcore_alpha.RequestHeaderConfiguration(*, allowlisted_headers=None)

Bases: object

(experimental) Configuration for HTTP request headers that will be passed through to the runtime.

Parameters:

allowlisted_headers (Optional[Sequence[str]]) – (experimental) A list of HTTP request headers that are allowed to be passed through to the runtime. Default: - No request headers allowed

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_bedrock_agentcore_alpha as bedrock_agentcore_alpha

request_header_configuration = bedrock_agentcore_alpha.RequestHeaderConfiguration(
    allowlisted_headers=["allowlistedHeaders"]
)

Attributes

allowlisted_headers

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

Default:
  • No request headers allowed

Stability:

experimental