Interface WebSocketLambdaAuthorizerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
WebSocketLambdaAuthorizerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:13.939Z")
@Stability(Stable)
public interface WebSocketLambdaAuthorizerProps
extends software.amazon.jsii.JsiiSerializable
Properties to initialize WebSocketTokenAuthorizer.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.aws_apigatewayv2_authorizers.*;
WebSocketLambdaAuthorizerProps webSocketLambdaAuthorizerProps = WebSocketLambdaAuthorizerProps.builder()
.authorizerName("authorizerName")
.identitySource(List.of("identitySource"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forWebSocketLambdaAuthorizerPropsstatic final classAn implementation forWebSocketLambdaAuthorizerProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthorizerName
The name of the authorizer.Default: - same value as `id` passed in the constructor.
-
getIdentitySource
The identity source for which authorization is requested.Request parameter match
'route.request.querystring|header.[a-zA-z0-9._-]+'. Staged variable match'stageVariables.[a-zA-Z0-9._-]+'. Context parameter match'context.[a-zA-Z0-9._-]+'.Default: ['route.request.header.Authorization']
-
builder
-