@aws-cdk_aws-apigatewayv2-alpha.WebSocketStageAttributes

interface WebSocketStageAttributes ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Apigatewayv2.Alpha.WebSocketStageAttributes
Gogithub.com/aws/aws-cdk-go/awscdkapigatewayv2alpha/v2#WebSocketStageAttributes
Javasoftware.amazon.awscdk.services.apigatewayv2.alpha.WebSocketStageAttributes
Pythonaws_cdk.aws_apigatewayv2_alpha.WebSocketStageAttributes
TypeScript (source)@aws-cdk/aws-apigatewayv2-alpha ยป WebSocketStageAttributes

The attributes used to import existing WebSocketStage.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as apigatewayv2_alpha from '@aws-cdk/aws-apigatewayv2-alpha';

declare const webSocketApi: apigatewayv2_alpha.WebSocketApi;
const webSocketStageAttributes: apigatewayv2_alpha.WebSocketStageAttributes = {
  api: webSocketApi,
  stageName: 'stageName',
};

Properties

NameTypeDescription
api๐Ÿ”นIWebSocketApiThe API to which this stage is associated.
stageName๐Ÿ”นstringThe name of the stage.

api๐Ÿ”น

Type: IWebSocketApi

The API to which this stage is associated.


stageName๐Ÿ”น

Type: string

The name of the stage.