Show / Hide Table of Contents

Class WebSocketRouteIntegrationBindOptions

Options to the WebSocketRouteIntegration during its bind operation.

Inheritance
object
WebSocketRouteIntegrationBindOptions
Implements
IWebSocketRouteIntegrationBindOptions
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Apigatewayv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class WebSocketRouteIntegrationBindOptions : IWebSocketRouteIntegrationBindOptions
Syntax (vb)
Public Class WebSocketRouteIntegrationBindOptions 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

WebSocketRouteIntegrationBindOptions()

Options to the WebSocketRouteIntegration during its bind operation.

Properties

Route

The route to which this is being bound.

Scope

The current scope in which the bind is occurring.

Constructors

WebSocketRouteIntegrationBindOptions()

Options to the WebSocketRouteIntegration during its bind operation.

public WebSocketRouteIntegrationBindOptions()
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
            };

Properties

Route

The route to which this is being bound.

public IWebSocketRoute Route { get; set; }
Property Value

IWebSocketRoute

Remarks

ExampleMetadata: fixture=_generated

Scope

The current scope in which the bind is occurring.

public Construct Scope { get; set; }
Property Value

Construct

Remarks

If the WebSocketRouteIntegration being bound creates additional constructs, this will be used as their parent scope.

Implements

IWebSocketRouteIntegrationBindOptions
Back to top Generated by DocFX