1. Packages
  2. AWS Classic
  3. API Docs
  4. apigateway
  5. Integration

Try AWS Native preview for resources not in the classic version.

AWS Classic v5.41.0 published on Monday, May 15, 2023 by Pulumi

aws.apigateway.Integration

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v5.41.0 published on Monday, May 15, 2023 by Pulumi

    Provides an HTTP Method Integration for an API Gateway Integration.

    Lambda integration

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const config = new pulumi.Config();
    const myregion = config.requireObject("myregion");
    const accountId = config.requireObject("accountId");
    // API Gateway
    const api = new aws.apigateway.RestApi("api", {});
    const resource = new aws.apigateway.Resource("resource", {
        pathPart: "resource",
        parentId: api.rootResourceId,
        restApi: api.id,
    });
    const method = new aws.apigateway.Method("method", {
        restApi: api.id,
        resourceId: resource.id,
        httpMethod: "GET",
        authorization: "NONE",
    });
    const assumeRole = aws.iam.getPolicyDocument({
        statements: [{
            effect: "Allow",
            principals: [{
                type: "Service",
                identifiers: ["lambda.amazonaws.com"],
            }],
            actions: ["sts:AssumeRole"],
        }],
    });
    const role = new aws.iam.Role("role", {assumeRolePolicy: assumeRole.then(assumeRole => assumeRole.json)});
    const lambda = new aws.lambda.Function("lambda", {
        code: new pulumi.asset.FileArchive("lambda.zip"),
        role: role.arn,
        handler: "lambda.lambda_handler",
        runtime: "python3.7",
    });
    const integration = new aws.apigateway.Integration("integration", {
        restApi: api.id,
        resourceId: resource.id,
        httpMethod: method.httpMethod,
        integrationHttpMethod: "POST",
        type: "AWS_PROXY",
        uri: lambda.invokeArn,
    });
    // Lambda
    const apigwLambda = new aws.lambda.Permission("apigwLambda", {
        action: "lambda:InvokeFunction",
        "function": lambda.name,
        principal: "apigateway.amazonaws.com",
        sourceArn: pulumi.interpolate`arn:aws:execute-api:${myregion}:${accountId}:${api.id}/*/${method.httpMethod}${resource.path}`,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    config = pulumi.Config()
    myregion = config.require_object("myregion")
    account_id = config.require_object("accountId")
    # API Gateway
    api = aws.apigateway.RestApi("api")
    resource = aws.apigateway.Resource("resource",
        path_part="resource",
        parent_id=api.root_resource_id,
        rest_api=api.id)
    method = aws.apigateway.Method("method",
        rest_api=api.id,
        resource_id=resource.id,
        http_method="GET",
        authorization="NONE")
    assume_role = aws.iam.get_policy_document(statements=[aws.iam.GetPolicyDocumentStatementArgs(
        effect="Allow",
        principals=[aws.iam.GetPolicyDocumentStatementPrincipalArgs(
            type="Service",
            identifiers=["lambda.amazonaws.com"],
        )],
        actions=["sts:AssumeRole"],
    )])
    role = aws.iam.Role("role", assume_role_policy=assume_role.json)
    lambda_ = aws.lambda_.Function("lambda",
        code=pulumi.FileArchive("lambda.zip"),
        role=role.arn,
        handler="lambda.lambda_handler",
        runtime="python3.7")
    integration = aws.apigateway.Integration("integration",
        rest_api=api.id,
        resource_id=resource.id,
        http_method=method.http_method,
        integration_http_method="POST",
        type="AWS_PROXY",
        uri=lambda_.invoke_arn)
    # Lambda
    apigw_lambda = aws.lambda_.Permission("apigwLambda",
        action="lambda:InvokeFunction",
        function=lambda_.name,
        principal="apigateway.amazonaws.com",
        source_arn=pulumi.Output.all(api.id, method.http_method, resource.path).apply(lambda id, http_method, path: f"arn:aws:execute-api:{myregion}:{account_id}:{id}/*/{http_method}{path}"))
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var myregion = config.RequireObject<dynamic>("myregion");
        var accountId = config.RequireObject<dynamic>("accountId");
        // API Gateway
        var api = new Aws.ApiGateway.RestApi("api");
    
        var resource = new Aws.ApiGateway.Resource("resource", new()
        {
            PathPart = "resource",
            ParentId = api.RootResourceId,
            RestApi = api.Id,
        });
    
        var method = new Aws.ApiGateway.Method("method", new()
        {
            RestApi = api.Id,
            ResourceId = resource.Id,
            HttpMethod = "GET",
            Authorization = "NONE",
        });
    
        var assumeRole = Aws.Iam.GetPolicyDocument.Invoke(new()
        {
            Statements = new[]
            {
                new Aws.Iam.Inputs.GetPolicyDocumentStatementInputArgs
                {
                    Effect = "Allow",
                    Principals = new[]
                    {
                        new Aws.Iam.Inputs.GetPolicyDocumentStatementPrincipalInputArgs
                        {
                            Type = "Service",
                            Identifiers = new[]
                            {
                                "lambda.amazonaws.com",
                            },
                        },
                    },
                    Actions = new[]
                    {
                        "sts:AssumeRole",
                    },
                },
            },
        });
    
        var role = new Aws.Iam.Role("role", new()
        {
            AssumeRolePolicy = assumeRole.Apply(getPolicyDocumentResult => getPolicyDocumentResult.Json),
        });
    
        var lambda = new Aws.Lambda.Function("lambda", new()
        {
            Code = new FileArchive("lambda.zip"),
            Role = role.Arn,
            Handler = "lambda.lambda_handler",
            Runtime = "python3.7",
        });
    
        var integration = new Aws.ApiGateway.Integration("integration", new()
        {
            RestApi = api.Id,
            ResourceId = resource.Id,
            HttpMethod = method.HttpMethod,
            IntegrationHttpMethod = "POST",
            Type = "AWS_PROXY",
            Uri = lambda.InvokeArn,
        });
    
        // Lambda
        var apigwLambda = new Aws.Lambda.Permission("apigwLambda", new()
        {
            Action = "lambda:InvokeFunction",
            Function = lambda.Name,
            Principal = "apigateway.amazonaws.com",
            SourceArn = Output.Tuple(api.Id, method.HttpMethod, resource.Path).Apply(values =>
            {
                var id = values.Item1;
                var httpMethod = values.Item2;
                var path = values.Item3;
                return $"arn:aws:execute-api:{myregion}:{accountId}:{id}/*/{httpMethod}{path}";
            }),
        });
    
    });
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/apigateway"
    	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/iam"
    	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/lambda"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		myregion := cfg.RequireObject("myregion")
    		accountId := cfg.RequireObject("accountId")
    		api, err := apigateway.NewRestApi(ctx, "api", nil)
    		if err != nil {
    			return err
    		}
    		resource, err := apigateway.NewResource(ctx, "resource", &apigateway.ResourceArgs{
    			PathPart: pulumi.String("resource"),
    			ParentId: api.RootResourceId,
    			RestApi:  api.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		method, err := apigateway.NewMethod(ctx, "method", &apigateway.MethodArgs{
    			RestApi:       api.ID(),
    			ResourceId:    resource.ID(),
    			HttpMethod:    pulumi.String("GET"),
    			Authorization: pulumi.String("NONE"),
    		})
    		if err != nil {
    			return err
    		}
    		assumeRole, err := iam.GetPolicyDocument(ctx, &iam.GetPolicyDocumentArgs{
    			Statements: []iam.GetPolicyDocumentStatement{
    				{
    					Effect: pulumi.StringRef("Allow"),
    					Principals: []iam.GetPolicyDocumentStatementPrincipal{
    						{
    							Type: "Service",
    							Identifiers: []string{
    								"lambda.amazonaws.com",
    							},
    						},
    					},
    					Actions: []string{
    						"sts:AssumeRole",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		role, err := iam.NewRole(ctx, "role", &iam.RoleArgs{
    			AssumeRolePolicy: *pulumi.String(assumeRole.Json),
    		})
    		if err != nil {
    			return err
    		}
    		lambda, err := lambda.NewFunction(ctx, "lambda", &lambda.FunctionArgs{
    			Code:    pulumi.NewFileArchive("lambda.zip"),
    			Role:    role.Arn,
    			Handler: pulumi.String("lambda.lambda_handler"),
    			Runtime: pulumi.String("python3.7"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = apigateway.NewIntegration(ctx, "integration", &apigateway.IntegrationArgs{
    			RestApi:               api.ID(),
    			ResourceId:            resource.ID(),
    			HttpMethod:            method.HttpMethod,
    			IntegrationHttpMethod: pulumi.String("POST"),
    			Type:                  pulumi.String("AWS_PROXY"),
    			Uri:                   lambda.InvokeArn,
    		})
    		if err != nil {
    			return err
    		}
    		_, err = lambda.NewPermission(ctx, "apigwLambda", &lambda.PermissionArgs{
    			Action:    pulumi.String("lambda:InvokeFunction"),
    			Function:  lambda.Name,
    			Principal: pulumi.String("apigateway.amazonaws.com"),
    			SourceArn: pulumi.All(api.ID(), method.HttpMethod, resource.Path).ApplyT(func(_args []interface{}) (string, error) {
    				id := _args[0].(string)
    				httpMethod := _args[1].(string)
    				path := _args[2].(string)
    				return fmt.Sprintf("arn:aws:execute-api:%v:%v:%v/*/%v%v", myregion, accountId, id, httpMethod, path), nil
    			}).(pulumi.StringOutput),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.apigateway.RestApi;
    import com.pulumi.aws.apigateway.Resource;
    import com.pulumi.aws.apigateway.ResourceArgs;
    import com.pulumi.aws.apigateway.Method;
    import com.pulumi.aws.apigateway.MethodArgs;
    import com.pulumi.aws.iam.IamFunctions;
    import com.pulumi.aws.iam.inputs.GetPolicyDocumentArgs;
    import com.pulumi.aws.iam.Role;
    import com.pulumi.aws.iam.RoleArgs;
    import com.pulumi.aws.lambda.Function;
    import com.pulumi.aws.lambda.FunctionArgs;
    import com.pulumi.aws.apigateway.Integration;
    import com.pulumi.aws.apigateway.IntegrationArgs;
    import com.pulumi.aws.lambda.Permission;
    import com.pulumi.aws.lambda.PermissionArgs;
    import com.pulumi.asset.FileArchive;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var config = ctx.config();
            final var myregion = config.get("myregion");
            final var accountId = config.get("accountId");
            var api = new RestApi("api");
    
            var resource = new Resource("resource", ResourceArgs.builder()        
                .pathPart("resource")
                .parentId(api.rootResourceId())
                .restApi(api.id())
                .build());
    
            var method = new Method("method", MethodArgs.builder()        
                .restApi(api.id())
                .resourceId(resource.id())
                .httpMethod("GET")
                .authorization("NONE")
                .build());
    
            final var assumeRole = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
                .statements(GetPolicyDocumentStatementArgs.builder()
                    .effect("Allow")
                    .principals(GetPolicyDocumentStatementPrincipalArgs.builder()
                        .type("Service")
                        .identifiers("lambda.amazonaws.com")
                        .build())
                    .actions("sts:AssumeRole")
                    .build())
                .build());
    
            var role = new Role("role", RoleArgs.builder()        
                .assumeRolePolicy(assumeRole.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult.json()))
                .build());
    
            var lambda = new Function("lambda", FunctionArgs.builder()        
                .code(new FileArchive("lambda.zip"))
                .role(role.arn())
                .handler("lambda.lambda_handler")
                .runtime("python3.7")
                .build());
    
            var integration = new Integration("integration", IntegrationArgs.builder()        
                .restApi(api.id())
                .resourceId(resource.id())
                .httpMethod(method.httpMethod())
                .integrationHttpMethod("POST")
                .type("AWS_PROXY")
                .uri(lambda.invokeArn())
                .build());
    
            var apigwLambda = new Permission("apigwLambda", PermissionArgs.builder()        
                .action("lambda:InvokeFunction")
                .function(lambda.name())
                .principal("apigateway.amazonaws.com")
                .sourceArn(Output.tuple(api.id(), method.httpMethod(), resource.path()).applyValue(values -> {
                    var id = values.t1;
                    var httpMethod = values.t2;
                    var path = values.t3;
                    return String.format("arn:aws:execute-api:%s:%s:%s/*/%s%s", myregion,accountId,id,httpMethod,path);
                }))
                .build());
    
        }
    }
    
    configuration:
      # Variables
      myregion:
        type: dynamic
      accountId:
        type: dynamic
    resources:
      # API Gateway
      api:
        type: aws:apigateway:RestApi
      resource:
        type: aws:apigateway:Resource
        properties:
          pathPart: resource
          parentId: ${api.rootResourceId}
          restApi: ${api.id}
      method:
        type: aws:apigateway:Method
        properties:
          restApi: ${api.id}
          resourceId: ${resource.id}
          httpMethod: GET
          authorization: NONE
      integration:
        type: aws:apigateway:Integration
        properties:
          restApi: ${api.id}
          resourceId: ${resource.id}
          httpMethod: ${method.httpMethod}
          integrationHttpMethod: POST
          type: AWS_PROXY
          uri: ${lambda.invokeArn}
      # Lambda
      apigwLambda:
        type: aws:lambda:Permission
        properties:
          action: lambda:InvokeFunction
          function: ${lambda.name}
          principal: apigateway.amazonaws.com
          # More: http://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-control-access-using-iam-policies-to-invoke-api.html
          sourceArn: arn:aws:execute-api:${myregion}:${accountId}:${api.id}/*/${method.httpMethod}${resource.path}
      lambda:
        type: aws:lambda:Function
        properties:
          code:
            fn::FileArchive: lambda.zip
          role: ${role.arn}
          handler: lambda.lambda_handler
          runtime: python3.7
      role:
        type: aws:iam:Role
        properties:
          assumeRolePolicy: ${assumeRole.json}
    variables:
      assumeRole:
        fn::invoke:
          Function: aws:iam:getPolicyDocument
          Arguments:
            statements:
              - effect: Allow
                principals:
                  - type: Service
                    identifiers:
                      - lambda.amazonaws.com
                actions:
                  - sts:AssumeRole
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.lb.LoadBalancer;
    import com.pulumi.aws.lb.LoadBalancerArgs;
    import com.pulumi.aws.apigateway.VpcLink;
    import com.pulumi.aws.apigateway.VpcLinkArgs;
    import com.pulumi.aws.apigateway.RestApi;
    import com.pulumi.aws.apigateway.Resource;
    import com.pulumi.aws.apigateway.ResourceArgs;
    import com.pulumi.aws.apigateway.Method;
    import com.pulumi.aws.apigateway.MethodArgs;
    import com.pulumi.aws.apigateway.Integration;
    import com.pulumi.aws.apigateway.IntegrationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var config = ctx.config();
            final var name = config.get("name");
            final var subnetId = config.get("subnetId");
            var testLoadBalancer = new LoadBalancer("testLoadBalancer", LoadBalancerArgs.builder()        
                .internal(true)
                .loadBalancerType("network")
                .subnets(subnetId)
                .build());
    
            var testVpcLink = new VpcLink("testVpcLink", VpcLinkArgs.builder()        
                .targetArn(testLoadBalancer.arn())
                .build());
    
            var testRestApi = new RestApi("testRestApi");
    
            var testResource = new Resource("testResource", ResourceArgs.builder()        
                .restApi(testRestApi.id())
                .parentId(testRestApi.rootResourceId())
                .pathPart("test")
                .build());
    
            var testMethod = new Method("testMethod", MethodArgs.builder()        
                .restApi(testRestApi.id())
                .resourceId(testResource.id())
                .httpMethod("GET")
                .authorization("NONE")
                .requestModels(Map.of("application/json", "Error"))
                .build());
    
            var testIntegration = new Integration("testIntegration", IntegrationArgs.builder()        
                .restApi(testRestApi.id())
                .resourceId(testResource.id())
                .httpMethod(testMethod.httpMethod())
                .requestTemplates(Map.ofEntries(
                    Map.entry("application/json", ""),
                    Map.entry("application/xml", """
    #set($inputRoot = $input.path('$'))
    { }                """)
                ))
                .requestParameters(Map.ofEntries(
                    Map.entry("integration.request.header.X-Authorization", "'static'"),
                    Map.entry("integration.request.header.X-Foo", "'Bar'")
                ))
                .type("HTTP")
                .uri("https://www.google.de")
                .integrationHttpMethod("GET")
                .passthroughBehavior("WHEN_NO_MATCH")
                .contentHandling("CONVERT_TO_TEXT")
                .connectionType("VPC_LINK")
                .connectionId(testVpcLink.id())
                .build());
    
        }
    }
    
    configuration:
      name:
        type: dynamic
      subnetId:
        type: dynamic
    resources:
      testLoadBalancer:
        type: aws:lb:LoadBalancer
        properties:
          internal: true
          loadBalancerType: network
          subnets:
            - ${subnetId}
      testVpcLink:
        type: aws:apigateway:VpcLink
        properties:
          targetArn:
            - ${testLoadBalancer.arn}
      testRestApi:
        type: aws:apigateway:RestApi
      testResource:
        type: aws:apigateway:Resource
        properties:
          restApi: ${testRestApi.id}
          parentId: ${testRestApi.rootResourceId}
          pathPart: test
      testMethod:
        type: aws:apigateway:Method
        properties:
          restApi: ${testRestApi.id}
          resourceId: ${testResource.id}
          httpMethod: GET
          authorization: NONE
          requestModels:
            application/json: Error
      testIntegration:
        type: aws:apigateway:Integration
        properties:
          restApi: ${testRestApi.id}
          resourceId: ${testResource.id}
          httpMethod: ${testMethod.httpMethod}
          requestTemplates:
            application/json:
            application/xml: |-
              #set($inputRoot = $input.path('$'))
              { }          
          requestParameters:
            integration.request.header.X-Authorization: '''static'''
            integration.request.header.X-Foo: '''Bar'''
          type: HTTP
          uri: https://www.google.de
          integrationHttpMethod: GET
          passthroughBehavior: WHEN_NO_MATCH
          contentHandling: CONVERT_TO_TEXT
          connectionType: VPC_LINK
          connectionId: ${testVpcLink.id}
    

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var myDemoAPI = new Aws.ApiGateway.RestApi("myDemoAPI", new()
        {
            Description = "This is my API for demonstration purposes",
        });
    
        var myDemoResource = new Aws.ApiGateway.Resource("myDemoResource", new()
        {
            RestApi = myDemoAPI.Id,
            ParentId = myDemoAPI.RootResourceId,
            PathPart = "mydemoresource",
        });
    
        var myDemoMethod = new Aws.ApiGateway.Method("myDemoMethod", new()
        {
            RestApi = myDemoAPI.Id,
            ResourceId = myDemoResource.Id,
            HttpMethod = "GET",
            Authorization = "NONE",
        });
    
        var myDemoIntegration = new Aws.ApiGateway.Integration("myDemoIntegration", new()
        {
            RestApi = myDemoAPI.Id,
            ResourceId = myDemoResource.Id,
            HttpMethod = myDemoMethod.HttpMethod,
            Type = "MOCK",
            CacheKeyParameters = new[]
            {
                "method.request.path.param",
            },
            CacheNamespace = "foobar",
            TimeoutMilliseconds = 29000,
            RequestParameters = 
            {
                { "integration.request.header.X-Authorization", "'static'" },
            },
            RequestTemplates = 
            {
                { "application/xml", @"{
       ""body"" : $input.json('$')
    }
    " },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/apigateway"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		myDemoAPI, err := apigateway.NewRestApi(ctx, "myDemoAPI", &apigateway.RestApiArgs{
    			Description: pulumi.String("This is my API for demonstration purposes"),
    		})
    		if err != nil {
    			return err
    		}
    		myDemoResource, err := apigateway.NewResource(ctx, "myDemoResource", &apigateway.ResourceArgs{
    			RestApi:  myDemoAPI.ID(),
    			ParentId: myDemoAPI.RootResourceId,
    			PathPart: pulumi.String("mydemoresource"),
    		})
    		if err != nil {
    			return err
    		}
    		myDemoMethod, err := apigateway.NewMethod(ctx, "myDemoMethod", &apigateway.MethodArgs{
    			RestApi:       myDemoAPI.ID(),
    			ResourceId:    myDemoResource.ID(),
    			HttpMethod:    pulumi.String("GET"),
    			Authorization: pulumi.String("NONE"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = apigateway.NewIntegration(ctx, "myDemoIntegration", &apigateway.IntegrationArgs{
    			RestApi:    myDemoAPI.ID(),
    			ResourceId: myDemoResource.ID(),
    			HttpMethod: myDemoMethod.HttpMethod,
    			Type:       pulumi.String("MOCK"),
    			CacheKeyParameters: pulumi.StringArray{
    				pulumi.String("method.request.path.param"),
    			},
    			CacheNamespace:      pulumi.String("foobar"),
    			TimeoutMilliseconds: pulumi.Int(29000),
    			RequestParameters: pulumi.StringMap{
    				"integration.request.header.X-Authorization": pulumi.String("'static'"),
    			},
    			RequestTemplates: pulumi.StringMap{
    				"application/xml": pulumi.String("{\n   \"body\" : $input.json('$')\n}\n"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.apigateway.RestApi;
    import com.pulumi.aws.apigateway.RestApiArgs;
    import com.pulumi.aws.apigateway.Resource;
    import com.pulumi.aws.apigateway.ResourceArgs;
    import com.pulumi.aws.apigateway.Method;
    import com.pulumi.aws.apigateway.MethodArgs;
    import com.pulumi.aws.apigateway.Integration;
    import com.pulumi.aws.apigateway.IntegrationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var myDemoAPI = new RestApi("myDemoAPI", RestApiArgs.builder()        
                .description("This is my API for demonstration purposes")
                .build());
    
            var myDemoResource = new Resource("myDemoResource", ResourceArgs.builder()        
                .restApi(myDemoAPI.id())
                .parentId(myDemoAPI.rootResourceId())
                .pathPart("mydemoresource")
                .build());
    
            var myDemoMethod = new Method("myDemoMethod", MethodArgs.builder()        
                .restApi(myDemoAPI.id())
                .resourceId(myDemoResource.id())
                .httpMethod("GET")
                .authorization("NONE")
                .build());
    
            var myDemoIntegration = new Integration("myDemoIntegration", IntegrationArgs.builder()        
                .restApi(myDemoAPI.id())
                .resourceId(myDemoResource.id())
                .httpMethod(myDemoMethod.httpMethod())
                .type("MOCK")
                .cacheKeyParameters("method.request.path.param")
                .cacheNamespace("foobar")
                .timeoutMilliseconds(29000)
                .requestParameters(Map.of("integration.request.header.X-Authorization", "'static'"))
                .requestTemplates(Map.of("application/xml", """
    {
       "body" : $input.json('$')
    }
                """))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_aws as aws
    
    my_demo_api = aws.apigateway.RestApi("myDemoAPI", description="This is my API for demonstration purposes")
    my_demo_resource = aws.apigateway.Resource("myDemoResource",
        rest_api=my_demo_api.id,
        parent_id=my_demo_api.root_resource_id,
        path_part="mydemoresource")
    my_demo_method = aws.apigateway.Method("myDemoMethod",
        rest_api=my_demo_api.id,
        resource_id=my_demo_resource.id,
        http_method="GET",
        authorization="NONE")
    my_demo_integration = aws.apigateway.Integration("myDemoIntegration",
        rest_api=my_demo_api.id,
        resource_id=my_demo_resource.id,
        http_method=my_demo_method.http_method,
        type="MOCK",
        cache_key_parameters=["method.request.path.param"],
        cache_namespace="foobar",
        timeout_milliseconds=29000,
        request_parameters={
            "integration.request.header.X-Authorization": "'static'",
        },
        request_templates={
            "application/xml": """{
       "body" : $input.json('$')
    }
    """,
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const myDemoAPI = new aws.apigateway.RestApi("myDemoAPI", {description: "This is my API for demonstration purposes"});
    const myDemoResource = new aws.apigateway.Resource("myDemoResource", {
        restApi: myDemoAPI.id,
        parentId: myDemoAPI.rootResourceId,
        pathPart: "mydemoresource",
    });
    const myDemoMethod = new aws.apigateway.Method("myDemoMethod", {
        restApi: myDemoAPI.id,
        resourceId: myDemoResource.id,
        httpMethod: "GET",
        authorization: "NONE",
    });
    const myDemoIntegration = new aws.apigateway.Integration("myDemoIntegration", {
        restApi: myDemoAPI.id,
        resourceId: myDemoResource.id,
        httpMethod: myDemoMethod.httpMethod,
        type: "MOCK",
        cacheKeyParameters: ["method.request.path.param"],
        cacheNamespace: "foobar",
        timeoutMilliseconds: 29000,
        requestParameters: {
            "integration.request.header.X-Authorization": "'static'",
        },
        requestTemplates: {
            "application/xml": `{
       "body" : $input.json('$')
    }
    `,
        },
    });
    
    resources:
      myDemoAPI:
        type: aws:apigateway:RestApi
        properties:
          description: This is my API for demonstration purposes
      myDemoResource:
        type: aws:apigateway:Resource
        properties:
          restApi: ${myDemoAPI.id}
          parentId: ${myDemoAPI.rootResourceId}
          pathPart: mydemoresource
      myDemoMethod:
        type: aws:apigateway:Method
        properties:
          restApi: ${myDemoAPI.id}
          resourceId: ${myDemoResource.id}
          httpMethod: GET
          authorization: NONE
      myDemoIntegration:
        type: aws:apigateway:Integration
        properties:
          restApi: ${myDemoAPI.id}
          resourceId: ${myDemoResource.id}
          httpMethod: ${myDemoMethod.httpMethod}
          type: MOCK
          cacheKeyParameters:
            - method.request.path.param
          cacheNamespace: foobar
          timeoutMilliseconds: 29000
          requestParameters:
            integration.request.header.X-Authorization: '''static'''
          # Transforms the incoming XML request to JSON
          requestTemplates:
            application/xml: |
              {
                 "body" : $input.json('$')
              }          
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var myregion = config.RequireObject<dynamic>("myregion");
        var accountId = config.RequireObject<dynamic>("accountId");
        // API Gateway
        var api = new Aws.ApiGateway.RestApi("api");
    
        var resource = new Aws.ApiGateway.Resource("resource", new()
        {
            PathPart = "resource",
            ParentId = api.RootResourceId,
            RestApi = api.Id,
        });
    
        var method = new Aws.ApiGateway.Method("method", new()
        {
            RestApi = api.Id,
            ResourceId = resource.Id,
            HttpMethod = "GET",
            Authorization = "NONE",
        });
    
        var assumeRole = Aws.Iam.GetPolicyDocument.Invoke(new()
        {
            Statements = new[]
            {
                new Aws.Iam.Inputs.GetPolicyDocumentStatementInputArgs
                {
                    Effect = "Allow",
                    Principals = new[]
                    {
                        new Aws.Iam.Inputs.GetPolicyDocumentStatementPrincipalInputArgs
                        {
                            Type = "Service",
                            Identifiers = new[]
                            {
                                "lambda.amazonaws.com",
                            },
                        },
                    },
                    Actions = new[]
                    {
                        "sts:AssumeRole",
                    },
                },
            },
        });
    
        var role = new Aws.Iam.Role("role", new()
        {
            AssumeRolePolicy = assumeRole.Apply(getPolicyDocumentResult => getPolicyDocumentResult.Json),
        });
    
        var lambda = new Aws.Lambda.Function("lambda", new()
        {
            Code = new FileArchive("lambda.zip"),
            Role = role.Arn,
            Handler = "lambda.lambda_handler",
            Runtime = "python3.7",
        });
    
        var integration = new Aws.ApiGateway.Integration("integration", new()
        {
            RestApi = api.Id,
            ResourceId = resource.Id,
            HttpMethod = method.HttpMethod,
            IntegrationHttpMethod = "POST",
            Type = "AWS_PROXY",
            Uri = lambda.InvokeArn,
        });
    
        // Lambda
        var apigwLambda = new Aws.Lambda.Permission("apigwLambda", new()
        {
            Action = "lambda:InvokeFunction",
            Function = lambda.Name,
            Principal = "apigateway.amazonaws.com",
            SourceArn = Output.Tuple(api.Id, method.HttpMethod, resource.Path).Apply(values =>
            {
                var id = values.Item1;
                var httpMethod = values.Item2;
                var path = values.Item3;
                return $"arn:aws:execute-api:{myregion}:{accountId}:{id}/*/{httpMethod}{path}";
            }),
        });
    
    });
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/apigateway"
    	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/iam"
    	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/lambda"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		myregion := cfg.RequireObject("myregion")
    		accountId := cfg.RequireObject("accountId")
    		api, err := apigateway.NewRestApi(ctx, "api", nil)
    		if err != nil {
    			return err
    		}
    		resource, err := apigateway.NewResource(ctx, "resource", &apigateway.ResourceArgs{
    			PathPart: pulumi.String("resource"),
    			ParentId: api.RootResourceId,
    			RestApi:  api.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		method, err := apigateway.NewMethod(ctx, "method", &apigateway.MethodArgs{
    			RestApi:       api.ID(),
    			ResourceId:    resource.ID(),
    			HttpMethod:    pulumi.String("GET"),
    			Authorization: pulumi.String("NONE"),
    		})
    		if err != nil {
    			return err
    		}
    		assumeRole, err := iam.GetPolicyDocument(ctx, &iam.GetPolicyDocumentArgs{
    			Statements: []iam.GetPolicyDocumentStatement{
    				{
    					Effect: pulumi.StringRef("Allow"),
    					Principals: []iam.GetPolicyDocumentStatementPrincipal{
    						{
    							Type: "Service",
    							Identifiers: []string{
    								"lambda.amazonaws.com",
    							},
    						},
    					},
    					Actions: []string{
    						"sts:AssumeRole",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		role, err := iam.NewRole(ctx, "role", &iam.RoleArgs{
    			AssumeRolePolicy: *pulumi.String(assumeRole.Json),
    		})
    		if err != nil {
    			return err
    		}
    		lambda, err := lambda.NewFunction(ctx, "lambda", &lambda.FunctionArgs{
    			Code:    pulumi.NewFileArchive("lambda.zip"),
    			Role:    role.Arn,
    			Handler: pulumi.String("lambda.lambda_handler"),
    			Runtime: pulumi.String("python3.7"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = apigateway.NewIntegration(ctx, "integration", &apigateway.IntegrationArgs{
    			RestApi:               api.ID(),
    			ResourceId:            resource.ID(),
    			HttpMethod:            method.HttpMethod,
    			IntegrationHttpMethod: pulumi.String("POST"),
    			Type:                  pulumi.String("AWS_PROXY"),
    			Uri:                   lambda.InvokeArn,
    		})
    		if err != nil {
    			return err
    		}
    		_, err = lambda.NewPermission(ctx, "apigwLambda", &lambda.PermissionArgs{
    			Action:    pulumi.String("lambda:InvokeFunction"),
    			Function:  lambda.Name,
    			Principal: pulumi.String("apigateway.amazonaws.com"),
    			SourceArn: pulumi.All(api.ID(), method.HttpMethod, resource.Path).ApplyT(func(_args []interface{}) (string, error) {
    				id := _args[0].(string)
    				httpMethod := _args[1].(string)
    				path := _args[2].(string)
    				return fmt.Sprintf("arn:aws:execute-api:%v:%v:%v/*/%v%v", myregion, accountId, id, httpMethod, path), nil
    			}).(pulumi.StringOutput),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.apigateway.RestApi;
    import com.pulumi.aws.apigateway.Resource;
    import com.pulumi.aws.apigateway.ResourceArgs;
    import com.pulumi.aws.apigateway.Method;
    import com.pulumi.aws.apigateway.MethodArgs;
    import com.pulumi.aws.iam.IamFunctions;
    import com.pulumi.aws.iam.inputs.GetPolicyDocumentArgs;
    import com.pulumi.aws.iam.Role;
    import com.pulumi.aws.iam.RoleArgs;
    import com.pulumi.aws.lambda.Function;
    import com.pulumi.aws.lambda.FunctionArgs;
    import com.pulumi.aws.apigateway.Integration;
    import com.pulumi.aws.apigateway.IntegrationArgs;
    import com.pulumi.aws.lambda.Permission;
    import com.pulumi.aws.lambda.PermissionArgs;
    import com.pulumi.asset.FileArchive;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var config = ctx.config();
            final var myregion = config.get("myregion");
            final var accountId = config.get("accountId");
            var api = new RestApi("api");
    
            var resource = new Resource("resource", ResourceArgs.builder()        
                .pathPart("resource")
                .parentId(api.rootResourceId())
                .restApi(api.id())
                .build());
    
            var method = new Method("method", MethodArgs.builder()        
                .restApi(api.id())
                .resourceId(resource.id())
                .httpMethod("GET")
                .authorization("NONE")
                .build());
    
            final var assumeRole = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
                .statements(GetPolicyDocumentStatementArgs.builder()
                    .effect("Allow")
                    .principals(GetPolicyDocumentStatementPrincipalArgs.builder()
                        .type("Service")
                        .identifiers("lambda.amazonaws.com")
                        .build())
                    .actions("sts:AssumeRole")
                    .build())
                .build());
    
            var role = new Role("role", RoleArgs.builder()        
                .assumeRolePolicy(assumeRole.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult.json()))
                .build());
    
            var lambda = new Function("lambda", FunctionArgs.builder()        
                .code(new FileArchive("lambda.zip"))
                .role(role.arn())
                .handler("lambda.lambda_handler")
                .runtime("python3.7")
                .build());
    
            var integration = new Integration("integration", IntegrationArgs.builder()        
                .restApi(api.id())
                .resourceId(resource.id())
                .httpMethod(method.httpMethod())
                .integrationHttpMethod("POST")
                .type("AWS_PROXY")
                .uri(lambda.invokeArn())
                .build());
    
            var apigwLambda = new Permission("apigwLambda", PermissionArgs.builder()        
                .action("lambda:InvokeFunction")
                .function(lambda.name())
                .principal("apigateway.amazonaws.com")
                .sourceArn(Output.tuple(api.id(), method.httpMethod(), resource.path()).applyValue(values -> {
                    var id = values.t1;
                    var httpMethod = values.t2;
                    var path = values.t3;
                    return String.format("arn:aws:execute-api:%s:%s:%s/*/%s%s", myregion,accountId,id,httpMethod,path);
                }))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_aws as aws
    
    config = pulumi.Config()
    myregion = config.require_object("myregion")
    account_id = config.require_object("accountId")
    # API Gateway
    api = aws.apigateway.RestApi("api")
    resource = aws.apigateway.Resource("resource",
        path_part="resource",
        parent_id=api.root_resource_id,
        rest_api=api.id)
    method = aws.apigateway.Method("method",
        rest_api=api.id,
        resource_id=resource.id,
        http_method="GET",
        authorization="NONE")
    assume_role = aws.iam.get_policy_document(statements=[aws.iam.GetPolicyDocumentStatementArgs(
        effect="Allow",
        principals=[aws.iam.GetPolicyDocumentStatementPrincipalArgs(
            type="Service",
            identifiers=["lambda.amazonaws.com"],
        )],
        actions=["sts:AssumeRole"],
    )])
    role = aws.iam.Role("role", assume_role_policy=assume_role.json)
    lambda_ = aws.lambda_.Function("lambda",
        code=pulumi.FileArchive("lambda.zip"),
        role=role.arn,
        handler="lambda.lambda_handler",
        runtime="python3.7")
    integration = aws.apigateway.Integration("integration",
        rest_api=api.id,
        resource_id=resource.id,
        http_method=method.http_method,
        integration_http_method="POST",
        type="AWS_PROXY",
        uri=lambda_.invoke_arn)
    # Lambda
    apigw_lambda = aws.lambda_.Permission("apigwLambda",
        action="lambda:InvokeFunction",
        function=lambda_.name,
        principal="apigateway.amazonaws.com",
        source_arn=pulumi.Output.all(api.id, method.http_method, resource.path).apply(lambda id, http_method, path: f"arn:aws:execute-api:{myregion}:{account_id}:{id}/*/{http_method}{path}"))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const config = new pulumi.Config();
    const myregion = config.requireObject("myregion");
    const accountId = config.requireObject("accountId");
    // API Gateway
    const api = new aws.apigateway.RestApi("api", {});
    const resource = new aws.apigateway.Resource("resource", {
        pathPart: "resource",
        parentId: api.rootResourceId,
        restApi: api.id,
    });
    const method = new aws.apigateway.Method("method", {
        restApi: api.id,
        resourceId: resource.id,
        httpMethod: "GET",
        authorization: "NONE",
    });
    const assumeRole = aws.iam.getPolicyDocument({
        statements: [{
            effect: "Allow",
            principals: [{
                type: "Service",
                identifiers: ["lambda.amazonaws.com"],
            }],
            actions: ["sts:AssumeRole"],
        }],
    });
    const role = new aws.iam.Role("role", {assumeRolePolicy: assumeRole.then(assumeRole => assumeRole.json)});
    const lambda = new aws.lambda.Function("lambda", {
        code: new pulumi.asset.FileArchive("lambda.zip"),
        role: role.arn,
        handler: "lambda.lambda_handler",
        runtime: "python3.7",
    });
    const integration = new aws.apigateway.Integration("integration", {
        restApi: api.id,
        resourceId: resource.id,
        httpMethod: method.httpMethod,
        integrationHttpMethod: "POST",
        type: "AWS_PROXY",
        uri: lambda.invokeArn,
    });
    // Lambda
    const apigwLambda = new aws.lambda.Permission("apigwLambda", {
        action: "lambda:InvokeFunction",
        "function": lambda.name,
        principal: "apigateway.amazonaws.com",
        sourceArn: pulumi.interpolate`arn:aws:execute-api:${myregion}:${accountId}:${api.id}/*/${method.httpMethod}${resource.path}`,
    });
    
    configuration:
      # Variables
      myregion:
        type: dynamic
      accountId:
        type: dynamic
    resources:
      # API Gateway
      api:
        type: aws:apigateway:RestApi
      resource:
        type: aws:apigateway:Resource
        properties:
          pathPart: resource
          parentId: ${api.rootResourceId}
          restApi: ${api.id}
      method:
        type: aws:apigateway:Method
        properties:
          restApi: ${api.id}
          resourceId: ${resource.id}
          httpMethod: GET
          authorization: NONE
      integration:
        type: aws:apigateway:Integration
        properties:
          restApi: ${api.id}
          resourceId: ${resource.id}
          httpMethod: ${method.httpMethod}
          integrationHttpMethod: POST
          type: AWS_PROXY
          uri: ${lambda.invokeArn}
      # Lambda
      apigwLambda:
        type: aws:lambda:Permission
        properties:
          action: lambda:InvokeFunction
          function: ${lambda.name}
          principal: apigateway.amazonaws.com
          # More: http://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-control-access-using-iam-policies-to-invoke-api.html
          sourceArn: arn:aws:execute-api:${myregion}:${accountId}:${api.id}/*/${method.httpMethod}${resource.path}
      lambda:
        type: aws:lambda:Function
        properties:
          code:
            fn::FileArchive: lambda.zip
          role: ${role.arn}
          handler: lambda.lambda_handler
          runtime: python3.7
      role:
        type: aws:iam:Role
        properties:
          assumeRolePolicy: ${assumeRole.json}
    variables:
      assumeRole:
        fn::invoke:
          Function: aws:iam:getPolicyDocument
          Arguments:
            statements:
              - effect: Allow
                principals:
                  - type: Service
                    identifiers:
                      - lambda.amazonaws.com
                actions:
                  - sts:AssumeRole
    

    Coming soon!

    Coming soon!

    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.lb.LoadBalancer;
    import com.pulumi.aws.lb.LoadBalancerArgs;
    import com.pulumi.aws.apigateway.VpcLink;
    import com.pulumi.aws.apigateway.VpcLinkArgs;
    import com.pulumi.aws.apigateway.RestApi;
    import com.pulumi.aws.apigateway.Resource;
    import com.pulumi.aws.apigateway.ResourceArgs;
    import com.pulumi.aws.apigateway.Method;
    import com.pulumi.aws.apigateway.MethodArgs;
    import com.pulumi.aws.apigateway.Integration;
    import com.pulumi.aws.apigateway.IntegrationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var config = ctx.config();
            final var name = config.get("name");
            final var subnetId = config.get("subnetId");
            var testLoadBalancer = new LoadBalancer("testLoadBalancer", LoadBalancerArgs.builder()        
                .internal(true)
                .loadBalancerType("network")
                .subnets(subnetId)
                .build());
    
            var testVpcLink = new VpcLink("testVpcLink", VpcLinkArgs.builder()        
                .targetArn(testLoadBalancer.arn())
                .build());
    
            var testRestApi = new RestApi("testRestApi");
    
            var testResource = new Resource("testResource", ResourceArgs.builder()        
                .restApi(testRestApi.id())
                .parentId(testRestApi.rootResourceId())
                .pathPart("test")
                .build());
    
            var testMethod = new Method("testMethod", MethodArgs.builder()        
                .restApi(testRestApi.id())
                .resourceId(testResource.id())
                .httpMethod("GET")
                .authorization("NONE")
                .requestModels(Map.of("application/json", "Error"))
                .build());
    
            var testIntegration = new Integration("testIntegration", IntegrationArgs.builder()        
                .restApi(testRestApi.id())
                .resourceId(testResource.id())
                .httpMethod(testMethod.httpMethod())
                .requestTemplates(Map.ofEntries(
                    Map.entry("application/json", ""),
                    Map.entry("application/xml", """
    #set($inputRoot = $input.path('$'))
    { }                """)
                ))
                .requestParameters(Map.ofEntries(
                    Map.entry("integration.request.header.X-Authorization", "'static'"),
                    Map.entry("integration.request.header.X-Foo", "'Bar'")
                ))
                .type("HTTP")
                .uri("https://www.google.de")
                .integrationHttpMethod("GET")
                .passthroughBehavior("WHEN_NO_MATCH")
                .contentHandling("CONVERT_TO_TEXT")
                .connectionType("VPC_LINK")
                .connectionId(testVpcLink.id())
                .build());
    
        }
    }
    

    Coming soon!

    Coming soon!

    configuration:
      name:
        type: dynamic
      subnetId:
        type: dynamic
    resources:
      testLoadBalancer:
        type: aws:lb:LoadBalancer
        properties:
          internal: true
          loadBalancerType: network
          subnets:
            - ${subnetId}
      testVpcLink:
        type: aws:apigateway:VpcLink
        properties:
          targetArn:
            - ${testLoadBalancer.arn}
      testRestApi:
        type: aws:apigateway:RestApi
      testResource:
        type: aws:apigateway:Resource
        properties:
          restApi: ${testRestApi.id}
          parentId: ${testRestApi.rootResourceId}
          pathPart: test
      testMethod:
        type: aws:apigateway:Method
        properties:
          restApi: ${testRestApi.id}
          resourceId: ${testResource.id}
          httpMethod: GET
          authorization: NONE
          requestModels:
            application/json: Error
      testIntegration:
        type: aws:apigateway:Integration
        properties:
          restApi: ${testRestApi.id}
          resourceId: ${testResource.id}
          httpMethod: ${testMethod.httpMethod}
          requestTemplates:
            application/json:
            application/xml: |-
              #set($inputRoot = $input.path('$'))
              { }          
          requestParameters:
            integration.request.header.X-Authorization: '''static'''
            integration.request.header.X-Foo: '''Bar'''
          type: HTTP
          uri: https://www.google.de
          integrationHttpMethod: GET
          passthroughBehavior: WHEN_NO_MATCH
          contentHandling: CONVERT_TO_TEXT
          connectionType: VPC_LINK
          connectionId: ${testVpcLink.id}
    

    Create Integration Resource

    new Integration(name: string, args: IntegrationArgs, opts?: CustomResourceOptions);
    @overload
    def Integration(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    cache_key_parameters: Optional[Sequence[str]] = None,
                    cache_namespace: Optional[str] = None,
                    connection_id: Optional[str] = None,
                    connection_type: Optional[str] = None,
                    content_handling: Optional[str] = None,
                    credentials: Optional[str] = None,
                    http_method: Optional[str] = None,
                    integration_http_method: Optional[str] = None,
                    passthrough_behavior: Optional[str] = None,
                    request_parameters: Optional[Mapping[str, str]] = None,
                    request_templates: Optional[Mapping[str, str]] = None,
                    resource_id: Optional[str] = None,
                    rest_api: Optional[str] = None,
                    timeout_milliseconds: Optional[int] = None,
                    tls_config: Optional[IntegrationTlsConfigArgs] = None,
                    type: Optional[str] = None,
                    uri: Optional[str] = None)
    @overload
    def Integration(resource_name: str,
                    args: IntegrationArgs,
                    opts: Optional[ResourceOptions] = None)
    func NewIntegration(ctx *Context, name string, args IntegrationArgs, opts ...ResourceOption) (*Integration, error)
    public Integration(string name, IntegrationArgs args, CustomResourceOptions? opts = null)
    public Integration(String name, IntegrationArgs args)
    public Integration(String name, IntegrationArgs args, CustomResourceOptions options)
    
    type: aws:apigateway:Integration
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Integration Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Integration resource accepts the following input properties:

    HttpMethod string

    HTTP method (GET, POST, PUT, DELETE, HEAD, OPTION, ANY) when calling the associated resource.

    ResourceId string

    API resource ID.

    RestApi string | string

    ID of the associated REST API.

    Type string

    Integration input's type. Valid values are HTTP (for HTTP backends), MOCK (not calling any real backend), AWS (for AWS services), AWS_PROXY (for Lambda proxy integration) and HTTP_PROXY (for HTTP proxy integration). An HTTP or HTTP_PROXY integration with a connection_type of VPC_LINK is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.

    CacheKeyParameters List<string>

    List of cache key parameters for the integration.

    CacheNamespace string

    Integration's cache namespace.

    ConnectionId string

    ID of the VpcLink used for the integration. Required if connection_type is VPC_LINK

    ConnectionType string

    Integration input's connectionType. Valid values are INTERNET (default for connections through the public routable internet), and VPC_LINK (for private connections between API Gateway and a network load balancer in a VPC).

    ContentHandling string

    How to handle request payload content type conversions. Supported values are CONVERT_TO_BINARY and CONVERT_TO_TEXT. If this property is not defined, the request payload will be passed through from the method request to integration request without modification, provided that the passthroughBehaviors is configured to support payload pass-through.

    Credentials string

    Credentials required for the integration. For AWS integrations, 2 options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's ARN. To require that the caller's identity be passed through from the request, specify the string arn:aws:iam::\*:user/\*.

    IntegrationHttpMethod string

    Integration HTTP method (GET, POST, PUT, DELETE, HEAD, OPTIONs, ANY, PATCH) specifying how API Gateway will interact with the back end. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. Not all methods are compatible with all AWS integrations. e.g., Lambda function can only be invoked via POST.

    PassthroughBehavior string

    Integration passthrough behavior (WHEN_NO_MATCH, WHEN_NO_TEMPLATES, NEVER). Required if request_templates is used.

    RequestParameters Dictionary<string, string>

    Map of request query string parameters and headers that should be passed to the backend responder. For example: request_parameters = { "integration.request.header.X-Some-Other-Header" = "method.request.header.X-Some-Header" }

    RequestTemplates Dictionary<string, string>

    Map of the integration's request templates.

    TimeoutMilliseconds int

    Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds.

    TlsConfig IntegrationTlsConfigArgs

    TLS configuration. See below.

    Uri string

    Input's URI. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. For HTTP integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification . For AWS integrations, the URI should be of the form arn:aws:apigateway:{region}:{subdomain.service|service}:{path|action}/{service_api}. region, subdomain and service are used to determine the right endpoint. e.g., arn:aws:apigateway:eu-west-1:lambda:path/2015-03-31/functions/arn:aws:lambda:eu-west-1:012345678901:function:my-func/invocations. For private integrations, the URI parameter is not used for routing requests to your endpoint, but is used for setting the Host header and for certificate validation.

    HttpMethod string

    HTTP method (GET, POST, PUT, DELETE, HEAD, OPTION, ANY) when calling the associated resource.

    ResourceId string

    API resource ID.

    RestApi string | string

    ID of the associated REST API.

    Type string

    Integration input's type. Valid values are HTTP (for HTTP backends), MOCK (not calling any real backend), AWS (for AWS services), AWS_PROXY (for Lambda proxy integration) and HTTP_PROXY (for HTTP proxy integration). An HTTP or HTTP_PROXY integration with a connection_type of VPC_LINK is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.

    CacheKeyParameters []string

    List of cache key parameters for the integration.

    CacheNamespace string

    Integration's cache namespace.

    ConnectionId string

    ID of the VpcLink used for the integration. Required if connection_type is VPC_LINK

    ConnectionType string

    Integration input's connectionType. Valid values are INTERNET (default for connections through the public routable internet), and VPC_LINK (for private connections between API Gateway and a network load balancer in a VPC).

    ContentHandling string

    How to handle request payload content type conversions. Supported values are CONVERT_TO_BINARY and CONVERT_TO_TEXT. If this property is not defined, the request payload will be passed through from the method request to integration request without modification, provided that the passthroughBehaviors is configured to support payload pass-through.

    Credentials string

    Credentials required for the integration. For AWS integrations, 2 options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's ARN. To require that the caller's identity be passed through from the request, specify the string arn:aws:iam::\*:user/\*.

    IntegrationHttpMethod string

    Integration HTTP method (GET, POST, PUT, DELETE, HEAD, OPTIONs, ANY, PATCH) specifying how API Gateway will interact with the back end. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. Not all methods are compatible with all AWS integrations. e.g., Lambda function can only be invoked via POST.

    PassthroughBehavior string

    Integration passthrough behavior (WHEN_NO_MATCH, WHEN_NO_TEMPLATES, NEVER). Required if request_templates is used.

    RequestParameters map[string]string

    Map of request query string parameters and headers that should be passed to the backend responder. For example: request_parameters = { "integration.request.header.X-Some-Other-Header" = "method.request.header.X-Some-Header" }

    RequestTemplates map[string]string

    Map of the integration's request templates.

    TimeoutMilliseconds int

    Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds.

    TlsConfig IntegrationTlsConfigArgs

    TLS configuration. See below.

    Uri string

    Input's URI. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. For HTTP integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification . For AWS integrations, the URI should be of the form arn:aws:apigateway:{region}:{subdomain.service|service}:{path|action}/{service_api}. region, subdomain and service are used to determine the right endpoint. e.g., arn:aws:apigateway:eu-west-1:lambda:path/2015-03-31/functions/arn:aws:lambda:eu-west-1:012345678901:function:my-func/invocations. For private integrations, the URI parameter is not used for routing requests to your endpoint, but is used for setting the Host header and for certificate validation.

    httpMethod String

    HTTP method (GET, POST, PUT, DELETE, HEAD, OPTION, ANY) when calling the associated resource.

    resourceId String

    API resource ID.

    restApi String | String

    ID of the associated REST API.

    type String

    Integration input's type. Valid values are HTTP (for HTTP backends), MOCK (not calling any real backend), AWS (for AWS services), AWS_PROXY (for Lambda proxy integration) and HTTP_PROXY (for HTTP proxy integration). An HTTP or HTTP_PROXY integration with a connection_type of VPC_LINK is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.

    cacheKeyParameters List<String>

    List of cache key parameters for the integration.

    cacheNamespace String

    Integration's cache namespace.

    connectionId String

    ID of the VpcLink used for the integration. Required if connection_type is VPC_LINK

    connectionType String

    Integration input's connectionType. Valid values are INTERNET (default for connections through the public routable internet), and VPC_LINK (for private connections between API Gateway and a network load balancer in a VPC).

    contentHandling String

    How to handle request payload content type conversions. Supported values are CONVERT_TO_BINARY and CONVERT_TO_TEXT. If this property is not defined, the request payload will be passed through from the method request to integration request without modification, provided that the passthroughBehaviors is configured to support payload pass-through.

    credentials String

    Credentials required for the integration. For AWS integrations, 2 options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's ARN. To require that the caller's identity be passed through from the request, specify the string arn:aws:iam::\*:user/\*.

    integrationHttpMethod String

    Integration HTTP method (GET, POST, PUT, DELETE, HEAD, OPTIONs, ANY, PATCH) specifying how API Gateway will interact with the back end. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. Not all methods are compatible with all AWS integrations. e.g., Lambda function can only be invoked via POST.

    passthroughBehavior String

    Integration passthrough behavior (WHEN_NO_MATCH, WHEN_NO_TEMPLATES, NEVER). Required if request_templates is used.

    requestParameters Map<String,String>

    Map of request query string parameters and headers that should be passed to the backend responder. For example: request_parameters = { "integration.request.header.X-Some-Other-Header" = "method.request.header.X-Some-Header" }

    requestTemplates Map<String,String>

    Map of the integration's request templates.

    timeoutMilliseconds Integer

    Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds.

    tlsConfig IntegrationTlsConfigArgs

    TLS configuration. See below.

    uri String

    Input's URI. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. For HTTP integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification . For AWS integrations, the URI should be of the form arn:aws:apigateway:{region}:{subdomain.service|service}:{path|action}/{service_api}. region, subdomain and service are used to determine the right endpoint. e.g., arn:aws:apigateway:eu-west-1:lambda:path/2015-03-31/functions/arn:aws:lambda:eu-west-1:012345678901:function:my-func/invocations. For private integrations, the URI parameter is not used for routing requests to your endpoint, but is used for setting the Host header and for certificate validation.

    httpMethod string

    HTTP method (GET, POST, PUT, DELETE, HEAD, OPTION, ANY) when calling the associated resource.

    resourceId string

    API resource ID.

    restApi string | RestApi

    ID of the associated REST API.

    type string

    Integration input's type. Valid values are HTTP (for HTTP backends), MOCK (not calling any real backend), AWS (for AWS services), AWS_PROXY (for Lambda proxy integration) and HTTP_PROXY (for HTTP proxy integration). An HTTP or HTTP_PROXY integration with a connection_type of VPC_LINK is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.

    cacheKeyParameters string[]

    List of cache key parameters for the integration.

    cacheNamespace string

    Integration's cache namespace.

    connectionId string

    ID of the VpcLink used for the integration. Required if connection_type is VPC_LINK

    connectionType string

    Integration input's connectionType. Valid values are INTERNET (default for connections through the public routable internet), and VPC_LINK (for private connections between API Gateway and a network load balancer in a VPC).

    contentHandling string

    How to handle request payload content type conversions. Supported values are CONVERT_TO_BINARY and CONVERT_TO_TEXT. If this property is not defined, the request payload will be passed through from the method request to integration request without modification, provided that the passthroughBehaviors is configured to support payload pass-through.

    credentials string

    Credentials required for the integration. For AWS integrations, 2 options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's ARN. To require that the caller's identity be passed through from the request, specify the string arn:aws:iam::\*:user/\*.

    integrationHttpMethod string

    Integration HTTP method (GET, POST, PUT, DELETE, HEAD, OPTIONs, ANY, PATCH) specifying how API Gateway will interact with the back end. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. Not all methods are compatible with all AWS integrations. e.g., Lambda function can only be invoked via POST.

    passthroughBehavior string

    Integration passthrough behavior (WHEN_NO_MATCH, WHEN_NO_TEMPLATES, NEVER). Required if request_templates is used.

    requestParameters {[key: string]: string}

    Map of request query string parameters and headers that should be passed to the backend responder. For example: request_parameters = { "integration.request.header.X-Some-Other-Header" = "method.request.header.X-Some-Header" }

    requestTemplates {[key: string]: string}

    Map of the integration's request templates.

    timeoutMilliseconds number

    Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds.

    tlsConfig IntegrationTlsConfigArgs

    TLS configuration. See below.

    uri string

    Input's URI. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. For HTTP integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification . For AWS integrations, the URI should be of the form arn:aws:apigateway:{region}:{subdomain.service|service}:{path|action}/{service_api}. region, subdomain and service are used to determine the right endpoint. e.g., arn:aws:apigateway:eu-west-1:lambda:path/2015-03-31/functions/arn:aws:lambda:eu-west-1:012345678901:function:my-func/invocations. For private integrations, the URI parameter is not used for routing requests to your endpoint, but is used for setting the Host header and for certificate validation.

    http_method str

    HTTP method (GET, POST, PUT, DELETE, HEAD, OPTION, ANY) when calling the associated resource.

    resource_id str

    API resource ID.

    rest_api str | str

    ID of the associated REST API.

    type str

    Integration input's type. Valid values are HTTP (for HTTP backends), MOCK (not calling any real backend), AWS (for AWS services), AWS_PROXY (for Lambda proxy integration) and HTTP_PROXY (for HTTP proxy integration). An HTTP or HTTP_PROXY integration with a connection_type of VPC_LINK is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.

    cache_key_parameters Sequence[str]

    List of cache key parameters for the integration.

    cache_namespace str

    Integration's cache namespace.

    connection_id str

    ID of the VpcLink used for the integration. Required if connection_type is VPC_LINK

    connection_type str

    Integration input's connectionType. Valid values are INTERNET (default for connections through the public routable internet), and VPC_LINK (for private connections between API Gateway and a network load balancer in a VPC).

    content_handling str

    How to handle request payload content type conversions. Supported values are CONVERT_TO_BINARY and CONVERT_TO_TEXT. If this property is not defined, the request payload will be passed through from the method request to integration request without modification, provided that the passthroughBehaviors is configured to support payload pass-through.

    credentials str

    Credentials required for the integration. For AWS integrations, 2 options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's ARN. To require that the caller's identity be passed through from the request, specify the string arn:aws:iam::\*:user/\*.

    integration_http_method str

    Integration HTTP method (GET, POST, PUT, DELETE, HEAD, OPTIONs, ANY, PATCH) specifying how API Gateway will interact with the back end. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. Not all methods are compatible with all AWS integrations. e.g., Lambda function can only be invoked via POST.

    passthrough_behavior str

    Integration passthrough behavior (WHEN_NO_MATCH, WHEN_NO_TEMPLATES, NEVER). Required if request_templates is used.

    request_parameters Mapping[str, str]

    Map of request query string parameters and headers that should be passed to the backend responder. For example: request_parameters = { "integration.request.header.X-Some-Other-Header" = "method.request.header.X-Some-Header" }

    request_templates Mapping[str, str]

    Map of the integration's request templates.

    timeout_milliseconds int

    Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds.

    tls_config IntegrationTlsConfigArgs

    TLS configuration. See below.

    uri str

    Input's URI. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. For HTTP integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification . For AWS integrations, the URI should be of the form arn:aws:apigateway:{region}:{subdomain.service|service}:{path|action}/{service_api}. region, subdomain and service are used to determine the right endpoint. e.g., arn:aws:apigateway:eu-west-1:lambda:path/2015-03-31/functions/arn:aws:lambda:eu-west-1:012345678901:function:my-func/invocations. For private integrations, the URI parameter is not used for routing requests to your endpoint, but is used for setting the Host header and for certificate validation.

    httpMethod String

    HTTP method (GET, POST, PUT, DELETE, HEAD, OPTION, ANY) when calling the associated resource.

    resourceId String

    API resource ID.

    restApi String |

    ID of the associated REST API.

    type String

    Integration input's type. Valid values are HTTP (for HTTP backends), MOCK (not calling any real backend), AWS (for AWS services), AWS_PROXY (for Lambda proxy integration) and HTTP_PROXY (for HTTP proxy integration). An HTTP or HTTP_PROXY integration with a connection_type of VPC_LINK is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.

    cacheKeyParameters List<String>

    List of cache key parameters for the integration.

    cacheNamespace String

    Integration's cache namespace.

    connectionId String

    ID of the VpcLink used for the integration. Required if connection_type is VPC_LINK

    connectionType String

    Integration input's connectionType. Valid values are INTERNET (default for connections through the public routable internet), and VPC_LINK (for private connections between API Gateway and a network load balancer in a VPC).

    contentHandling String

    How to handle request payload content type conversions. Supported values are CONVERT_TO_BINARY and CONVERT_TO_TEXT. If this property is not defined, the request payload will be passed through from the method request to integration request without modification, provided that the passthroughBehaviors is configured to support payload pass-through.

    credentials String

    Credentials required for the integration. For AWS integrations, 2 options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's ARN. To require that the caller's identity be passed through from the request, specify the string arn:aws:iam::\*:user/\*.

    integrationHttpMethod String

    Integration HTTP method (GET, POST, PUT, DELETE, HEAD, OPTIONs, ANY, PATCH) specifying how API Gateway will interact with the back end. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. Not all methods are compatible with all AWS integrations. e.g., Lambda function can only be invoked via POST.

    passthroughBehavior String

    Integration passthrough behavior (WHEN_NO_MATCH, WHEN_NO_TEMPLATES, NEVER). Required if request_templates is used.

    requestParameters Map<String>

    Map of request query string parameters and headers that should be passed to the backend responder. For example: request_parameters = { "integration.request.header.X-Some-Other-Header" = "method.request.header.X-Some-Header" }

    requestTemplates Map<String>

    Map of the integration's request templates.

    timeoutMilliseconds Number

    Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds.

    tlsConfig Property Map

    TLS configuration. See below.

    uri String

    Input's URI. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. For HTTP integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification . For AWS integrations, the URI should be of the form arn:aws:apigateway:{region}:{subdomain.service|service}:{path|action}/{service_api}. region, subdomain and service are used to determine the right endpoint. e.g., arn:aws:apigateway:eu-west-1:lambda:path/2015-03-31/functions/arn:aws:lambda:eu-west-1:012345678901:function:my-func/invocations. For private integrations, the URI parameter is not used for routing requests to your endpoint, but is used for setting the Host header and for certificate validation.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Integration resource produces the following output properties:

    Id string

    The provider-assigned unique ID for this managed resource.

    Id string

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    id string

    The provider-assigned unique ID for this managed resource.

    id str

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    Look up Existing Integration Resource

    Get an existing Integration resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: IntegrationState, opts?: CustomResourceOptions): Integration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cache_key_parameters: Optional[Sequence[str]] = None,
            cache_namespace: Optional[str] = None,
            connection_id: Optional[str] = None,
            connection_type: Optional[str] = None,
            content_handling: Optional[str] = None,
            credentials: Optional[str] = None,
            http_method: Optional[str] = None,
            integration_http_method: Optional[str] = None,
            passthrough_behavior: Optional[str] = None,
            request_parameters: Optional[Mapping[str, str]] = None,
            request_templates: Optional[Mapping[str, str]] = None,
            resource_id: Optional[str] = None,
            rest_api: Optional[str] = None,
            timeout_milliseconds: Optional[int] = None,
            tls_config: Optional[IntegrationTlsConfigArgs] = None,
            type: Optional[str] = None,
            uri: Optional[str] = None) -> Integration
    func GetIntegration(ctx *Context, name string, id IDInput, state *IntegrationState, opts ...ResourceOption) (*Integration, error)
    public static Integration Get(string name, Input<string> id, IntegrationState? state, CustomResourceOptions? opts = null)
    public static Integration get(String name, Output<String> id, IntegrationState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CacheKeyParameters List<string>

    List of cache key parameters for the integration.

    CacheNamespace string

    Integration's cache namespace.

    ConnectionId string

    ID of the VpcLink used for the integration. Required if connection_type is VPC_LINK

    ConnectionType string

    Integration input's connectionType. Valid values are INTERNET (default for connections through the public routable internet), and VPC_LINK (for private connections between API Gateway and a network load balancer in a VPC).

    ContentHandling string

    How to handle request payload content type conversions. Supported values are CONVERT_TO_BINARY and CONVERT_TO_TEXT. If this property is not defined, the request payload will be passed through from the method request to integration request without modification, provided that the passthroughBehaviors is configured to support payload pass-through.

    Credentials string

    Credentials required for the integration. For AWS integrations, 2 options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's ARN. To require that the caller's identity be passed through from the request, specify the string arn:aws:iam::\*:user/\*.

    HttpMethod string

    HTTP method (GET, POST, PUT, DELETE, HEAD, OPTION, ANY) when calling the associated resource.

    IntegrationHttpMethod string

    Integration HTTP method (GET, POST, PUT, DELETE, HEAD, OPTIONs, ANY, PATCH) specifying how API Gateway will interact with the back end. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. Not all methods are compatible with all AWS integrations. e.g., Lambda function can only be invoked via POST.

    PassthroughBehavior string

    Integration passthrough behavior (WHEN_NO_MATCH, WHEN_NO_TEMPLATES, NEVER). Required if request_templates is used.

    RequestParameters Dictionary<string, string>

    Map of request query string parameters and headers that should be passed to the backend responder. For example: request_parameters = { "integration.request.header.X-Some-Other-Header" = "method.request.header.X-Some-Header" }

    RequestTemplates Dictionary<string, string>

    Map of the integration's request templates.

    ResourceId string

    API resource ID.

    RestApi string | string

    ID of the associated REST API.

    TimeoutMilliseconds int

    Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds.

    TlsConfig IntegrationTlsConfigArgs

    TLS configuration. See below.

    Type string

    Integration input's type. Valid values are HTTP (for HTTP backends), MOCK (not calling any real backend), AWS (for AWS services), AWS_PROXY (for Lambda proxy integration) and HTTP_PROXY (for HTTP proxy integration). An HTTP or HTTP_PROXY integration with a connection_type of VPC_LINK is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.

    Uri string

    Input's URI. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. For HTTP integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification . For AWS integrations, the URI should be of the form arn:aws:apigateway:{region}:{subdomain.service|service}:{path|action}/{service_api}. region, subdomain and service are used to determine the right endpoint. e.g., arn:aws:apigateway:eu-west-1:lambda:path/2015-03-31/functions/arn:aws:lambda:eu-west-1:012345678901:function:my-func/invocations. For private integrations, the URI parameter is not used for routing requests to your endpoint, but is used for setting the Host header and for certificate validation.

    CacheKeyParameters []string

    List of cache key parameters for the integration.

    CacheNamespace string

    Integration's cache namespace.

    ConnectionId string

    ID of the VpcLink used for the integration. Required if connection_type is VPC_LINK

    ConnectionType string

    Integration input's connectionType. Valid values are INTERNET (default for connections through the public routable internet), and VPC_LINK (for private connections between API Gateway and a network load balancer in a VPC).

    ContentHandling string

    How to handle request payload content type conversions. Supported values are CONVERT_TO_BINARY and CONVERT_TO_TEXT. If this property is not defined, the request payload will be passed through from the method request to integration request without modification, provided that the passthroughBehaviors is configured to support payload pass-through.

    Credentials string

    Credentials required for the integration. For AWS integrations, 2 options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's ARN. To require that the caller's identity be passed through from the request, specify the string arn:aws:iam::\*:user/\*.

    HttpMethod string

    HTTP method (GET, POST, PUT, DELETE, HEAD, OPTION, ANY) when calling the associated resource.

    IntegrationHttpMethod string

    Integration HTTP method (GET, POST, PUT, DELETE, HEAD, OPTIONs, ANY, PATCH) specifying how API Gateway will interact with the back end. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. Not all methods are compatible with all AWS integrations. e.g., Lambda function can only be invoked via POST.

    PassthroughBehavior string

    Integration passthrough behavior (WHEN_NO_MATCH, WHEN_NO_TEMPLATES, NEVER). Required if request_templates is used.

    RequestParameters map[string]string

    Map of request query string parameters and headers that should be passed to the backend responder. For example: request_parameters = { "integration.request.header.X-Some-Other-Header" = "method.request.header.X-Some-Header" }

    RequestTemplates map[string]string

    Map of the integration's request templates.

    ResourceId string

    API resource ID.

    RestApi string | string

    ID of the associated REST API.

    TimeoutMilliseconds int

    Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds.

    TlsConfig IntegrationTlsConfigArgs

    TLS configuration. See below.

    Type string

    Integration input's type. Valid values are HTTP (for HTTP backends), MOCK (not calling any real backend), AWS (for AWS services), AWS_PROXY (for Lambda proxy integration) and HTTP_PROXY (for HTTP proxy integration). An HTTP or HTTP_PROXY integration with a connection_type of VPC_LINK is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.

    Uri string

    Input's URI. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. For HTTP integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification . For AWS integrations, the URI should be of the form arn:aws:apigateway:{region}:{subdomain.service|service}:{path|action}/{service_api}. region, subdomain and service are used to determine the right endpoint. e.g., arn:aws:apigateway:eu-west-1:lambda:path/2015-03-31/functions/arn:aws:lambda:eu-west-1:012345678901:function:my-func/invocations. For private integrations, the URI parameter is not used for routing requests to your endpoint, but is used for setting the Host header and for certificate validation.

    cacheKeyParameters List<String>

    List of cache key parameters for the integration.

    cacheNamespace String

    Integration's cache namespace.

    connectionId String

    ID of the VpcLink used for the integration. Required if connection_type is VPC_LINK

    connectionType String

    Integration input's connectionType. Valid values are INTERNET (default for connections through the public routable internet), and VPC_LINK (for private connections between API Gateway and a network load balancer in a VPC).

    contentHandling String

    How to handle request payload content type conversions. Supported values are CONVERT_TO_BINARY and CONVERT_TO_TEXT. If this property is not defined, the request payload will be passed through from the method request to integration request without modification, provided that the passthroughBehaviors is configured to support payload pass-through.

    credentials String

    Credentials required for the integration. For AWS integrations, 2 options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's ARN. To require that the caller's identity be passed through from the request, specify the string arn:aws:iam::\*:user/\*.

    httpMethod String

    HTTP method (GET, POST, PUT, DELETE, HEAD, OPTION, ANY) when calling the associated resource.

    integrationHttpMethod String

    Integration HTTP method (GET, POST, PUT, DELETE, HEAD, OPTIONs, ANY, PATCH) specifying how API Gateway will interact with the back end. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. Not all methods are compatible with all AWS integrations. e.g., Lambda function can only be invoked via POST.

    passthroughBehavior String

    Integration passthrough behavior (WHEN_NO_MATCH, WHEN_NO_TEMPLATES, NEVER). Required if request_templates is used.

    requestParameters Map<String,String>

    Map of request query string parameters and headers that should be passed to the backend responder. For example: request_parameters = { "integration.request.header.X-Some-Other-Header" = "method.request.header.X-Some-Header" }

    requestTemplates Map<String,String>

    Map of the integration's request templates.

    resourceId String

    API resource ID.

    restApi String | String

    ID of the associated REST API.

    timeoutMilliseconds Integer

    Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds.

    tlsConfig IntegrationTlsConfigArgs

    TLS configuration. See below.

    type String

    Integration input's type. Valid values are HTTP (for HTTP backends), MOCK (not calling any real backend), AWS (for AWS services), AWS_PROXY (for Lambda proxy integration) and HTTP_PROXY (for HTTP proxy integration). An HTTP or HTTP_PROXY integration with a connection_type of VPC_LINK is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.

    uri String

    Input's URI. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. For HTTP integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification . For AWS integrations, the URI should be of the form arn:aws:apigateway:{region}:{subdomain.service|service}:{path|action}/{service_api}. region, subdomain and service are used to determine the right endpoint. e.g., arn:aws:apigateway:eu-west-1:lambda:path/2015-03-31/functions/arn:aws:lambda:eu-west-1:012345678901:function:my-func/invocations. For private integrations, the URI parameter is not used for routing requests to your endpoint, but is used for setting the Host header and for certificate validation.

    cacheKeyParameters string[]

    List of cache key parameters for the integration.

    cacheNamespace string

    Integration's cache namespace.

    connectionId string

    ID of the VpcLink used for the integration. Required if connection_type is VPC_LINK

    connectionType string

    Integration input's connectionType. Valid values are INTERNET (default for connections through the public routable internet), and VPC_LINK (for private connections between API Gateway and a network load balancer in a VPC).

    contentHandling string

    How to handle request payload content type conversions. Supported values are CONVERT_TO_BINARY and CONVERT_TO_TEXT. If this property is not defined, the request payload will be passed through from the method request to integration request without modification, provided that the passthroughBehaviors is configured to support payload pass-through.

    credentials string

    Credentials required for the integration. For AWS integrations, 2 options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's ARN. To require that the caller's identity be passed through from the request, specify the string arn:aws:iam::\*:user/\*.

    httpMethod string

    HTTP method (GET, POST, PUT, DELETE, HEAD, OPTION, ANY) when calling the associated resource.

    integrationHttpMethod string

    Integration HTTP method (GET, POST, PUT, DELETE, HEAD, OPTIONs, ANY, PATCH) specifying how API Gateway will interact with the back end. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. Not all methods are compatible with all AWS integrations. e.g., Lambda function can only be invoked via POST.

    passthroughBehavior string

    Integration passthrough behavior (WHEN_NO_MATCH, WHEN_NO_TEMPLATES, NEVER). Required if request_templates is used.

    requestParameters {[key: string]: string}

    Map of request query string parameters and headers that should be passed to the backend responder. For example: request_parameters = { "integration.request.header.X-Some-Other-Header" = "method.request.header.X-Some-Header" }

    requestTemplates {[key: string]: string}

    Map of the integration's request templates.

    resourceId string

    API resource ID.

    restApi string | RestApi

    ID of the associated REST API.

    timeoutMilliseconds number

    Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds.

    tlsConfig IntegrationTlsConfigArgs

    TLS configuration. See below.

    type string

    Integration input's type. Valid values are HTTP (for HTTP backends), MOCK (not calling any real backend), AWS (for AWS services), AWS_PROXY (for Lambda proxy integration) and HTTP_PROXY (for HTTP proxy integration). An HTTP or HTTP_PROXY integration with a connection_type of VPC_LINK is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.

    uri string

    Input's URI. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. For HTTP integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification . For AWS integrations, the URI should be of the form arn:aws:apigateway:{region}:{subdomain.service|service}:{path|action}/{service_api}. region, subdomain and service are used to determine the right endpoint. e.g., arn:aws:apigateway:eu-west-1:lambda:path/2015-03-31/functions/arn:aws:lambda:eu-west-1:012345678901:function:my-func/invocations. For private integrations, the URI parameter is not used for routing requests to your endpoint, but is used for setting the Host header and for certificate validation.

    cache_key_parameters Sequence[str]

    List of cache key parameters for the integration.

    cache_namespace str

    Integration's cache namespace.

    connection_id str

    ID of the VpcLink used for the integration. Required if connection_type is VPC_LINK

    connection_type str

    Integration input's connectionType. Valid values are INTERNET (default for connections through the public routable internet), and VPC_LINK (for private connections between API Gateway and a network load balancer in a VPC).

    content_handling str

    How to handle request payload content type conversions. Supported values are CONVERT_TO_BINARY and CONVERT_TO_TEXT. If this property is not defined, the request payload will be passed through from the method request to integration request without modification, provided that the passthroughBehaviors is configured to support payload pass-through.

    credentials str

    Credentials required for the integration. For AWS integrations, 2 options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's ARN. To require that the caller's identity be passed through from the request, specify the string arn:aws:iam::\*:user/\*.

    http_method str

    HTTP method (GET, POST, PUT, DELETE, HEAD, OPTION, ANY) when calling the associated resource.

    integration_http_method str

    Integration HTTP method (GET, POST, PUT, DELETE, HEAD, OPTIONs, ANY, PATCH) specifying how API Gateway will interact with the back end. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. Not all methods are compatible with all AWS integrations. e.g., Lambda function can only be invoked via POST.

    passthrough_behavior str

    Integration passthrough behavior (WHEN_NO_MATCH, WHEN_NO_TEMPLATES, NEVER). Required if request_templates is used.

    request_parameters Mapping[str, str]

    Map of request query string parameters and headers that should be passed to the backend responder. For example: request_parameters = { "integration.request.header.X-Some-Other-Header" = "method.request.header.X-Some-Header" }

    request_templates Mapping[str, str]

    Map of the integration's request templates.

    resource_id str

    API resource ID.

    rest_api str | str

    ID of the associated REST API.

    timeout_milliseconds int

    Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds.

    tls_config IntegrationTlsConfigArgs

    TLS configuration. See below.

    type str

    Integration input's type. Valid values are HTTP (for HTTP backends), MOCK (not calling any real backend), AWS (for AWS services), AWS_PROXY (for Lambda proxy integration) and HTTP_PROXY (for HTTP proxy integration). An HTTP or HTTP_PROXY integration with a connection_type of VPC_LINK is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.

    uri str

    Input's URI. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. For HTTP integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification . For AWS integrations, the URI should be of the form arn:aws:apigateway:{region}:{subdomain.service|service}:{path|action}/{service_api}. region, subdomain and service are used to determine the right endpoint. e.g., arn:aws:apigateway:eu-west-1:lambda:path/2015-03-31/functions/arn:aws:lambda:eu-west-1:012345678901:function:my-func/invocations. For private integrations, the URI parameter is not used for routing requests to your endpoint, but is used for setting the Host header and for certificate validation.

    cacheKeyParameters List<String>

    List of cache key parameters for the integration.

    cacheNamespace String

    Integration's cache namespace.

    connectionId String

    ID of the VpcLink used for the integration. Required if connection_type is VPC_LINK

    connectionType String

    Integration input's connectionType. Valid values are INTERNET (default for connections through the public routable internet), and VPC_LINK (for private connections between API Gateway and a network load balancer in a VPC).

    contentHandling String

    How to handle request payload content type conversions. Supported values are CONVERT_TO_BINARY and CONVERT_TO_TEXT. If this property is not defined, the request payload will be passed through from the method request to integration request without modification, provided that the passthroughBehaviors is configured to support payload pass-through.

    credentials String

    Credentials required for the integration. For AWS integrations, 2 options are available. To specify an IAM Role for Amazon API Gateway to assume, use the role's ARN. To require that the caller's identity be passed through from the request, specify the string arn:aws:iam::\*:user/\*.

    httpMethod String

    HTTP method (GET, POST, PUT, DELETE, HEAD, OPTION, ANY) when calling the associated resource.

    integrationHttpMethod String

    Integration HTTP method (GET, POST, PUT, DELETE, HEAD, OPTIONs, ANY, PATCH) specifying how API Gateway will interact with the back end. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. Not all methods are compatible with all AWS integrations. e.g., Lambda function can only be invoked via POST.

    passthroughBehavior String

    Integration passthrough behavior (WHEN_NO_MATCH, WHEN_NO_TEMPLATES, NEVER). Required if request_templates is used.

    requestParameters Map<String>

    Map of request query string parameters and headers that should be passed to the backend responder. For example: request_parameters = { "integration.request.header.X-Some-Other-Header" = "method.request.header.X-Some-Header" }

    requestTemplates Map<String>

    Map of the integration's request templates.

    resourceId String

    API resource ID.

    restApi String |

    ID of the associated REST API.

    timeoutMilliseconds Number

    Custom timeout between 50 and 29,000 milliseconds. The default value is 29,000 milliseconds.

    tlsConfig Property Map

    TLS configuration. See below.

    type String

    Integration input's type. Valid values are HTTP (for HTTP backends), MOCK (not calling any real backend), AWS (for AWS services), AWS_PROXY (for Lambda proxy integration) and HTTP_PROXY (for HTTP proxy integration). An HTTP or HTTP_PROXY integration with a connection_type of VPC_LINK is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.

    uri String

    Input's URI. Required if type is AWS, AWS_PROXY, HTTP or HTTP_PROXY. For HTTP integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification . For AWS integrations, the URI should be of the form arn:aws:apigateway:{region}:{subdomain.service|service}:{path|action}/{service_api}. region, subdomain and service are used to determine the right endpoint. e.g., arn:aws:apigateway:eu-west-1:lambda:path/2015-03-31/functions/arn:aws:lambda:eu-west-1:012345678901:function:my-func/invocations. For private integrations, the URI parameter is not used for routing requests to your endpoint, but is used for setting the Host header and for certificate validation.

    Supporting Types

    IntegrationTlsConfig

    InsecureSkipVerification bool

    Whether or not API Gateway skips verification that the certificate for an integration endpoint is issued by a supported certificate authority. This isn’t recommended, but it enables you to use certificates that are signed by private certificate authorities, or certificates that are self-signed. If enabled, API Gateway still performs basic certificate validation, which includes checking the certificate's expiration date, hostname, and presence of a root certificate authority. Supported only for HTTP and HTTP_PROXY integrations.

    InsecureSkipVerification bool

    Whether or not API Gateway skips verification that the certificate for an integration endpoint is issued by a supported certificate authority. This isn’t recommended, but it enables you to use certificates that are signed by private certificate authorities, or certificates that are self-signed. If enabled, API Gateway still performs basic certificate validation, which includes checking the certificate's expiration date, hostname, and presence of a root certificate authority. Supported only for HTTP and HTTP_PROXY integrations.

    insecureSkipVerification Boolean

    Whether or not API Gateway skips verification that the certificate for an integration endpoint is issued by a supported certificate authority. This isn’t recommended, but it enables you to use certificates that are signed by private certificate authorities, or certificates that are self-signed. If enabled, API Gateway still performs basic certificate validation, which includes checking the certificate's expiration date, hostname, and presence of a root certificate authority. Supported only for HTTP and HTTP_PROXY integrations.

    insecureSkipVerification boolean

    Whether or not API Gateway skips verification that the certificate for an integration endpoint is issued by a supported certificate authority. This isn’t recommended, but it enables you to use certificates that are signed by private certificate authorities, or certificates that are self-signed. If enabled, API Gateway still performs basic certificate validation, which includes checking the certificate's expiration date, hostname, and presence of a root certificate authority. Supported only for HTTP and HTTP_PROXY integrations.

    insecure_skip_verification bool

    Whether or not API Gateway skips verification that the certificate for an integration endpoint is issued by a supported certificate authority. This isn’t recommended, but it enables you to use certificates that are signed by private certificate authorities, or certificates that are self-signed. If enabled, API Gateway still performs basic certificate validation, which includes checking the certificate's expiration date, hostname, and presence of a root certificate authority. Supported only for HTTP and HTTP_PROXY integrations.

    insecureSkipVerification Boolean

    Whether or not API Gateway skips verification that the certificate for an integration endpoint is issued by a supported certificate authority. This isn’t recommended, but it enables you to use certificates that are signed by private certificate authorities, or certificates that are self-signed. If enabled, API Gateway still performs basic certificate validation, which includes checking the certificate's expiration date, hostname, and presence of a root certificate authority. Supported only for HTTP and HTTP_PROXY integrations.

    Import

    aws_api_gateway_integration can be imported using REST-API-ID/RESOURCE-ID/HTTP-METHOD, e.g.,

     $ pulumi import aws:apigateway/integration:Integration example 12345abcde/67890fghij/GET
    

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the aws Terraform Provider.

    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v5.41.0 published on Monday, May 15, 2023 by Pulumi