import * as pulumi from "@pulumi/pulumi"; /** * The ``AWS::ApiGateway::Deployment`` resource deploys an API Gateway ``RestApi`` resource to a stage so that clients can call the API over the internet. The stage acts as an environment. */ export declare function getDeployment(args: GetDeploymentArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDeploymentArgs { /** * The ID for the deployment. For example: `abc123` . */ deploymentId: string; /** * The string identifier of the associated RestApi. */ restApiId: string; } export interface GetDeploymentResult { /** * The ID for the deployment. For example: `abc123` . */ readonly deploymentId?: string; /** * The description for the Deployment resource to create. */ readonly description?: string; } /** * The ``AWS::ApiGateway::Deployment`` resource deploys an API Gateway ``RestApi`` resource to a stage so that clients can call the API over the internet. The stage acts as an environment. */ export declare function getDeploymentOutput(args: GetDeploymentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetDeploymentOutputArgs { /** * The ID for the deployment. For example: `abc123` . */ deploymentId: pulumi.Input; /** * The string identifier of the associated RestApi. */ restApiId: pulumi.Input; }