com.pulumi.aws.controltower.LandingZone Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.controltower;
import com.pulumi.aws.Utilities;
import com.pulumi.aws.controltower.LandingZoneArgs;
import com.pulumi.aws.controltower.inputs.LandingZoneState;
import com.pulumi.aws.controltower.outputs.LandingZoneDriftStatus;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Creates a new landing zone using Control Tower. For more information on usage, please see the
* [AWS Control Tower Landing Zone User Guide](https://docs.aws.amazon.com/controltower/latest/userguide/how-control-tower-works.html).
*
* ## Import
*
* Using `pulumi import`, import a Control Tower Landing Zone using the `id`. For example:
*
* ```sh
* $ pulumi import aws:controltower/landingZone:LandingZone example 1A2B3C4D5E6F7G8H
* ```
*
*/
@ResourceType(type="aws:controltower/landingZone:LandingZone")
public class LandingZone extends com.pulumi.resources.CustomResource {
/**
* The ARN of the landing zone.
*
*/
@Export(name="arn", refs={String.class}, tree="[0]")
private Output arn;
/**
* @return The ARN of the landing zone.
*
*/
public Output arn() {
return this.arn;
}
/**
* The drift status summary of the landing zone.
*
*/
@Export(name="driftStatuses", refs={List.class,LandingZoneDriftStatus.class}, tree="[0,1]")
private Output> driftStatuses;
/**
* @return The drift status summary of the landing zone.
*
*/
public Output> driftStatuses() {
return this.driftStatuses;
}
/**
* The latest available version of the landing zone.
*
*/
@Export(name="latestAvailableVersion", refs={String.class}, tree="[0]")
private Output latestAvailableVersion;
/**
* @return The latest available version of the landing zone.
*
*/
public Output latestAvailableVersion() {
return this.latestAvailableVersion;
}
/**
* The manifest JSON file is a text file that describes your AWS resources. For examples, review [Launch your landing zone](https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch).
*
*/
@Export(name="manifestJson", refs={String.class}, tree="[0]")
private Output manifestJson;
/**
* @return The manifest JSON file is a text file that describes your AWS resources. For examples, review [Launch your landing zone](https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch).
*
*/
public Output manifestJson() {
return this.manifestJson;
}
/**
* Tags to apply to the landing zone. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
*
*/
@Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]")
private Output* @Nullable */ Map> tags;
/**
* @return Tags to apply to the landing zone. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
*
*/
public Output>> tags() {
return Codegen.optional(this.tags);
}
/**
* A map of tags assigned to the landing zone, including those inherited from the provider `default_tags` configuration block.
*
* @deprecated
* Please use `tags` instead.
*
*/
@Deprecated /* Please use `tags` instead. */
@Export(name="tagsAll", refs={Map.class,String.class}, tree="[0,1,1]")
private Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy