WebSocketApi
caution
This is the SST v0.x Constructs doc. SST v1 is now released. If you are using v1, see the v1 Constructs doc. If you are looking to upgrade to v1, check out the migration steps.
The WebSocketApi construct is a higher level CDK construct that makes it easy to create a WebSocket API. It provides a simple way to define your routes and allows you to configure the specific Lambda functions if necessary. It also allows you to configure authorization and custom domains. See the examples for more details.
Initializer
new WebSocketApi(scope: Construct, id: string, props: WebSocketApiProps)
Parameters
- scope
Construct - id
string - props
WebSocketApiProps
Examples
The WebSocketApi construct is designed to make it easy to get started with, while allowing for a way to fully configure it as well. Let's look at how, through a couple of examples.
Using the minimal config
import { WebSocketApi } from "@serverless-stack/resources";
new WebSocketApi(this, "Api", {
routes: {
$connect: "src/connect.main",
$default: "src/default.main",
$disconnect: "src/disconnect.main",
sendMessage: "src/sendMessage.main",
},
});
Adding routes
Add routes after the API has been created.
const api = new WebSocketApi(this, "Api", {
routes: {
$connect: "src/connect.main",
$default: "src/default.main",
$disconnect: "src/disconnect.main",
},
});
api.addRoutes(this, {
sendMessage: "src/sendMessage.main",
});
Lazily adding routes
Create an empty Api construct and lazily add the routes.
const api = new WebSocketApi(this, "Api");
api.addRoutes(this, {
$connect: "src/connect.main",
$default: "src/default.main",
$disconnect: "src/disconnect.main",
sendMessage: "src/sendMessage.main",
});
Specifying function props for all the routes
You can extend the minimal config, to set some function props and have them apply to all the routes.
new WebSocketApi(this, "Api", {
defaultFunctionProps: {
timeout: 20,
permissions: [table],
environment: { tableName: table.tableName },
},
routes: {
$connect: "src/connect.main",
$default: "src/default.main",
$disconnect: "src/disconnect.main",
},
});
Using the full config
If you wanted to configure each Lambda function separately, you can pass in the FunctionDefinition.
new WebSocketApi(this, "Api", {
routes: {
$default: {
srcPath: "src/",
handler: "default.main",
permissions: [table],
environment: { tableName: table.tableName },
},
},
});
Note that, you can set the defaultFunctionProps while using the function per route. The function will just override the defaultFunctionProps. Except for the environment, the layers, and the permissions properties, that will be merged.
new WebSocketApi(this, "Api", {
defaultFunctionProps: {
timeout: 20,
permissions: [table],
environment: { tableName: table.tableName },
},
routes: {
$default: {
handler: "src/default.main",
timeout: 10,
permissions: [bucket],
environment: { bucketName: bucket.bucketName },
},
$connect: "src/connect.main",
},
});
So in the above example, the $default function doesn't use the timeout that is set in the defaultFunctionProps. It'll instead use the one that is defined in the function definition (10 seconds). And the function will have both the tableName and the bucketName environment variables set; as well as permissions to both the table and the bucket.
Configuring the WebSocket Api
Configure the internally created CDK WebSocketApi instance.
new WebSocketApi(this, "Api", {
webSocketApi: {
apiName: "chat-app-api",
},
routes: {
$default: "src/default.main",
},
});
Configuring access log
Configuring the log format
Use a CSV format instead of default JSON format.
new WebSocketApi(this, "Api", {
accessLog:
"$context.identity.sourceIp,$context.requestTime,$context.httpMethod,$context.routeKey,$context.protocol,$context.status,$context.responseLength,$context.requestId",
routes: {
$default: "src/default.main",
},
});
Configuring the log retention setting
new WebSocketApi(this, "Api", {
accessLog: {
retention: "ONE_WEEK",
},
routes: {
"GET /notes": "src/list.main",
},
});
Configuring custom domains
You can also configure the API with a custom domain. SST currently supports domains that are configured using Route 53. If your domains are hosted elsewhere, you can follow this guide to migrate them to Route 53.
Using the basic config
new WebSocketApi(this, "Api", {
customDomain: "api.domain.com",
routes: {
$default: "src/default.main",
},
});
Configuring with a wildcard
new WebSocketApi(this, "Api", {
customDomain: "*.domain.com",
routes: {
$default: "src/default.main",
},
});
Using the full config
new WebSocketApi(this, "Api", {
customDomain: {
domainName: "api.domain.com",
hostedZone: "domain.com",
path: "v1",
},
routes: {
$default: "src/default.main",
},
});
Mapping multiple APIs to the same domain
const api = new HttpApi(this, "HttpApi", {
customDomain: {
domainName: "api.domain.com",
path: "core",
},
});
new WebSocketApi(this, "WebSocketApi", {
customDomain: {
domainName: api.apiGatewayDomain,
path: "chat",
},
});
Importing an existing API Gateway custom domain
import { DomainName } from "@aws-cdk/aws-apigatewayv2-alpha";
new WebSocketApi(this, "Api", {
customDomain: {
domainName: DomainName.fromDomainNameAttributes(this, "MyDomain", {
name,
regionalDomainName,
regionalHostedZoneId,
}),
path: "newPath",
},
routes: {
$default: "src/default.main",
},
});
Importing an existing certificate
import { Certificate } from "aws-cdk-lib/aws-certificatemanager";
new WebSocketApi(this, "Api", {
customDomain: {
domainName: "api.domain.com",
certificate: Certificate.fromCertificateArn(this, "MyCert", certArn),
},
routes: {
$default: "src/default.main",
},
});
Using externally hosted domain
import { Certificate } from "aws-cdk-lib/aws-certificatemanager";
new WebSocketApi(this, "Api", {
customDomain: {
isExternalDomain: true,
domainName: "api.domain.com",
certificate: Certificate.fromCertificateArn(this, "MyCert", certArn),
},
routes: {
$default: "src/default.main",
},
});
Note that you can also migrate externally hosted domains to Route 53 by following this guide.
Attaching permissions
You can attach a set of permissions to all or some of the routes.
note
By default all routes are granted the execute-api:ManageConnections permission to manage the WebSocket connections.
For example, the route handler functions have the permissions make the ApiGatewayManagementApi.postToConnection call using the AWS SDK.
For the entire API
Allow the entire API to access S3.
const api = new WebSocketApi(this, "Api", {
routes: {
$connect: "src/connect.main",
$default: "src/default.main",
$disconnect: "src/disconnect.main",
sendMessage: "src/sendMessage.main",
},
});
api.attachPermissions(["s3"]);
For a specific route
Allow one of the routes to access S3.
const api = new WebSocketApi(this, "Api", {
routes: {
$connect: "src/connect.main",
$default: "src/default.main",
$disconnect: "src/disconnect.main",
sendMessage: "src/sendMessage.main",
},
});
api.attachPermissionsToRoute("$default", ["s3"]);
Adding auth
You can use IAM, or a Lambda authorizer to add auth to your APIs.
Adding IAM authorization
You can secure your APIs (and other AWS resources) by setting the authorizationType to IAM and using the Auth construct.
new WebSocketApi(this, "Api", {
authorizationType: WebSocketApiAuthorizationType.IAM,
routes: {
$connect: "src/connect.main",
$default: "src/default.main",
$disconnect: "src/disconnect.main",
},
});
Adding Lambda authorization
You can also use a Lambda function to authorize users to access your API.
import { WebSocketLambdaAuthorizer } from "@aws-cdk/aws-apigatewayv2-authorizers-alpha";
import { Function, WebSocketApi } from "@serverless-stack/resources";
const authorizer = new sst.Function(this, "AuthorizerFn", {
handler: "src/authorizer.main",
});
new WebSocketApi(this, "Api", {
authorizationType: WebSocketApiAuthorizationType.CUSTOM,
authorizer: new WebSocketLambdaAuthorizer("Authorizer", authorizer, {
authorizerName: "LambdaAuthorizer",
}),
routes: {
$connect: "src/connect.main",
$default: "src/default.main",
$disconnect: "src/disconnect.main",
},
});
Getting the function for a route
const api = new WebSocketApi(this, "Api", {
routes: {
$connect: "src/connect.main",
$default: "src/default.main",
$disconnect: "src/disconnect.main",
sendMessage: "src/sendMessage.main",
},
});
const function = api.getFunction("sendMessage");
Properties
An instance of WebSocketApi contains the following properties.
url
Type: string
The URL of the WebSocket Api.
routes
Type: string[]
The routes for the WebSocket Api.
webSocketApi
Type: cdk.aws-apigatewayv2-alpha.WebSocketApi
The internally created CDK WebSocketApi instance.
webSocketStage
Type: cdk.aws-apigatewayv2-alpha.WebSocketStage
The internally created CDK WebSocketStage instance.
accessLogGroup?
Type: cdk.aws-logs.LogGroup
If access logs are enabled, this is the internally created CDK LogGroup instance.
customDomainUrl?
Type: string
If custom domain is enabled, this is the custom domain URL of the WebSocket Api.
apiGatewayDomain?
Type: cdk.aws-apigatewayv2-alpha.DomainName
If custom domain is enabled, this is the internally created CDK DomainName instance.
acmCertificate?
Type: cdk.aws-certificatemanager.Certificate
If custom domain is enabled, this is the internally created CDK Certificate instance.
Methods
An instance of WebSocketApi contains the following methods.
getFunction
getFunction(routeKey: string): Function
Parameters
- routeKey
string
Returns
Get the instance of the internally created Function, for a given route key. Where the routeKey is the key used to define a route. For example, $connect.
addRoutes
addRoutes(scope: cdk.Construct, routes: { [key: string]: FunctionDefinition })
Parameters
- scope
cdk.Construct - routes
{ [key: string]: FunctionDefinition }
An associative array with the key being the route as a string and the value is the FunctionDefinition.
attachPermissions
attachPermissions(permissions: Permissions)
Parameters
- permissions
Permissions
note
By default all routes are granted the execute-api:ManageConnections permission to manage the WebSocket connections.
Attaches the given list of permissions to all the routes. This allows the functions to access other AWS resources.
Internally calls Function.attachPermissions.
attachPermissionsToRoute
attachPermissionsToRoute(routeKey: string, permissions: Permissions)
Parameters
routeKey
stringpermissions
Permissions
note
By default all routes are granted the execute-api:ManageConnections permission to manage the WebSocket connections.
Attaches the given list of permissions to a specific route. This allows that function to access other AWS resources.
Internally calls Function.attachPermissions.
WebSocketApiProps
routes?
Type : { [key: string]: FunctionDefinition }, defaults to {}
The routes for this API. Takes an associative array, with the key being the route as a string and the value is a FunctionDefinition.
{
$connect : "src/connect.main",
$default : "src/default.main",
$disconnect : "src/disconnect.main",
sendMessage : "src/sendMessage.main",
}
And here is an example with the full definition.
{
$connect: {
handler: "src/connect.main",
environment: {
TABLE_NAME: "notesTable",
},
},
}
accessLog?
Type : boolean | string | WebSocketApiAcccessLogProps, defaults to true
CloudWatch access logs for the API. Takes a boolean value, a string with log format, or a WebSocketApiAcccessLogProps.
customDomain?
Type : string | WebSocketApiCustomDomainProps
The customDomain for this API. SST currently supports domains that are configured using Route 53. If your domains are hosted elsewhere, you can follow this guide to migrate them to Route 53.
Takes either the domain as a string.
"api.domain.com"
Or the WebSocketApiCustomDomainProps.
{
domainName: "api.domain.com",
hostedZone: "domain.com",
path: "v1",
}
webSocketApi?
Type : cdk.aws-apigatewayv2-alpha.WebSocketApiProps | cdk.aws-apigatewayv2-alpha.IWebSocketApi
Pass in a cdk.aws-apigatewayv2-alpha.WebSocketApiProps value to override the default settings this construct uses to create the CDK WebSocketApi internally.
Or, pass in an instance of the CDK cdk.aws-apigatewayv2-alpha.IWebSocketApi. SST will use the provided CDK IWebSocketApi instead of creating one internally.
webSocketStage?
Type : WebSocketApiCdkStageProps | cdk.aws-apigatewayv2-alpha.IWebSocketStage
Pass in a WebSocketApiCdkStageProps value to override the default settings this construct uses to create the CDK WebSocketStage internally.
Or, pass in an instance of the CDK cdk.aws-apigatewayv2-alpha.IWebSocketStage. SST will use the provided CDK IWebSocketStage instead of creating one internally.
authorizationType?
Type : WebSocketApiAuthorizationType, defaults to WebSocketApiAuthorizationType.NONE
The authorization type for the $connect route of the API. Set using WebSocketApiAuthorizationType. Supports AWS IAM and a custom Lambda authorizer. Defaults to no authorization, WebSocketApiAuthorizationType.NONE.
While both IAM and Lambda authorizers all allows you to secure your APIs. The IAM method together with the Auth construct uses the Cognito Identity Pool. This allows you to secure other AWS resources as well.
On the other hand, the Lambda authorizers are for securing APIs specifically.
authorizer?
Type : cdk.aws-apigatewayv2-authorizers-alpha.WebSocketLambdaAuthorizer
The authorizer for the $connect route of the API.
defaultFunctionProps?
Type : FunctionProps, defaults to {}
The default function props to be applied to all the Lambda functions in the API. If the function is specified for a route, these default values are overridden. Except for the environment, the layers, and the permissions properties, that will be merged.
WebSocketApiAccessLogProps
Takes the following props in addition to the cdk.aws-apigatewayv2.CfnStage.AccessLogSettingsProperty.
retention?
Type : string | cdk.aws_logs.RetentionDays, defaults to INFINITE
The following values are accepted: "ONE_DAY", "THREE_DAYS", "FIVE_DAYS", "ONE_WEEK", "TWO_WEEKS", "ONE_MONTH", "TWO_MONTHS", "THREE_MONTHS", "FOUR_MONTHS", "FIVE_MONTHS", "SIX_MONTHS", "ONE_YEAR", "THIRTEEN_MONTHS", "EIGHTEEN_MONTHS", "TWO_YEARS", "FIVE_YEARS", "TEN_YEARS", and "INFINITE".
Or, pass in an enum value of the CDK cdk.aws_logs.RetentionDays.
WebSocketApiCustomDomainProps
domainName
Type : string | cdk.aws-apigatewayv2-alpha.DomainName
The domain to be assigned to the API endpoint. Takes the custom domain as a string (ie. api.domain.com) or a cdk.aws-apigatewayv2-alpha.DomainName.
Currently supports domains that are configured using Route 53.
hostedZone?
Type : string | cdk.aws-route53.HostedZone, defaults to the base domain
The hosted zone in Route 53 that contains the domain. Takes the name of the hosted zone as a string or the hosted zone construct cdk.aws-route53.HostedZone. By default, SST will look for a hosted zone by stripping out the first part of the domainName that's passed in. So, if your domainName is api.domain.com. SST will default the hostedZone to domain.com.
Set this option if SST cannot find the hosted zone in Route 53.
certificate?
Type : cdk.aws-certificatemanager.Certificate, defaults to undefined
The certificate for the domain. By default, SST will create a certificate with the domain name from the domainName option.
Set this option if you have an existing certificate in AWS Certificate Manager you want to use.
path?
Type : string, defaults to undefined
The base mapping for the custom domain. For example, by setting the domainName to api.domain.com and path to v1, the custom domain URL for the WebSocket API will become wss://api.domain.com/v1. If the path is not set, the custom domain URL will be wss://api.domain.com.
caution
You cannot change the path once it has been set.
Note, if the path was not defined initially, it cannot be defined later. If the path was initially defined, it cannot be later changed to undefined. Instead, you'd need to remove the customDomain option from the construct, deploy it. And then set it to the new path value.
WebSocketApiCdkStageProps
WebSocketApiCdkStageProps extends cdk.aws-apigatewayv2-alpha.WebSocketStageProps with the exception that the webSocketApi field is not accepted and the stageName field is optional. The stageName defaults to the stage of the app.
You can use WebSocketApiCdkStageProps to configure the other stage properties.
WebSocketApiAuthorizationType
An enum with the following members representing the authorization types.
| Member | Description |
|---|---|
| CUSTOM | Using a custom Lambda function as an authorizer. |
| IAM | Used along with the Auth construct to add Cognito Identity Pool and IAM authorization. |
| NONE | No authorization type is set. |
For example, to use IAM, set WebSocketApiAuthorizationType.IAM.