@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)
60 lines (59 loc) • 2.03 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Definition of AWS::ControlTower::LandingZone Resource Type
*/
export declare function getLandingZone(args: GetLandingZoneArgs, opts?: pulumi.InvokeOptions): Promise<GetLandingZoneResult>;
export interface GetLandingZoneArgs {
/**
* The unique identifier of the landing zone.
*/
landingZoneIdentifier: string;
}
export interface GetLandingZoneResult {
/**
* The ARN of the landing zone.
*/
readonly arn?: string;
/**
* The drift status of the landing zone.
*/
readonly driftStatus?: enums.controltower.LandingZoneDriftStatus;
/**
* The unique identifier of the landing zone.
*/
readonly landingZoneIdentifier?: string;
/**
* The latest available version of the landing zone.
*/
readonly latestAvailableVersion?: string;
/**
* The landing zone manifest JSON text file that specifies the landing zone configurations.
*
* Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::ControlTower::LandingZone` for more information about the expected schema for this property.
*/
readonly manifest?: any;
/**
* The landing zone deployment status. One of `ACTIVE` , `PROCESSING` , `FAILED` .
*/
readonly status?: enums.controltower.LandingZoneStatus;
/**
* Tags to be applied to the landing zone.
*/
readonly tags?: outputs.Tag[];
/**
* The landing zone's current deployed version.
*/
readonly version?: string;
}
/**
* Definition of AWS::ControlTower::LandingZone Resource Type
*/
export declare function getLandingZoneOutput(args: GetLandingZoneOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLandingZoneResult>;
export interface GetLandingZoneOutputArgs {
/**
* The unique identifier of the landing zone.
*/
landingZoneIdentifier: pulumi.Input<string>;
}