import * as pulumi from "@pulumi/pulumi"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::AppConfig::Deployment */ export declare function getDeployment(args: GetDeploymentArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDeploymentArgs { /** * The application ID. */ applicationId: string; /** * The sequence number of the deployment. */ deploymentNumber: string; /** * The environment ID. */ environmentId: string; } export interface GetDeploymentResult { /** * The sequence number of the deployment. */ readonly deploymentNumber?: string; /** * The state of the deployment. */ readonly state?: enums.appconfig.DeploymentState; } /** * Resource Type definition for AWS::AppConfig::Deployment */ export declare function getDeploymentOutput(args: GetDeploymentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetDeploymentOutputArgs { /** * The application ID. */ applicationId: pulumi.Input; /** * The sequence number of the deployment. */ deploymentNumber: pulumi.Input; /** * The environment ID. */ environmentId: pulumi.Input; }