@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)
36 lines (35 loc) • 1.11 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Represents a deployment resource of an AWS Mainframe Modernization (M2) application to a specified environment
*/
export declare function getDeployment(args: GetDeploymentArgs, opts?: pulumi.InvokeOptions): Promise<GetDeploymentResult>;
export interface GetDeploymentArgs {
/**
* The application ID.
*/
applicationId: string;
}
export interface GetDeploymentResult {
/**
* The version number of the application to deploy
*/
readonly applicationVersion?: number;
/**
* The deployment ID.
*/
readonly deploymentId?: string;
/**
* The status of the deployment.
*/
readonly status?: string;
}
/**
* Represents a deployment resource of an AWS Mainframe Modernization (M2) application to a specified environment
*/
export declare function getDeploymentOutput(args: GetDeploymentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDeploymentResult>;
export interface GetDeploymentOutputArgs {
/**
* The application ID.
*/
applicationId: pulumi.Input<string>;
}