Interface IIntegrationProps
- Namespace
- Amazon.CDK.AWS.APIGateway
- Assembly
- Amazon.CDK.AWS.APIGateway.dll
public interface IIntegrationProps
Examples
using Amazon.CDK.AWS.ElasticLoadBalancingV2;
var vpc = new Vpc(this, "VPC");
var nlb = new NetworkLoadBalancer(this, "NLB", new NetworkLoadBalancerProps {
Vpc = vpc
});
var link = new VpcLink(this, "link", new VpcLinkProps {
Targets = new [] { nlb }
});
var integration = new Integration(new IntegrationProps {
Type = IntegrationType.HTTP_PROXY,
Options = new IntegrationOptions {
ConnectionType = ConnectionType.VPC_LINK,
VpcLink = link
}
});
Remarks
ExampleMetadata: infused
Properties
IntegrationHttpMethod
The integration's HTTP method type.
string? IntegrationHttpMethod { get; }
Property Value
Remarks
Required unless you use a MOCK integration.
Options
Integration options.
IIntegrationOptions? Options { get; }
Property Value
Type
Specifies an API method integration type.
IntegrationType Type { get; }
Property Value
Uri
The Uniform Resource Identifier (URI) for the integration.
object? Uri { get; }