Class WebSocketRouteIntegrationBindOptions
Options to the WebSocketRouteIntegration during its bind operation.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.Apigatewayv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class WebSocketRouteIntegrationBindOptions : Object, IWebSocketRouteIntegrationBindOptions
Syntax (vb)
Public Class WebSocketRouteIntegrationBindOptions
Inherits Object
Implements IWebSocketRouteIntegrationBindOptions
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Apigatewayv2;
using Constructs;
Construct construct;
WebSocketRoute webSocketRoute;
var webSocketRouteIntegrationBindOptions = new WebSocketRouteIntegrationBindOptions {
Route = webSocketRoute,
Scope = construct
};
Synopsis
Constructors
Web |
Properties
Route | The route to which this is being bound. |
Scope | The current scope in which the bind is occurring. |
Constructors
WebSocketRouteIntegrationBindOptions()
public WebSocketRouteIntegrationBindOptions()
Properties
Route
The route to which this is being bound.
public IWebSocketRoute Route { get; set; }
Property Value
Scope
The current scope in which the bind is occurring.
public Construct Scope { get; set; }
Property Value
Constructs.
Remarks
If the WebSocketRouteIntegration
being bound creates additional constructs,
this will be used as their parent scope.