ApiGatewayTargetConfigurationProps

class aws_cdk.aws_bedrockagentcore.ApiGatewayTargetConfigurationProps(*, api_gateway_tool_configuration, rest_api, metadata_configuration=None, stage=None)

Bases: object

Properties for creating an API Gateway target configuration.

Parameters:
  • api_gateway_tool_configuration (Union[ApiGatewayToolConfiguration, Dict[str, Any]]) – Tool configuration defining which operations to expose.

  • rest_api (IRestApi) – The REST API to integrate with Must be in the same account and region as the gateway.

  • metadata_configuration (Union[MetadataConfiguration, Dict[str, Any], None]) – Metadata configuration for passing headers and query parameters Allows you to pass additional context through headers and query parameters. Default: - No metadata configuration

  • stage (Optional[str]) – The stage name of the REST API. Default: - Uses the deployment stage from the RestApi (restApi.deploymentStage.stageName)

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_apigateway as apigateway
from aws_cdk import aws_bedrockagentcore as bedrockagentcore

# api_gateway_http_method: bedrockagentcore.ApiGatewayHttpMethod
# rest_api: apigateway.RestApi

api_gateway_target_configuration_props = bedrockagentcore.ApiGatewayTargetConfigurationProps(
    api_gateway_tool_configuration=bedrockagentcore.ApiGatewayToolConfiguration(
        tool_filters=[bedrockagentcore.ApiGatewayToolFilter(
            filter_path="filterPath",
            methods=[api_gateway_http_method]
        )],

        # the properties below are optional
        tool_overrides=[bedrockagentcore.ApiGatewayToolOverride(
            method=api_gateway_http_method,
            name="name",
            path="path",

            # the properties below are optional
            description="description"
        )]
    ),
    rest_api=rest_api,

    # the properties below are optional
    metadata_configuration=bedrockagentcore.MetadataConfiguration(
        allowed_query_parameters=["allowedQueryParameters"],
        allowed_request_headers=["allowedRequestHeaders"],
        allowed_response_headers=["allowedResponseHeaders"]
    ),
    stage="stage"
)

Attributes

api_gateway_tool_configuration

Tool configuration defining which operations to expose.

metadata_configuration

Metadata configuration for passing headers and query parameters Allows you to pass additional context through headers and query parameters.

Default:
  • No metadata configuration

rest_api

The REST API to integrate with Must be in the same account and region as the gateway.

stage

The stage name of the REST API.

Default:
  • Uses the deployment stage from the RestApi (restApi.deploymentStage.stageName)