UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

81 lines (80 loc) 4.62 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * The ``AWS::ApiGateway::RestApi`` resource creates a REST API. For more information, see [restapi:create](https://docs.aws.amazon.com/apigateway/latest/api/API_CreateRestApi.html) in the *Amazon API Gateway REST API Reference*. * On January 1, 2016, the Swagger Specification was donated to the [OpenAPI initiative](https://docs.aws.amazon.com/https://www.openapis.org/), becoming the foundation of the OpenAPI Specification. */ export declare function getRestApi(args: GetRestApiArgs, opts?: pulumi.InvokeOptions): Promise<GetRestApiResult>; export interface GetRestApiArgs { /** * The string identifier of the associated RestApi. */ restApiId: string; } export interface GetRestApiResult { /** * The source of the API key for metering requests according to a usage plan. Valid values are: `HEADER` to read the API key from the `X-API-Key` header of a request. `AUTHORIZER` to read the API key from the `UsageIdentifierKey` from a custom authorizer. */ readonly apiKeySourceType?: string; /** * The list of binary media types supported by the RestApi. By default, the RestApi supports only UTF-8-encoded text payloads. */ readonly binaryMediaTypes?: string[]; /** * The description of the RestApi. */ readonly description?: string; /** * Specifies whether clients can invoke your API by using the default `execute-api` endpoint. By default, clients can invoke your API with the default `https://{api_id}.execute-api.{region}.amazonaws.com` endpoint. To require that clients use a custom domain name to invoke your API, disable the default endpoint */ readonly disableExecuteApiEndpoint?: boolean; /** * The endpoint access mode for your RestApi. */ readonly endpointAccessMode?: string; /** * A list of the endpoint types and IP address types of the API. Use this property when creating an API. When importing an existing API, specify the endpoint configuration types using the ``Parameters`` property. */ readonly endpointConfiguration?: outputs.apigateway.RestApiEndpointConfiguration; /** * A nullable integer that is used to enable compression (with non-negative between 0 and 10485760 (10M) bytes, inclusive) or disable compression (with a null value) on an API. When compression is enabled, compression or decompression is not applied on the payload if the payload size is smaller than this value. Setting it to zero allows compression for any payload size. */ readonly minimumCompressionSize?: number; /** * The name of the RestApi. A name is required if the REST API is not based on an OpenAPI specification. */ readonly name?: string; /** * A policy document that contains the permissions for the ``RestApi`` resource. To set the ARN for the policy, use the ``!Join`` intrinsic function with ``""`` as delimiter and values of ``"execute-api:/"`` and ``"*"``. * * Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::ApiGateway::RestApi` for more information about the expected schema for this property. */ readonly policy?: any; /** * The string identifier of the associated RestApi. */ readonly restApiId?: string; /** * The root resource ID for a `RestApi` resource, such as `a0bc123d4e` . */ readonly rootResourceId?: string; /** * The Transport Layer Security (TLS) version + cipher suite for this RestApi. */ readonly securityPolicy?: string; /** * The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with `aws:` . The tag value can be up to 256 characters. */ readonly tags?: outputs.Tag[]; } /** * The ``AWS::ApiGateway::RestApi`` resource creates a REST API. For more information, see [restapi:create](https://docs.aws.amazon.com/apigateway/latest/api/API_CreateRestApi.html) in the *Amazon API Gateway REST API Reference*. * On January 1, 2016, the Swagger Specification was donated to the [OpenAPI initiative](https://docs.aws.amazon.com/https://www.openapis.org/), becoming the foundation of the OpenAPI Specification. */ export declare function getRestApiOutput(args: GetRestApiOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRestApiResult>; export interface GetRestApiOutputArgs { /** * The string identifier of the associated RestApi. */ restApiId: pulumi.Input<string>; }