interface HttpServiceDiscoveryIntegrationProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.APIGatewayv2.Integrations.HttpServiceDiscoveryIntegrationProps | 
|  Java | software.amazon.awscdk.services.apigatewayv2.integrations.HttpServiceDiscoveryIntegrationProps | 
|  Python | aws_cdk.aws_apigatewayv2_integrations.HttpServiceDiscoveryIntegrationProps | 
|  TypeScript (source) | @aws-cdk/aws-apigatewayv2-integrations»HttpServiceDiscoveryIntegrationProps | 
Properties to initialize HttpServiceDiscoveryIntegration.
Example
import * as servicediscovery from '@aws-cdk/aws-servicediscovery';
import { HttpServiceDiscoveryIntegration } from '@aws-cdk/aws-apigatewayv2-integrations';
const vpc = new ec2.Vpc(this, 'VPC');
const vpcLink = new apigwv2.VpcLink(this, 'VpcLink', { vpc });
const namespace = new servicediscovery.PrivateDnsNamespace(this, 'Namespace', {
  name: 'boobar.com',
  vpc,
});
const service = namespace.createService('Service');
const httpEndpoint = new apigwv2.HttpApi(this, 'HttpProxyPrivateApi', {
  defaultIntegration: new HttpServiceDiscoveryIntegration('DefaultIntegration', service, {
    vpcLink,
  }),
});
Properties
| Name | Type | Description | 
|---|---|---|
| method? | Http | The HTTP method that must be used to invoke the underlying HTTP proxy. | 
| parameter | Parameter | Specifies how to transform HTTP requests before sending them to the backend. | 
| secure | string | Specifies the server name to verified by HTTPS when calling the backend integration. | 
| vpc | IVpc | The vpc link to be used for the private integration. | 
method?
Type:
Http
(optional, default: HttpMethod.ANY)
The HTTP method that must be used to invoke the underlying HTTP proxy.
parameterMapping?
Type:
Parameter
(optional, default: undefined requests are sent to the backend unmodified)
Specifies how to transform HTTP requests before sending them to the backend.
secureServerName?
Type:
string
(optional, default: undefined private integration traffic will use HTTP protocol)
Specifies the server name to verified by HTTPS when calling the backend integration.
vpcLink?
Type:
IVpc
(optional, default: a new VpcLink is created)
The vpc link to be used for the private integration.
