Class CfnIntegrationV2

java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.818Z") @Stability(Deprecated) @Deprecated public class CfnIntegrationV2 extends CfnResource implements IInspectable
Deprecated.
moved to package aws-apigatewayv2
(deprecated) A CloudFormation AWS::ApiGatewayV2::Integration.

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.apigateway.*;
 Object requestParameters;
 Object requestTemplates;
 CfnIntegrationV2 cfnIntegrationV2 = CfnIntegrationV2.Builder.create(this, "MyCfnIntegrationV2")
         .apiId("apiId")
         .integrationType("integrationType")
         // the properties below are optional
         .connectionType("connectionType")
         .contentHandlingStrategy("contentHandlingStrategy")
         .credentialsArn("credentialsArn")
         .description("description")
         .integrationMethod("integrationMethod")
         .integrationUri("integrationUri")
         .passthroughBehavior("passthroughBehavior")
         .payloadFormatVersion("payloadFormatVersion")
         .requestParameters(requestParameters)
         .requestTemplates(requestTemplates)
         .templateSelectionExpression("templateSelectionExpression")
         .timeoutInMillis(123)
         .build();
 

See Also: