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

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

AWS Classic v6.2.1 published on Friday, Sep 22, 2023 by Pulumi

aws.apigateway.Method

Explore with Pulumi AI

aws logo

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

AWS Classic v6.2.1 published on Friday, Sep 22, 2023 by Pulumi

    Provides a HTTP Method for an API Gateway Resource.

    Usage with Cognito User Pool Authorizer

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const config = new pulumi.Config();
    const cognitoUserPoolName = config.requireObject("cognitoUserPoolName");
    const thisUserPools = aws.cognito.getUserPools({
        name: cognitoUserPoolName,
    });
    const thisRestApi = new aws.apigateway.RestApi("thisRestApi", {});
    const thisResource = new aws.apigateway.Resource("thisResource", {
        restApi: thisRestApi.id,
        parentId: thisRestApi.rootResourceId,
        pathPart: "{proxy+}",
    });
    const thisAuthorizer = new aws.apigateway.Authorizer("thisAuthorizer", {
        type: "COGNITO_USER_POOLS",
        restApi: thisRestApi.id,
        providerArns: thisUserPools.then(thisUserPools => thisUserPools.arns),
    });
    const any = new aws.apigateway.Method("any", {
        restApi: thisRestApi.id,
        resourceId: thisResource.id,
        httpMethod: "ANY",
        authorization: "COGNITO_USER_POOLS",
        authorizerId: thisAuthorizer.id,
        requestParameters: {
            "method.request.path.proxy": true,
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    config = pulumi.Config()
    cognito_user_pool_name = config.require_object("cognitoUserPoolName")
    this_user_pools = aws.cognito.get_user_pools(name=cognito_user_pool_name)
    this_rest_api = aws.apigateway.RestApi("thisRestApi")
    this_resource = aws.apigateway.Resource("thisResource",
        rest_api=this_rest_api.id,
        parent_id=this_rest_api.root_resource_id,
        path_part="{proxy+}")
    this_authorizer = aws.apigateway.Authorizer("thisAuthorizer",
        type="COGNITO_USER_POOLS",
        rest_api=this_rest_api.id,
        provider_arns=this_user_pools.arns)
    any = aws.apigateway.Method("any",
        rest_api=this_rest_api.id,
        resource_id=this_resource.id,
        http_method="ANY",
        authorization="COGNITO_USER_POOLS",
        authorizer_id=this_authorizer.id,
        request_parameters={
            "method.request.path.proxy": True,
        })
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var cognitoUserPoolName = config.RequireObject<dynamic>("cognitoUserPoolName");
        var thisUserPools = Aws.Cognito.GetUserPools.Invoke(new()
        {
            Name = cognitoUserPoolName,
        });
    
        var thisRestApi = new Aws.ApiGateway.RestApi("thisRestApi");
    
        var thisResource = new Aws.ApiGateway.Resource("thisResource", new()
        {
            RestApi = thisRestApi.Id,
            ParentId = thisRestApi.RootResourceId,
            PathPart = "{proxy+}",
        });
    
        var thisAuthorizer = new Aws.ApiGateway.Authorizer("thisAuthorizer", new()
        {
            Type = "COGNITO_USER_POOLS",
            RestApi = thisRestApi.Id,
            ProviderArns = thisUserPools.Apply(getUserPoolsResult => getUserPoolsResult.Arns),
        });
    
        var any = new Aws.ApiGateway.Method("any", new()
        {
            RestApi = thisRestApi.Id,
            ResourceId = thisResource.Id,
            HttpMethod = "ANY",
            Authorization = "COGNITO_USER_POOLS",
            AuthorizerId = thisAuthorizer.Id,
            RequestParameters = 
            {
                { "method.request.path.proxy", true },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/apigateway"
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/cognito"
    	"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, "")
    		cognitoUserPoolName := cfg.RequireObject("cognitoUserPoolName")
    		thisUserPools, err := cognito.GetUserPools(ctx, &cognito.GetUserPoolsArgs{
    			Name: cognitoUserPoolName,
    		}, nil)
    		if err != nil {
    			return err
    		}
    		thisRestApi, err := apigateway.NewRestApi(ctx, "thisRestApi", nil)
    		if err != nil {
    			return err
    		}
    		thisResource, err := apigateway.NewResource(ctx, "thisResource", &apigateway.ResourceArgs{
    			RestApi:  thisRestApi.ID(),
    			ParentId: thisRestApi.RootResourceId,
    			PathPart: pulumi.String("{proxy+}"),
    		})
    		if err != nil {
    			return err
    		}
    		thisAuthorizer, err := apigateway.NewAuthorizer(ctx, "thisAuthorizer", &apigateway.AuthorizerArgs{
    			Type:         pulumi.String("COGNITO_USER_POOLS"),
    			RestApi:      thisRestApi.ID(),
    			ProviderArns: interface{}(thisUserPools.Arns),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = apigateway.NewMethod(ctx, "any", &apigateway.MethodArgs{
    			RestApi:       thisRestApi.ID(),
    			ResourceId:    thisResource.ID(),
    			HttpMethod:    pulumi.String("ANY"),
    			Authorization: pulumi.String("COGNITO_USER_POOLS"),
    			AuthorizerId:  thisAuthorizer.ID(),
    			RequestParameters: pulumi.BoolMap{
    				"method.request.path.proxy": pulumi.Bool(true),
    			},
    		})
    		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.cognito.CognitoFunctions;
    import com.pulumi.aws.cognito.inputs.GetUserPoolsArgs;
    import com.pulumi.aws.apigateway.RestApi;
    import com.pulumi.aws.apigateway.Resource;
    import com.pulumi.aws.apigateway.ResourceArgs;
    import com.pulumi.aws.apigateway.Authorizer;
    import com.pulumi.aws.apigateway.AuthorizerArgs;
    import com.pulumi.aws.apigateway.Method;
    import com.pulumi.aws.apigateway.MethodArgs;
    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 cognitoUserPoolName = config.get("cognitoUserPoolName");
            final var thisUserPools = CognitoFunctions.getUserPools(GetUserPoolsArgs.builder()
                .name(cognitoUserPoolName)
                .build());
    
            var thisRestApi = new RestApi("thisRestApi");
    
            var thisResource = new Resource("thisResource", ResourceArgs.builder()        
                .restApi(thisRestApi.id())
                .parentId(thisRestApi.rootResourceId())
                .pathPart("{proxy+}")
                .build());
    
            var thisAuthorizer = new Authorizer("thisAuthorizer", AuthorizerArgs.builder()        
                .type("COGNITO_USER_POOLS")
                .restApi(thisRestApi.id())
                .providerArns(thisUserPools.applyValue(getUserPoolsResult -> getUserPoolsResult.arns()))
                .build());
    
            var any = new Method("any", MethodArgs.builder()        
                .restApi(thisRestApi.id())
                .resourceId(thisResource.id())
                .httpMethod("ANY")
                .authorization("COGNITO_USER_POOLS")
                .authorizerId(thisAuthorizer.id())
                .requestParameters(Map.of("method.request.path.proxy", true))
                .build());
    
        }
    }
    
    configuration:
      cognitoUserPoolName:
        type: dynamic
    resources:
      thisRestApi:
        type: aws:apigateway:RestApi
      thisResource:
        type: aws:apigateway:Resource
        properties:
          restApi: ${thisRestApi.id}
          parentId: ${thisRestApi.rootResourceId}
          pathPart: '{proxy+}'
      thisAuthorizer:
        type: aws:apigateway:Authorizer
        properties:
          type: COGNITO_USER_POOLS
          restApi: ${thisRestApi.id}
          providerArns: ${thisUserPools.arns}
      any:
        type: aws:apigateway:Method
        properties:
          restApi: ${thisRestApi.id}
          resourceId: ${thisResource.id}
          httpMethod: ANY
          authorization: COGNITO_USER_POOLS
          authorizerId: ${thisAuthorizer.id}
          requestParameters:
            method.request.path.proxy: true
    variables:
      thisUserPools:
        fn::invoke:
          Function: aws:cognito:getUserPools
          Arguments:
            name: ${cognitoUserPoolName}
    

    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",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/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
    		}
    		_, 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
    		}
    		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 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());
    
        }
    }
    
    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")
    
    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",
    });
    
    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
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var cognitoUserPoolName = config.RequireObject<dynamic>("cognitoUserPoolName");
        var thisUserPools = Aws.Cognito.GetUserPools.Invoke(new()
        {
            Name = cognitoUserPoolName,
        });
    
        var thisRestApi = new Aws.ApiGateway.RestApi("thisRestApi");
    
        var thisResource = new Aws.ApiGateway.Resource("thisResource", new()
        {
            RestApi = thisRestApi.Id,
            ParentId = thisRestApi.RootResourceId,
            PathPart = "{proxy+}",
        });
    
        var thisAuthorizer = new Aws.ApiGateway.Authorizer("thisAuthorizer", new()
        {
            Type = "COGNITO_USER_POOLS",
            RestApi = thisRestApi.Id,
            ProviderArns = thisUserPools.Apply(getUserPoolsResult => getUserPoolsResult.Arns),
        });
    
        var any = new Aws.ApiGateway.Method("any", new()
        {
            RestApi = thisRestApi.Id,
            ResourceId = thisResource.Id,
            HttpMethod = "ANY",
            Authorization = "COGNITO_USER_POOLS",
            AuthorizerId = thisAuthorizer.Id,
            RequestParameters = 
            {
                { "method.request.path.proxy", true },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/apigateway"
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/cognito"
    	"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, "")
    		cognitoUserPoolName := cfg.RequireObject("cognitoUserPoolName")
    		thisUserPools, err := cognito.GetUserPools(ctx, &cognito.GetUserPoolsArgs{
    			Name: cognitoUserPoolName,
    		}, nil)
    		if err != nil {
    			return err
    		}
    		thisRestApi, err := apigateway.NewRestApi(ctx, "thisRestApi", nil)
    		if err != nil {
    			return err
    		}
    		thisResource, err := apigateway.NewResource(ctx, "thisResource", &apigateway.ResourceArgs{
    			RestApi:  thisRestApi.ID(),
    			ParentId: thisRestApi.RootResourceId,
    			PathPart: pulumi.String("{proxy+}"),
    		})
    		if err != nil {
    			return err
    		}
    		thisAuthorizer, err := apigateway.NewAuthorizer(ctx, "thisAuthorizer", &apigateway.AuthorizerArgs{
    			Type:         pulumi.String("COGNITO_USER_POOLS"),
    			RestApi:      thisRestApi.ID(),
    			ProviderArns: interface{}(thisUserPools.Arns),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = apigateway.NewMethod(ctx, "any", &apigateway.MethodArgs{
    			RestApi:       thisRestApi.ID(),
    			ResourceId:    thisResource.ID(),
    			HttpMethod:    pulumi.String("ANY"),
    			Authorization: pulumi.String("COGNITO_USER_POOLS"),
    			AuthorizerId:  thisAuthorizer.ID(),
    			RequestParameters: pulumi.BoolMap{
    				"method.request.path.proxy": pulumi.Bool(true),
    			},
    		})
    		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.cognito.CognitoFunctions;
    import com.pulumi.aws.cognito.inputs.GetUserPoolsArgs;
    import com.pulumi.aws.apigateway.RestApi;
    import com.pulumi.aws.apigateway.Resource;
    import com.pulumi.aws.apigateway.ResourceArgs;
    import com.pulumi.aws.apigateway.Authorizer;
    import com.pulumi.aws.apigateway.AuthorizerArgs;
    import com.pulumi.aws.apigateway.Method;
    import com.pulumi.aws.apigateway.MethodArgs;
    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 cognitoUserPoolName = config.get("cognitoUserPoolName");
            final var thisUserPools = CognitoFunctions.getUserPools(GetUserPoolsArgs.builder()
                .name(cognitoUserPoolName)
                .build());
    
            var thisRestApi = new RestApi("thisRestApi");
    
            var thisResource = new Resource("thisResource", ResourceArgs.builder()        
                .restApi(thisRestApi.id())
                .parentId(thisRestApi.rootResourceId())
                .pathPart("{proxy+}")
                .build());
    
            var thisAuthorizer = new Authorizer("thisAuthorizer", AuthorizerArgs.builder()        
                .type("COGNITO_USER_POOLS")
                .restApi(thisRestApi.id())
                .providerArns(thisUserPools.applyValue(getUserPoolsResult -> getUserPoolsResult.arns()))
                .build());
    
            var any = new Method("any", MethodArgs.builder()        
                .restApi(thisRestApi.id())
                .resourceId(thisResource.id())
                .httpMethod("ANY")
                .authorization("COGNITO_USER_POOLS")
                .authorizerId(thisAuthorizer.id())
                .requestParameters(Map.of("method.request.path.proxy", true))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_aws as aws
    
    config = pulumi.Config()
    cognito_user_pool_name = config.require_object("cognitoUserPoolName")
    this_user_pools = aws.cognito.get_user_pools(name=cognito_user_pool_name)
    this_rest_api = aws.apigateway.RestApi("thisRestApi")
    this_resource = aws.apigateway.Resource("thisResource",
        rest_api=this_rest_api.id,
        parent_id=this_rest_api.root_resource_id,
        path_part="{proxy+}")
    this_authorizer = aws.apigateway.Authorizer("thisAuthorizer",
        type="COGNITO_USER_POOLS",
        rest_api=this_rest_api.id,
        provider_arns=this_user_pools.arns)
    any = aws.apigateway.Method("any",
        rest_api=this_rest_api.id,
        resource_id=this_resource.id,
        http_method="ANY",
        authorization="COGNITO_USER_POOLS",
        authorizer_id=this_authorizer.id,
        request_parameters={
            "method.request.path.proxy": True,
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const config = new pulumi.Config();
    const cognitoUserPoolName = config.requireObject("cognitoUserPoolName");
    const thisUserPools = aws.cognito.getUserPools({
        name: cognitoUserPoolName,
    });
    const thisRestApi = new aws.apigateway.RestApi("thisRestApi", {});
    const thisResource = new aws.apigateway.Resource("thisResource", {
        restApi: thisRestApi.id,
        parentId: thisRestApi.rootResourceId,
        pathPart: "{proxy+}",
    });
    const thisAuthorizer = new aws.apigateway.Authorizer("thisAuthorizer", {
        type: "COGNITO_USER_POOLS",
        restApi: thisRestApi.id,
        providerArns: thisUserPools.then(thisUserPools => thisUserPools.arns),
    });
    const any = new aws.apigateway.Method("any", {
        restApi: thisRestApi.id,
        resourceId: thisResource.id,
        httpMethod: "ANY",
        authorization: "COGNITO_USER_POOLS",
        authorizerId: thisAuthorizer.id,
        requestParameters: {
            "method.request.path.proxy": true,
        },
    });
    
    configuration:
      cognitoUserPoolName:
        type: dynamic
    resources:
      thisRestApi:
        type: aws:apigateway:RestApi
      thisResource:
        type: aws:apigateway:Resource
        properties:
          restApi: ${thisRestApi.id}
          parentId: ${thisRestApi.rootResourceId}
          pathPart: '{proxy+}'
      thisAuthorizer:
        type: aws:apigateway:Authorizer
        properties:
          type: COGNITO_USER_POOLS
          restApi: ${thisRestApi.id}
          providerArns: ${thisUserPools.arns}
      any:
        type: aws:apigateway:Method
        properties:
          restApi: ${thisRestApi.id}
          resourceId: ${thisResource.id}
          httpMethod: ANY
          authorization: COGNITO_USER_POOLS
          authorizerId: ${thisAuthorizer.id}
          requestParameters:
            method.request.path.proxy: true
    variables:
      thisUserPools:
        fn::invoke:
          Function: aws:cognito:getUserPools
          Arguments:
            name: ${cognitoUserPoolName}
    

    Create Method Resource

    new Method(name: string, args: MethodArgs, opts?: CustomResourceOptions);
    @overload
    def Method(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               api_key_required: Optional[bool] = None,
               authorization: Optional[str] = None,
               authorization_scopes: Optional[Sequence[str]] = None,
               authorizer_id: Optional[str] = None,
               http_method: Optional[str] = None,
               operation_name: Optional[str] = None,
               request_models: Optional[Mapping[str, str]] = None,
               request_parameters: Optional[Mapping[str, bool]] = None,
               request_validator_id: Optional[str] = None,
               resource_id: Optional[str] = None,
               rest_api: Optional[str] = None)
    @overload
    def Method(resource_name: str,
               args: MethodArgs,
               opts: Optional[ResourceOptions] = None)
    func NewMethod(ctx *Context, name string, args MethodArgs, opts ...ResourceOption) (*Method, error)
    public Method(string name, MethodArgs args, CustomResourceOptions? opts = null)
    public Method(String name, MethodArgs args)
    public Method(String name, MethodArgs args, CustomResourceOptions options)
    
    type: aws:apigateway:Method
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args MethodArgs
    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 MethodArgs
    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 MethodArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MethodArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MethodArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Method 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 Method resource accepts the following input properties:

    Authorization string

    Type of authorization used for the method (NONE, CUSTOM, AWS_IAM, COGNITO_USER_POOLS)

    HttpMethod string

    HTTP Method (GET, POST, PUT, DELETE, HEAD, OPTIONS, ANY)

    ResourceId string

    API resource ID

    RestApi string | string

    ID of the associated REST API

    ApiKeyRequired bool

    Specify if the method requires an API key

    AuthorizationScopes List<string>

    Authorization scopes used when the authorization is COGNITO_USER_POOLS

    AuthorizerId string

    Authorizer id to be used when the authorization is CUSTOM or COGNITO_USER_POOLS

    OperationName string

    Function name that will be given to the method when generating an SDK through API Gateway. If omitted, API Gateway will generate a function name based on the resource path and HTTP verb.

    RequestModels Dictionary<string, string>

    Map of the API models used for the request's content type where key is the content type (e.g., application/json) and value is either Error, Empty (built-in models) or aws.apigateway.Model's name.

    RequestParameters Dictionary<string, bool>

    Map of request parameters (from the path, query string and headers) that should be passed to the integration. The boolean value indicates whether the parameter is required (true) or optional (false). For example: request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request.

    RequestValidatorId string

    ID of a aws.apigateway.RequestValidator

    Authorization string

    Type of authorization used for the method (NONE, CUSTOM, AWS_IAM, COGNITO_USER_POOLS)

    HttpMethod string

    HTTP Method (GET, POST, PUT, DELETE, HEAD, OPTIONS, ANY)

    ResourceId string

    API resource ID

    RestApi string | string

    ID of the associated REST API

    ApiKeyRequired bool

    Specify if the method requires an API key

    AuthorizationScopes []string

    Authorization scopes used when the authorization is COGNITO_USER_POOLS

    AuthorizerId string

    Authorizer id to be used when the authorization is CUSTOM or COGNITO_USER_POOLS

    OperationName string

    Function name that will be given to the method when generating an SDK through API Gateway. If omitted, API Gateway will generate a function name based on the resource path and HTTP verb.

    RequestModels map[string]string

    Map of the API models used for the request's content type where key is the content type (e.g., application/json) and value is either Error, Empty (built-in models) or aws.apigateway.Model's name.

    RequestParameters map[string]bool

    Map of request parameters (from the path, query string and headers) that should be passed to the integration. The boolean value indicates whether the parameter is required (true) or optional (false). For example: request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request.

    RequestValidatorId string

    ID of a aws.apigateway.RequestValidator

    authorization String

    Type of authorization used for the method (NONE, CUSTOM, AWS_IAM, COGNITO_USER_POOLS)

    httpMethod String

    HTTP Method (GET, POST, PUT, DELETE, HEAD, OPTIONS, ANY)

    resourceId String

    API resource ID

    restApi String | String

    ID of the associated REST API

    apiKeyRequired Boolean

    Specify if the method requires an API key

    authorizationScopes List<String>

    Authorization scopes used when the authorization is COGNITO_USER_POOLS

    authorizerId String

    Authorizer id to be used when the authorization is CUSTOM or COGNITO_USER_POOLS

    operationName String

    Function name that will be given to the method when generating an SDK through API Gateway. If omitted, API Gateway will generate a function name based on the resource path and HTTP verb.

    requestModels Map<String,String>

    Map of the API models used for the request's content type where key is the content type (e.g., application/json) and value is either Error, Empty (built-in models) or aws.apigateway.Model's name.

    requestParameters Map<String,Boolean>

    Map of request parameters (from the path, query string and headers) that should be passed to the integration. The boolean value indicates whether the parameter is required (true) or optional (false). For example: request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request.

    requestValidatorId String

    ID of a aws.apigateway.RequestValidator

    authorization string

    Type of authorization used for the method (NONE, CUSTOM, AWS_IAM, COGNITO_USER_POOLS)

    httpMethod string

    HTTP Method (GET, POST, PUT, DELETE, HEAD, OPTIONS, ANY)

    resourceId string

    API resource ID

    restApi string | RestApi

    ID of the associated REST API

    apiKeyRequired boolean

    Specify if the method requires an API key

    authorizationScopes string[]

    Authorization scopes used when the authorization is COGNITO_USER_POOLS

    authorizerId string

    Authorizer id to be used when the authorization is CUSTOM or COGNITO_USER_POOLS

    operationName string

    Function name that will be given to the method when generating an SDK through API Gateway. If omitted, API Gateway will generate a function name based on the resource path and HTTP verb.

    requestModels {[key: string]: string}

    Map of the API models used for the request's content type where key is the content type (e.g., application/json) and value is either Error, Empty (built-in models) or aws.apigateway.Model's name.

    requestParameters {[key: string]: boolean}

    Map of request parameters (from the path, query string and headers) that should be passed to the integration. The boolean value indicates whether the parameter is required (true) or optional (false). For example: request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request.

    requestValidatorId string

    ID of a aws.apigateway.RequestValidator

    authorization str

    Type of authorization used for the method (NONE, CUSTOM, AWS_IAM, COGNITO_USER_POOLS)

    http_method str

    HTTP Method (GET, POST, PUT, DELETE, HEAD, OPTIONS, ANY)

    resource_id str

    API resource ID

    rest_api str | str

    ID of the associated REST API

    api_key_required bool

    Specify if the method requires an API key

    authorization_scopes Sequence[str]

    Authorization scopes used when the authorization is COGNITO_USER_POOLS

    authorizer_id str

    Authorizer id to be used when the authorization is CUSTOM or COGNITO_USER_POOLS

    operation_name str

    Function name that will be given to the method when generating an SDK through API Gateway. If omitted, API Gateway will generate a function name based on the resource path and HTTP verb.

    request_models Mapping[str, str]

    Map of the API models used for the request's content type where key is the content type (e.g., application/json) and value is either Error, Empty (built-in models) or aws.apigateway.Model's name.

    request_parameters Mapping[str, bool]

    Map of request parameters (from the path, query string and headers) that should be passed to the integration. The boolean value indicates whether the parameter is required (true) or optional (false). For example: request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request.

    request_validator_id str

    ID of a aws.apigateway.RequestValidator

    authorization String

    Type of authorization used for the method (NONE, CUSTOM, AWS_IAM, COGNITO_USER_POOLS)

    httpMethod String

    HTTP Method (GET, POST, PUT, DELETE, HEAD, OPTIONS, ANY)

    resourceId String

    API resource ID

    restApi String |

    ID of the associated REST API

    apiKeyRequired Boolean

    Specify if the method requires an API key

    authorizationScopes List<String>

    Authorization scopes used when the authorization is COGNITO_USER_POOLS

    authorizerId String

    Authorizer id to be used when the authorization is CUSTOM or COGNITO_USER_POOLS

    operationName String

    Function name that will be given to the method when generating an SDK through API Gateway. If omitted, API Gateway will generate a function name based on the resource path and HTTP verb.

    requestModels Map<String>

    Map of the API models used for the request's content type where key is the content type (e.g., application/json) and value is either Error, Empty (built-in models) or aws.apigateway.Model's name.

    requestParameters Map<Boolean>

    Map of request parameters (from the path, query string and headers) that should be passed to the integration. The boolean value indicates whether the parameter is required (true) or optional (false). For example: request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request.

    requestValidatorId String

    ID of a aws.apigateway.RequestValidator

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Method 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 Method Resource

    Get an existing Method 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?: MethodState, opts?: CustomResourceOptions): Method
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            api_key_required: Optional[bool] = None,
            authorization: Optional[str] = None,
            authorization_scopes: Optional[Sequence[str]] = None,
            authorizer_id: Optional[str] = None,
            http_method: Optional[str] = None,
            operation_name: Optional[str] = None,
            request_models: Optional[Mapping[str, str]] = None,
            request_parameters: Optional[Mapping[str, bool]] = None,
            request_validator_id: Optional[str] = None,
            resource_id: Optional[str] = None,
            rest_api: Optional[str] = None) -> Method
    func GetMethod(ctx *Context, name string, id IDInput, state *MethodState, opts ...ResourceOption) (*Method, error)
    public static Method Get(string name, Input<string> id, MethodState? state, CustomResourceOptions? opts = null)
    public static Method get(String name, Output<String> id, MethodState 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:
    ApiKeyRequired bool

    Specify if the method requires an API key

    Authorization string

    Type of authorization used for the method (NONE, CUSTOM, AWS_IAM, COGNITO_USER_POOLS)

    AuthorizationScopes List<string>

    Authorization scopes used when the authorization is COGNITO_USER_POOLS

    AuthorizerId string

    Authorizer id to be used when the authorization is CUSTOM or COGNITO_USER_POOLS

    HttpMethod string

    HTTP Method (GET, POST, PUT, DELETE, HEAD, OPTIONS, ANY)

    OperationName string

    Function name that will be given to the method when generating an SDK through API Gateway. If omitted, API Gateway will generate a function name based on the resource path and HTTP verb.

    RequestModels Dictionary<string, string>

    Map of the API models used for the request's content type where key is the content type (e.g., application/json) and value is either Error, Empty (built-in models) or aws.apigateway.Model's name.

    RequestParameters Dictionary<string, bool>

    Map of request parameters (from the path, query string and headers) that should be passed to the integration. The boolean value indicates whether the parameter is required (true) or optional (false). For example: request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request.

    RequestValidatorId string

    ID of a aws.apigateway.RequestValidator

    ResourceId string

    API resource ID

    RestApi string | string

    ID of the associated REST API

    ApiKeyRequired bool

    Specify if the method requires an API key

    Authorization string

    Type of authorization used for the method (NONE, CUSTOM, AWS_IAM, COGNITO_USER_POOLS)

    AuthorizationScopes []string

    Authorization scopes used when the authorization is COGNITO_USER_POOLS

    AuthorizerId string

    Authorizer id to be used when the authorization is CUSTOM or COGNITO_USER_POOLS

    HttpMethod string

    HTTP Method (GET, POST, PUT, DELETE, HEAD, OPTIONS, ANY)

    OperationName string

    Function name that will be given to the method when generating an SDK through API Gateway. If omitted, API Gateway will generate a function name based on the resource path and HTTP verb.

    RequestModels map[string]string

    Map of the API models used for the request's content type where key is the content type (e.g., application/json) and value is either Error, Empty (built-in models) or aws.apigateway.Model's name.

    RequestParameters map[string]bool

    Map of request parameters (from the path, query string and headers) that should be passed to the integration. The boolean value indicates whether the parameter is required (true) or optional (false). For example: request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request.

    RequestValidatorId string

    ID of a aws.apigateway.RequestValidator

    ResourceId string

    API resource ID

    RestApi string | string

    ID of the associated REST API

    apiKeyRequired Boolean

    Specify if the method requires an API key

    authorization String

    Type of authorization used for the method (NONE, CUSTOM, AWS_IAM, COGNITO_USER_POOLS)

    authorizationScopes List<String>

    Authorization scopes used when the authorization is COGNITO_USER_POOLS

    authorizerId String

    Authorizer id to be used when the authorization is CUSTOM or COGNITO_USER_POOLS

    httpMethod String

    HTTP Method (GET, POST, PUT, DELETE, HEAD, OPTIONS, ANY)

    operationName String

    Function name that will be given to the method when generating an SDK through API Gateway. If omitted, API Gateway will generate a function name based on the resource path and HTTP verb.

    requestModels Map<String,String>

    Map of the API models used for the request's content type where key is the content type (e.g., application/json) and value is either Error, Empty (built-in models) or aws.apigateway.Model's name.

    requestParameters Map<String,Boolean>

    Map of request parameters (from the path, query string and headers) that should be passed to the integration. The boolean value indicates whether the parameter is required (true) or optional (false). For example: request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request.

    requestValidatorId String

    ID of a aws.apigateway.RequestValidator

    resourceId String

    API resource ID

    restApi String | String

    ID of the associated REST API

    apiKeyRequired boolean

    Specify if the method requires an API key

    authorization string

    Type of authorization used for the method (NONE, CUSTOM, AWS_IAM, COGNITO_USER_POOLS)

    authorizationScopes string[]

    Authorization scopes used when the authorization is COGNITO_USER_POOLS

    authorizerId string

    Authorizer id to be used when the authorization is CUSTOM or COGNITO_USER_POOLS

    httpMethod string

    HTTP Method (GET, POST, PUT, DELETE, HEAD, OPTIONS, ANY)

    operationName string

    Function name that will be given to the method when generating an SDK through API Gateway. If omitted, API Gateway will generate a function name based on the resource path and HTTP verb.

    requestModels {[key: string]: string}

    Map of the API models used for the request's content type where key is the content type (e.g., application/json) and value is either Error, Empty (built-in models) or aws.apigateway.Model's name.

    requestParameters {[key: string]: boolean}

    Map of request parameters (from the path, query string and headers) that should be passed to the integration. The boolean value indicates whether the parameter is required (true) or optional (false). For example: request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request.

    requestValidatorId string

    ID of a aws.apigateway.RequestValidator

    resourceId string

    API resource ID

    restApi string | RestApi

    ID of the associated REST API

    api_key_required bool

    Specify if the method requires an API key

    authorization str

    Type of authorization used for the method (NONE, CUSTOM, AWS_IAM, COGNITO_USER_POOLS)

    authorization_scopes Sequence[str]

    Authorization scopes used when the authorization is COGNITO_USER_POOLS

    authorizer_id str

    Authorizer id to be used when the authorization is CUSTOM or COGNITO_USER_POOLS

    http_method str

    HTTP Method (GET, POST, PUT, DELETE, HEAD, OPTIONS, ANY)

    operation_name str

    Function name that will be given to the method when generating an SDK through API Gateway. If omitted, API Gateway will generate a function name based on the resource path and HTTP verb.

    request_models Mapping[str, str]

    Map of the API models used for the request's content type where key is the content type (e.g., application/json) and value is either Error, Empty (built-in models) or aws.apigateway.Model's name.

    request_parameters Mapping[str, bool]

    Map of request parameters (from the path, query string and headers) that should be passed to the integration. The boolean value indicates whether the parameter is required (true) or optional (false). For example: request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request.

    request_validator_id str

    ID of a aws.apigateway.RequestValidator

    resource_id str

    API resource ID

    rest_api str | str

    ID of the associated REST API

    apiKeyRequired Boolean

    Specify if the method requires an API key

    authorization String

    Type of authorization used for the method (NONE, CUSTOM, AWS_IAM, COGNITO_USER_POOLS)

    authorizationScopes List<String>

    Authorization scopes used when the authorization is COGNITO_USER_POOLS

    authorizerId String

    Authorizer id to be used when the authorization is CUSTOM or COGNITO_USER_POOLS

    httpMethod String

    HTTP Method (GET, POST, PUT, DELETE, HEAD, OPTIONS, ANY)

    operationName String

    Function name that will be given to the method when generating an SDK through API Gateway. If omitted, API Gateway will generate a function name based on the resource path and HTTP verb.

    requestModels Map<String>

    Map of the API models used for the request's content type where key is the content type (e.g., application/json) and value is either Error, Empty (built-in models) or aws.apigateway.Model's name.

    requestParameters Map<Boolean>

    Map of request parameters (from the path, query string and headers) that should be passed to the integration. The boolean value indicates whether the parameter is required (true) or optional (false). For example: request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request.

    requestValidatorId String

    ID of a aws.apigateway.RequestValidator

    resourceId String

    API resource ID

    restApi String |

    ID of the associated REST API

    Import

    Using pulumi import, import aws_api_gateway_method using REST-API-ID/RESOURCE-ID/HTTP-METHOD. For example:

     $ pulumi import aws:apigateway/method:Method 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 v6.2.1 published on Friday, Sep 22, 2023 by Pulumi