@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)
54 lines (53 loc) • 1.54 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Definition of AWS::LaunchWizard::Deployment Resource Type
*/
export declare function getDeployment(args: GetDeploymentArgs, opts?: pulumi.InvokeOptions): Promise<GetDeploymentResult>;
export interface GetDeploymentArgs {
/**
* ARN of the LaunchWizard deployment
*/
arn: string;
}
export interface GetDeploymentResult {
/**
* ARN of the LaunchWizard deployment
*/
readonly arn?: string;
/**
* Timestamp of LaunchWizard deployment creation
*/
readonly createdAt?: string;
/**
* Timestamp of LaunchWizard deployment deletion
*/
readonly deletedAt?: string;
/**
* Deployment ID of the LaunchWizard deployment
*/
readonly deploymentId?: string;
/**
* Resource Group Name created for LaunchWizard deployment
*/
readonly resourceGroup?: string;
/**
* Status of LaunchWizard deployment
*/
readonly status?: enums.launchwizard.DeploymentStatus;
/**
* Tags for LaunchWizard deployment
*/
readonly tags?: outputs.Tag[];
}
/**
* Definition of AWS::LaunchWizard::Deployment Resource Type
*/
export declare function getDeploymentOutput(args: GetDeploymentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDeploymentResult>;
export interface GetDeploymentOutputArgs {
/**
* ARN of the LaunchWizard deployment
*/
arn: pulumi.Input<string>;
}