Class WebSocketIntegration

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.Resource
software.amazon.awscdk.services.apigatewayv2.WebSocketIntegration
All Implemented Interfaces:
IConstruct, IDependable, IResource, IIntegration, IWebSocketIntegration, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:43.347Z") @Stability(Experimental) public class WebSocketIntegration extends Resource implements IWebSocketIntegration
(experimental) The integration for an API route.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.apigatewayv2.*;
 WebSocketApi webSocketApi;
 WebSocketIntegration webSocketIntegration = WebSocketIntegration.Builder.create(this, "MyWebSocketIntegration")
         .integrationType(WebSocketIntegrationType.AWS_PROXY)
         .integrationUri("integrationUri")
         .webSocketApi(webSocketApi)
         .build();
 
  • Constructor Details

    • WebSocketIntegration

      protected WebSocketIntegration(software.amazon.jsii.JsiiObjectRef objRef)
    • WebSocketIntegration

      protected WebSocketIntegration(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • WebSocketIntegration

      @Stability(Experimental) public WebSocketIntegration(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull WebSocketIntegrationProps props)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.
  • Method Details