aws logo
AWS Classic v5.34.0, Mar 30 23

aws.apigatewayv2.Api

Manages an Amazon API Gateway Version 2 API.

Note: Amazon API Gateway Version 2 resources are used for creating and deploying WebSocket and HTTP APIs. To create and deploy REST APIs, use Amazon API Gateway Version 1 resources.

Example Usage

Basic WebSocket API

using System.Collections.Generic;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.ApiGatewayV2.Api("example", new()
    {
        ProtocolType = "WEBSOCKET",
        RouteSelectionExpression = "$request.body.action",
    });

});
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/apigatewayv2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := apigatewayv2.NewApi(ctx, "example", &apigatewayv2.ApiArgs{
			ProtocolType:             pulumi.String("WEBSOCKET"),
			RouteSelectionExpression: pulumi.String("$request.body.action"),
		})
		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.apigatewayv2.Api;
import com.pulumi.aws.apigatewayv2.ApiArgs;
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 example = new Api("example", ApiArgs.builder()        
            .protocolType("WEBSOCKET")
            .routeSelectionExpression("$request.body.action")
            .build());

    }
}
import pulumi
import pulumi_aws as aws

example = aws.apigatewayv2.Api("example",
    protocol_type="WEBSOCKET",
    route_selection_expression="$request.body.action")
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.apigatewayv2.Api("example", {
    protocolType: "WEBSOCKET",
    routeSelectionExpression: "$request.body.action",
});
resources:
  example:
    type: aws:apigatewayv2:Api
    properties:
      protocolType: WEBSOCKET
      routeSelectionExpression: $request.body.action

Basic HTTP API

using System.Collections.Generic;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.ApiGatewayV2.Api("example", new()
    {
        ProtocolType = "HTTP",
    });

});
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/apigatewayv2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := apigatewayv2.NewApi(ctx, "example", &apigatewayv2.ApiArgs{
			ProtocolType: pulumi.String("HTTP"),
		})
		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.apigatewayv2.Api;
import com.pulumi.aws.apigatewayv2.ApiArgs;
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 example = new Api("example", ApiArgs.builder()        
            .protocolType("HTTP")
            .build());

    }
}
import pulumi
import pulumi_aws as aws

example = aws.apigatewayv2.Api("example", protocol_type="HTTP")
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.apigatewayv2.Api("example", {protocolType: "HTTP"});
resources:
  example:
    type: aws:apigatewayv2:Api
    properties:
      protocolType: HTTP

Create Api Resource

new Api(name: string, args: ApiArgs, opts?: CustomResourceOptions);
@overload
def Api(resource_name: str,
        opts: Optional[ResourceOptions] = None,
        api_key_selection_expression: Optional[str] = None,
        body: Optional[str] = None,
        cors_configuration: Optional[ApiCorsConfigurationArgs] = None,
        credentials_arn: Optional[str] = None,
        description: Optional[str] = None,
        disable_execute_api_endpoint: Optional[bool] = None,
        fail_on_warnings: Optional[bool] = None,
        name: Optional[str] = None,
        protocol_type: Optional[str] = None,
        route_key: Optional[str] = None,
        route_selection_expression: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        target: Optional[str] = None,
        version: Optional[str] = None)
@overload
def Api(resource_name: str,
        args: ApiArgs,
        opts: Optional[ResourceOptions] = None)
func NewApi(ctx *Context, name string, args ApiArgs, opts ...ResourceOption) (*Api, error)
public Api(string name, ApiArgs args, CustomResourceOptions? opts = null)
public Api(String name, ApiArgs args)
public Api(String name, ApiArgs args, CustomResourceOptions options)
type: aws:apigatewayv2:Api
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args ApiArgs
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 ApiArgs
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 ApiArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ApiArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args ApiArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

ProtocolType string

API protocol. Valid values: HTTP, WEBSOCKET.

ApiKeySelectionExpression string

An API key selection expression. Valid values: $context.authorizer.usageIdentifierKey, $request.header.x-api-key. Defaults to $request.header.x-api-key. Applicable for WebSocket APIs.

Body string

An OpenAPI specification that defines the set of routes and integrations to create as part of the HTTP APIs. Supported only for HTTP APIs.

CorsConfiguration ApiCorsConfigurationArgs

Cross-origin resource sharing (CORS) configuration. Applicable for HTTP APIs.

CredentialsArn string

Part of quick create. Specifies any credentials required for the integration. Applicable for HTTP APIs.

Description string

Description of the API. Must be less than or equal to 1024 characters in length.

DisableExecuteApiEndpoint bool

Whether clients can invoke the API by using the default execute-api endpoint. By default, clients can invoke the API with the default {api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke the API, disable the default endpoint.

FailOnWarnings bool

Whether warnings should return an error while API Gateway is creating or updating the resource using an OpenAPI specification. Defaults to false. Applicable for HTTP APIs.

Name string

Name of the API. Must be less than or equal to 128 characters in length.

RouteKey string

Part of quick create. Specifies any route key. Applicable for HTTP APIs.

RouteSelectionExpression string

The route selection expression for the API. Defaults to $request.method $request.path.

Tags Dictionary<string, string>

Map of tags to assign to the API. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Target string

Part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Applicable for HTTP APIs.

Version string

Version identifier for the API. Must be between 1 and 64 characters in length.

ProtocolType string

API protocol. Valid values: HTTP, WEBSOCKET.

ApiKeySelectionExpression string

An API key selection expression. Valid values: $context.authorizer.usageIdentifierKey, $request.header.x-api-key. Defaults to $request.header.x-api-key. Applicable for WebSocket APIs.

Body string

An OpenAPI specification that defines the set of routes and integrations to create as part of the HTTP APIs. Supported only for HTTP APIs.

CorsConfiguration ApiCorsConfigurationArgs

Cross-origin resource sharing (CORS) configuration. Applicable for HTTP APIs.

CredentialsArn string

Part of quick create. Specifies any credentials required for the integration. Applicable for HTTP APIs.

Description string

Description of the API. Must be less than or equal to 1024 characters in length.

DisableExecuteApiEndpoint bool

Whether clients can invoke the API by using the default execute-api endpoint. By default, clients can invoke the API with the default {api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke the API, disable the default endpoint.

FailOnWarnings bool

Whether warnings should return an error while API Gateway is creating or updating the resource using an OpenAPI specification. Defaults to false. Applicable for HTTP APIs.

Name string

Name of the API. Must be less than or equal to 128 characters in length.

RouteKey string

Part of quick create. Specifies any route key. Applicable for HTTP APIs.

RouteSelectionExpression string

The route selection expression for the API. Defaults to $request.method $request.path.

Tags map[string]string

Map of tags to assign to the API. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Target string

Part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Applicable for HTTP APIs.

Version string

Version identifier for the API. Must be between 1 and 64 characters in length.

protocolType String

API protocol. Valid values: HTTP, WEBSOCKET.

apiKeySelectionExpression String

An API key selection expression. Valid values: $context.authorizer.usageIdentifierKey, $request.header.x-api-key. Defaults to $request.header.x-api-key. Applicable for WebSocket APIs.

body String

An OpenAPI specification that defines the set of routes and integrations to create as part of the HTTP APIs. Supported only for HTTP APIs.

corsConfiguration ApiCorsConfigurationArgs

Cross-origin resource sharing (CORS) configuration. Applicable for HTTP APIs.

credentialsArn String

Part of quick create. Specifies any credentials required for the integration. Applicable for HTTP APIs.

description String

Description of the API. Must be less than or equal to 1024 characters in length.

disableExecuteApiEndpoint Boolean

Whether clients can invoke the API by using the default execute-api endpoint. By default, clients can invoke the API with the default {api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke the API, disable the default endpoint.

failOnWarnings Boolean

Whether warnings should return an error while API Gateway is creating or updating the resource using an OpenAPI specification. Defaults to false. Applicable for HTTP APIs.

name String

Name of the API. Must be less than or equal to 128 characters in length.

routeKey String

Part of quick create. Specifies any route key. Applicable for HTTP APIs.

routeSelectionExpression String

The route selection expression for the API. Defaults to $request.method $request.path.

tags Map<String,String>

Map of tags to assign to the API. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

target String

Part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Applicable for HTTP APIs.

version String

Version identifier for the API. Must be between 1 and 64 characters in length.

protocolType string

API protocol. Valid values: HTTP, WEBSOCKET.

apiKeySelectionExpression string

An API key selection expression. Valid values: $context.authorizer.usageIdentifierKey, $request.header.x-api-key. Defaults to $request.header.x-api-key. Applicable for WebSocket APIs.

body string

An OpenAPI specification that defines the set of routes and integrations to create as part of the HTTP APIs. Supported only for HTTP APIs.

corsConfiguration ApiCorsConfigurationArgs

Cross-origin resource sharing (CORS) configuration. Applicable for HTTP APIs.

credentialsArn string

Part of quick create. Specifies any credentials required for the integration. Applicable for HTTP APIs.

description string

Description of the API. Must be less than or equal to 1024 characters in length.

disableExecuteApiEndpoint boolean

Whether clients can invoke the API by using the default execute-api endpoint. By default, clients can invoke the API with the default {api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke the API, disable the default endpoint.

failOnWarnings boolean

Whether warnings should return an error while API Gateway is creating or updating the resource using an OpenAPI specification. Defaults to false. Applicable for HTTP APIs.

name string

Name of the API. Must be less than or equal to 128 characters in length.

routeKey string

Part of quick create. Specifies any route key. Applicable for HTTP APIs.

routeSelectionExpression string

The route selection expression for the API. Defaults to $request.method $request.path.

tags {[key: string]: string}

Map of tags to assign to the API. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

target string

Part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Applicable for HTTP APIs.

version string

Version identifier for the API. Must be between 1 and 64 characters in length.

protocol_type str

API protocol. Valid values: HTTP, WEBSOCKET.

api_key_selection_expression str

An API key selection expression. Valid values: $context.authorizer.usageIdentifierKey, $request.header.x-api-key. Defaults to $request.header.x-api-key. Applicable for WebSocket APIs.

body str

An OpenAPI specification that defines the set of routes and integrations to create as part of the HTTP APIs. Supported only for HTTP APIs.

cors_configuration ApiCorsConfigurationArgs

Cross-origin resource sharing (CORS) configuration. Applicable for HTTP APIs.

credentials_arn str

Part of quick create. Specifies any credentials required for the integration. Applicable for HTTP APIs.

description str

Description of the API. Must be less than or equal to 1024 characters in length.

disable_execute_api_endpoint bool

Whether clients can invoke the API by using the default execute-api endpoint. By default, clients can invoke the API with the default {api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke the API, disable the default endpoint.

fail_on_warnings bool

Whether warnings should return an error while API Gateway is creating or updating the resource using an OpenAPI specification. Defaults to false. Applicable for HTTP APIs.

name str

Name of the API. Must be less than or equal to 128 characters in length.

route_key str

Part of quick create. Specifies any route key. Applicable for HTTP APIs.

route_selection_expression str

The route selection expression for the API. Defaults to $request.method $request.path.

tags Mapping[str, str]

Map of tags to assign to the API. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

target str

Part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Applicable for HTTP APIs.

version str

Version identifier for the API. Must be between 1 and 64 characters in length.

protocolType String

API protocol. Valid values: HTTP, WEBSOCKET.

apiKeySelectionExpression String

An API key selection expression. Valid values: $context.authorizer.usageIdentifierKey, $request.header.x-api-key. Defaults to $request.header.x-api-key. Applicable for WebSocket APIs.

body String

An OpenAPI specification that defines the set of routes and integrations to create as part of the HTTP APIs. Supported only for HTTP APIs.

corsConfiguration Property Map

Cross-origin resource sharing (CORS) configuration. Applicable for HTTP APIs.

credentialsArn String

Part of quick create. Specifies any credentials required for the integration. Applicable for HTTP APIs.

description String

Description of the API. Must be less than or equal to 1024 characters in length.

disableExecuteApiEndpoint Boolean

Whether clients can invoke the API by using the default execute-api endpoint. By default, clients can invoke the API with the default {api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke the API, disable the default endpoint.

failOnWarnings Boolean

Whether warnings should return an error while API Gateway is creating or updating the resource using an OpenAPI specification. Defaults to false. Applicable for HTTP APIs.

name String

Name of the API. Must be less than or equal to 128 characters in length.

routeKey String

Part of quick create. Specifies any route key. Applicable for HTTP APIs.

routeSelectionExpression String

The route selection expression for the API. Defaults to $request.method $request.path.

tags Map<String>

Map of tags to assign to the API. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

target String

Part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Applicable for HTTP APIs.

version String

Version identifier for the API. Must be between 1 and 64 characters in length.

Outputs

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

ApiEndpoint string

URI of the API, of the form https://{api-id}.execute-api.{region}.amazonaws.com for HTTP APIs and wss://{api-id}.execute-api.{region}.amazonaws.com for WebSocket APIs.

Arn string

ARN of the API.

ExecutionArn string

ARN prefix to be used in an aws.lambda.Permission's source_arn attribute or in an aws.iam.Policy to authorize access to the @connections API. See the Amazon API Gateway Developer Guide for details.

Id string

The provider-assigned unique ID for this managed resource.

TagsAll Dictionary<string, string>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

ApiEndpoint string

URI of the API, of the form https://{api-id}.execute-api.{region}.amazonaws.com for HTTP APIs and wss://{api-id}.execute-api.{region}.amazonaws.com for WebSocket APIs.

Arn string

ARN of the API.

ExecutionArn string

ARN prefix to be used in an aws.lambda.Permission's source_arn attribute or in an aws.iam.Policy to authorize access to the @connections API. See the Amazon API Gateway Developer Guide for details.

Id string

The provider-assigned unique ID for this managed resource.

TagsAll map[string]string

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

apiEndpoint String

URI of the API, of the form https://{api-id}.execute-api.{region}.amazonaws.com for HTTP APIs and wss://{api-id}.execute-api.{region}.amazonaws.com for WebSocket APIs.

arn String

ARN of the API.

executionArn String

ARN prefix to be used in an aws.lambda.Permission's source_arn attribute or in an aws.iam.Policy to authorize access to the @connections API. See the Amazon API Gateway Developer Guide for details.

id String

The provider-assigned unique ID for this managed resource.

tagsAll Map<String,String>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

apiEndpoint string

URI of the API, of the form https://{api-id}.execute-api.{region}.amazonaws.com for HTTP APIs and wss://{api-id}.execute-api.{region}.amazonaws.com for WebSocket APIs.

arn string

ARN of the API.

executionArn string

ARN prefix to be used in an aws.lambda.Permission's source_arn attribute or in an aws.iam.Policy to authorize access to the @connections API. See the Amazon API Gateway Developer Guide for details.

id string

The provider-assigned unique ID for this managed resource.

tagsAll {[key: string]: string}

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

api_endpoint str

URI of the API, of the form https://{api-id}.execute-api.{region}.amazonaws.com for HTTP APIs and wss://{api-id}.execute-api.{region}.amazonaws.com for WebSocket APIs.

arn str

ARN of the API.

execution_arn str

ARN prefix to be used in an aws.lambda.Permission's source_arn attribute or in an aws.iam.Policy to authorize access to the @connections API. See the Amazon API Gateway Developer Guide for details.

id str

The provider-assigned unique ID for this managed resource.

tags_all Mapping[str, str]

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

apiEndpoint String

URI of the API, of the form https://{api-id}.execute-api.{region}.amazonaws.com for HTTP APIs and wss://{api-id}.execute-api.{region}.amazonaws.com for WebSocket APIs.

arn String

ARN of the API.

executionArn String

ARN prefix to be used in an aws.lambda.Permission's source_arn attribute or in an aws.iam.Policy to authorize access to the @connections API. See the Amazon API Gateway Developer Guide for details.

id String

The provider-assigned unique ID for this managed resource.

tagsAll Map<String>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Look up Existing Api Resource

Get an existing Api 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?: ApiState, opts?: CustomResourceOptions): Api
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        api_endpoint: Optional[str] = None,
        api_key_selection_expression: Optional[str] = None,
        arn: Optional[str] = None,
        body: Optional[str] = None,
        cors_configuration: Optional[ApiCorsConfigurationArgs] = None,
        credentials_arn: Optional[str] = None,
        description: Optional[str] = None,
        disable_execute_api_endpoint: Optional[bool] = None,
        execution_arn: Optional[str] = None,
        fail_on_warnings: Optional[bool] = None,
        name: Optional[str] = None,
        protocol_type: Optional[str] = None,
        route_key: Optional[str] = None,
        route_selection_expression: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None,
        target: Optional[str] = None,
        version: Optional[str] = None) -> Api
func GetApi(ctx *Context, name string, id IDInput, state *ApiState, opts ...ResourceOption) (*Api, error)
public static Api Get(string name, Input<string> id, ApiState? state, CustomResourceOptions? opts = null)
public static Api get(String name, Output<String> id, ApiState 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:
ApiEndpoint string

URI of the API, of the form https://{api-id}.execute-api.{region}.amazonaws.com for HTTP APIs and wss://{api-id}.execute-api.{region}.amazonaws.com for WebSocket APIs.

ApiKeySelectionExpression string

An API key selection expression. Valid values: $context.authorizer.usageIdentifierKey, $request.header.x-api-key. Defaults to $request.header.x-api-key. Applicable for WebSocket APIs.

Arn string

ARN of the API.

Body string

An OpenAPI specification that defines the set of routes and integrations to create as part of the HTTP APIs. Supported only for HTTP APIs.

CorsConfiguration ApiCorsConfigurationArgs

Cross-origin resource sharing (CORS) configuration. Applicable for HTTP APIs.

CredentialsArn string

Part of quick create. Specifies any credentials required for the integration. Applicable for HTTP APIs.

Description string

Description of the API. Must be less than or equal to 1024 characters in length.

DisableExecuteApiEndpoint bool

Whether clients can invoke the API by using the default execute-api endpoint. By default, clients can invoke the API with the default {api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke the API, disable the default endpoint.

ExecutionArn string

ARN prefix to be used in an aws.lambda.Permission's source_arn attribute or in an aws.iam.Policy to authorize access to the @connections API. See the Amazon API Gateway Developer Guide for details.

FailOnWarnings bool

Whether warnings should return an error while API Gateway is creating or updating the resource using an OpenAPI specification. Defaults to false. Applicable for HTTP APIs.

Name string

Name of the API. Must be less than or equal to 128 characters in length.

ProtocolType string

API protocol. Valid values: HTTP, WEBSOCKET.

RouteKey string

Part of quick create. Specifies any route key. Applicable for HTTP APIs.

RouteSelectionExpression string

The route selection expression for the API. Defaults to $request.method $request.path.

Tags Dictionary<string, string>

Map of tags to assign to the API. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

TagsAll Dictionary<string, string>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Target string

Part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Applicable for HTTP APIs.

Version string

Version identifier for the API. Must be between 1 and 64 characters in length.

ApiEndpoint string

URI of the API, of the form https://{api-id}.execute-api.{region}.amazonaws.com for HTTP APIs and wss://{api-id}.execute-api.{region}.amazonaws.com for WebSocket APIs.

ApiKeySelectionExpression string

An API key selection expression. Valid values: $context.authorizer.usageIdentifierKey, $request.header.x-api-key. Defaults to $request.header.x-api-key. Applicable for WebSocket APIs.

Arn string

ARN of the API.

Body string

An OpenAPI specification that defines the set of routes and integrations to create as part of the HTTP APIs. Supported only for HTTP APIs.

CorsConfiguration ApiCorsConfigurationArgs

Cross-origin resource sharing (CORS) configuration. Applicable for HTTP APIs.

CredentialsArn string

Part of quick create. Specifies any credentials required for the integration. Applicable for HTTP APIs.

Description string

Description of the API. Must be less than or equal to 1024 characters in length.

DisableExecuteApiEndpoint bool

Whether clients can invoke the API by using the default execute-api endpoint. By default, clients can invoke the API with the default {api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke the API, disable the default endpoint.

ExecutionArn string

ARN prefix to be used in an aws.lambda.Permission's source_arn attribute or in an aws.iam.Policy to authorize access to the @connections API. See the Amazon API Gateway Developer Guide for details.

FailOnWarnings bool

Whether warnings should return an error while API Gateway is creating or updating the resource using an OpenAPI specification. Defaults to false. Applicable for HTTP APIs.

Name string

Name of the API. Must be less than or equal to 128 characters in length.

ProtocolType string

API protocol. Valid values: HTTP, WEBSOCKET.

RouteKey string

Part of quick create. Specifies any route key. Applicable for HTTP APIs.

RouteSelectionExpression string

The route selection expression for the API. Defaults to $request.method $request.path.

Tags map[string]string

Map of tags to assign to the API. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

TagsAll map[string]string

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Target string

Part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Applicable for HTTP APIs.

Version string

Version identifier for the API. Must be between 1 and 64 characters in length.

apiEndpoint String

URI of the API, of the form https://{api-id}.execute-api.{region}.amazonaws.com for HTTP APIs and wss://{api-id}.execute-api.{region}.amazonaws.com for WebSocket APIs.

apiKeySelectionExpression String

An API key selection expression. Valid values: $context.authorizer.usageIdentifierKey, $request.header.x-api-key. Defaults to $request.header.x-api-key. Applicable for WebSocket APIs.

arn String

ARN of the API.

body String

An OpenAPI specification that defines the set of routes and integrations to create as part of the HTTP APIs. Supported only for HTTP APIs.

corsConfiguration ApiCorsConfigurationArgs

Cross-origin resource sharing (CORS) configuration. Applicable for HTTP APIs.

credentialsArn String

Part of quick create. Specifies any credentials required for the integration. Applicable for HTTP APIs.

description String

Description of the API. Must be less than or equal to 1024 characters in length.

disableExecuteApiEndpoint Boolean

Whether clients can invoke the API by using the default execute-api endpoint. By default, clients can invoke the API with the default {api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke the API, disable the default endpoint.

executionArn String

ARN prefix to be used in an aws.lambda.Permission's source_arn attribute or in an aws.iam.Policy to authorize access to the @connections API. See the Amazon API Gateway Developer Guide for details.

failOnWarnings Boolean

Whether warnings should return an error while API Gateway is creating or updating the resource using an OpenAPI specification. Defaults to false. Applicable for HTTP APIs.

name String

Name of the API. Must be less than or equal to 128 characters in length.

protocolType String

API protocol. Valid values: HTTP, WEBSOCKET.

routeKey String

Part of quick create. Specifies any route key. Applicable for HTTP APIs.

routeSelectionExpression String

The route selection expression for the API. Defaults to $request.method $request.path.

tags Map<String,String>

Map of tags to assign to the API. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll Map<String,String>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

target String

Part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Applicable for HTTP APIs.

version String

Version identifier for the API. Must be between 1 and 64 characters in length.

apiEndpoint string

URI of the API, of the form https://{api-id}.execute-api.{region}.amazonaws.com for HTTP APIs and wss://{api-id}.execute-api.{region}.amazonaws.com for WebSocket APIs.

apiKeySelectionExpression string

An API key selection expression. Valid values: $context.authorizer.usageIdentifierKey, $request.header.x-api-key. Defaults to $request.header.x-api-key. Applicable for WebSocket APIs.

arn string

ARN of the API.

body string

An OpenAPI specification that defines the set of routes and integrations to create as part of the HTTP APIs. Supported only for HTTP APIs.

corsConfiguration ApiCorsConfigurationArgs

Cross-origin resource sharing (CORS) configuration. Applicable for HTTP APIs.

credentialsArn string

Part of quick create. Specifies any credentials required for the integration. Applicable for HTTP APIs.

description string

Description of the API. Must be less than or equal to 1024 characters in length.

disableExecuteApiEndpoint boolean

Whether clients can invoke the API by using the default execute-api endpoint. By default, clients can invoke the API with the default {api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke the API, disable the default endpoint.

executionArn string

ARN prefix to be used in an aws.lambda.Permission's source_arn attribute or in an aws.iam.Policy to authorize access to the @connections API. See the Amazon API Gateway Developer Guide for details.

failOnWarnings boolean

Whether warnings should return an error while API Gateway is creating or updating the resource using an OpenAPI specification. Defaults to false. Applicable for HTTP APIs.

name string

Name of the API. Must be less than or equal to 128 characters in length.

protocolType string

API protocol. Valid values: HTTP, WEBSOCKET.

routeKey string

Part of quick create. Specifies any route key. Applicable for HTTP APIs.

routeSelectionExpression string

The route selection expression for the API. Defaults to $request.method $request.path.

tags {[key: string]: string}

Map of tags to assign to the API. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll {[key: string]: string}

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

target string

Part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Applicable for HTTP APIs.

version string

Version identifier for the API. Must be between 1 and 64 characters in length.

api_endpoint str

URI of the API, of the form https://{api-id}.execute-api.{region}.amazonaws.com for HTTP APIs and wss://{api-id}.execute-api.{region}.amazonaws.com for WebSocket APIs.

api_key_selection_expression str

An API key selection expression. Valid values: $context.authorizer.usageIdentifierKey, $request.header.x-api-key. Defaults to $request.header.x-api-key. Applicable for WebSocket APIs.

arn str

ARN of the API.

body str

An OpenAPI specification that defines the set of routes and integrations to create as part of the HTTP APIs. Supported only for HTTP APIs.

cors_configuration ApiCorsConfigurationArgs

Cross-origin resource sharing (CORS) configuration. Applicable for HTTP APIs.

credentials_arn str

Part of quick create. Specifies any credentials required for the integration. Applicable for HTTP APIs.

description str

Description of the API. Must be less than or equal to 1024 characters in length.

disable_execute_api_endpoint bool

Whether clients can invoke the API by using the default execute-api endpoint. By default, clients can invoke the API with the default {api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke the API, disable the default endpoint.

execution_arn str

ARN prefix to be used in an aws.lambda.Permission's source_arn attribute or in an aws.iam.Policy to authorize access to the @connections API. See the Amazon API Gateway Developer Guide for details.

fail_on_warnings bool

Whether warnings should return an error while API Gateway is creating or updating the resource using an OpenAPI specification. Defaults to false. Applicable for HTTP APIs.

name str

Name of the API. Must be less than or equal to 128 characters in length.

protocol_type str

API protocol. Valid values: HTTP, WEBSOCKET.

route_key str

Part of quick create. Specifies any route key. Applicable for HTTP APIs.

route_selection_expression str

The route selection expression for the API. Defaults to $request.method $request.path.

tags Mapping[str, str]

Map of tags to assign to the API. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tags_all Mapping[str, str]

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

target str

Part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Applicable for HTTP APIs.

version str

Version identifier for the API. Must be between 1 and 64 characters in length.

apiEndpoint String

URI of the API, of the form https://{api-id}.execute-api.{region}.amazonaws.com for HTTP APIs and wss://{api-id}.execute-api.{region}.amazonaws.com for WebSocket APIs.

apiKeySelectionExpression String

An API key selection expression. Valid values: $context.authorizer.usageIdentifierKey, $request.header.x-api-key. Defaults to $request.header.x-api-key. Applicable for WebSocket APIs.

arn String

ARN of the API.

body String

An OpenAPI specification that defines the set of routes and integrations to create as part of the HTTP APIs. Supported only for HTTP APIs.

corsConfiguration Property Map

Cross-origin resource sharing (CORS) configuration. Applicable for HTTP APIs.

credentialsArn String

Part of quick create. Specifies any credentials required for the integration. Applicable for HTTP APIs.

description String

Description of the API. Must be less than or equal to 1024 characters in length.

disableExecuteApiEndpoint Boolean

Whether clients can invoke the API by using the default execute-api endpoint. By default, clients can invoke the API with the default {api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke the API, disable the default endpoint.

executionArn String

ARN prefix to be used in an aws.lambda.Permission's source_arn attribute or in an aws.iam.Policy to authorize access to the @connections API. See the Amazon API Gateway Developer Guide for details.

failOnWarnings Boolean

Whether warnings should return an error while API Gateway is creating or updating the resource using an OpenAPI specification. Defaults to false. Applicable for HTTP APIs.

name String

Name of the API. Must be less than or equal to 128 characters in length.

protocolType String

API protocol. Valid values: HTTP, WEBSOCKET.

routeKey String

Part of quick create. Specifies any route key. Applicable for HTTP APIs.

routeSelectionExpression String

The route selection expression for the API. Defaults to $request.method $request.path.

tags Map<String>

Map of tags to assign to the API. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll Map<String>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

target String

Part of quick create. Quick create produces an API with an integration, a default catch-all route, and a default stage which is configured to automatically deploy changes. For HTTP integrations, specify a fully qualified URL. For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively. Applicable for HTTP APIs.

version String

Version identifier for the API. Must be between 1 and 64 characters in length.

Supporting Types

ApiCorsConfiguration

AllowCredentials bool

Whether credentials are included in the CORS request.

AllowHeaders List<string>

Set of allowed HTTP headers.

AllowMethods List<string>

Set of allowed HTTP methods.

AllowOrigins List<string>

Set of allowed origins.

ExposeHeaders List<string>

Set of exposed HTTP headers.

MaxAge int

Number of seconds that the browser should cache preflight request results.

AllowCredentials bool

Whether credentials are included in the CORS request.

AllowHeaders []string

Set of allowed HTTP headers.

AllowMethods []string

Set of allowed HTTP methods.

AllowOrigins []string

Set of allowed origins.

ExposeHeaders []string

Set of exposed HTTP headers.

MaxAge int

Number of seconds that the browser should cache preflight request results.

allowCredentials Boolean

Whether credentials are included in the CORS request.

allowHeaders List<String>

Set of allowed HTTP headers.

allowMethods List<String>

Set of allowed HTTP methods.

allowOrigins List<String>

Set of allowed origins.

exposeHeaders List<String>

Set of exposed HTTP headers.

maxAge Integer

Number of seconds that the browser should cache preflight request results.

allowCredentials boolean

Whether credentials are included in the CORS request.

allowHeaders string[]

Set of allowed HTTP headers.

allowMethods string[]

Set of allowed HTTP methods.

allowOrigins string[]

Set of allowed origins.

exposeHeaders string[]

Set of exposed HTTP headers.

maxAge number

Number of seconds that the browser should cache preflight request results.

allow_credentials bool

Whether credentials are included in the CORS request.

allow_headers Sequence[str]

Set of allowed HTTP headers.

allow_methods Sequence[str]

Set of allowed HTTP methods.

allow_origins Sequence[str]

Set of allowed origins.

expose_headers Sequence[str]

Set of exposed HTTP headers.

max_age int

Number of seconds that the browser should cache preflight request results.

allowCredentials Boolean

Whether credentials are included in the CORS request.

allowHeaders List<String>

Set of allowed HTTP headers.

allowMethods List<String>

Set of allowed HTTP methods.

allowOrigins List<String>

Set of allowed origins.

exposeHeaders List<String>

Set of exposed HTTP headers.

maxAge Number

Number of seconds that the browser should cache preflight request results.

Import

aws_apigatewayv2_api can be imported by using the API identifier, e.g.,

 $ pulumi import aws:apigatewayv2/api:Api example aabbccddee

Package Details

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

This Pulumi package is based on the aws Terraform Provider.