Show / Hide Table of Contents

Interface IHttpRouteIntegrationBindOptions

(experimental) Options to the HttpRouteIntegration during its bind operation.

Namespace: Amazon.CDK.AWS.APIGatewayv2
Assembly: Amazon.CDK.AWS.APIGatewayv2.dll
Syntax (csharp)
public interface IHttpRouteIntegrationBindOptions
Syntax (vb)
Public Interface IHttpRouteIntegrationBindOptions
Remarks

Stability: Experimental

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 Amazon.CDK;

Construct construct;
HttpRoute httpRoute;
var httpRouteIntegrationBindOptions = new HttpRouteIntegrationBindOptions {
    Route = httpRoute,
    Scope = construct
};

Synopsis

Properties

Route

(experimental) The route to which this is being bound.

Scope

(experimental) The current scope in which the bind is occurring.

Properties

Route

(experimental) The route to which this is being bound.

IHttpRoute Route { get; }
Property Value

IHttpRoute

Remarks

Stability: Experimental

Scope

(experimental) The current scope in which the bind is occurring.

Construct Scope { get; }
Property Value

Construct

Remarks

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

Stability: Experimental

Back to top Generated by DocFX