WebSocketRouteIntegrationConfig

class aws_cdk.aws_apigatewayv2.WebSocketRouteIntegrationConfig(*, type, uri)

Bases: object

(experimental) Config returned back as a result of the bind.

Parameters:
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_apigatewayv2 as apigatewayv2

web_socket_route_integration_config = apigatewayv2.WebSocketRouteIntegrationConfig(
    type=apigatewayv2.WebSocketIntegrationType.AWS_PROXY,
    uri="uri"
)

Attributes

type

(experimental) Integration type.

Stability:

experimental

uri

(experimental) Integration URI.

Stability:

experimental