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)

49 lines (48 loc) 1.33 kB
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<GetDeploymentResult>; 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<GetDeploymentResult>; export interface GetDeploymentOutputArgs { /** * The application ID. */ applicationId: pulumi.Input<string>; /** * The sequence number of the deployment. */ deploymentNumber: pulumi.Input<string>; /** * The environment ID. */ environmentId: pulumi.Input<string>; }