RequestHeaderConfiguration

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

Bases: object

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

Parameters:

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

Deprecated:

Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.

Stability:

deprecated

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

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

Default:
  • No request headers allowed

Stability:

deprecated