Site

class Site : KotlinCustomResource

Creates a site in a global network.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.networkmanager.GlobalNetwork;
import com.pulumi.aws.networkmanager.Site;
import com.pulumi.aws.networkmanager.SiteArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleGlobalNetwork = new GlobalNetwork("exampleGlobalNetwork");
var exampleSite = new Site("exampleSite", SiteArgs.builder()
.globalNetworkId(exampleGlobalNetwork.id())
.build());
}
}

Import

aws_networkmanager_site can be imported using the site ARN, e.g.

$ pulumi import aws:networkmanager/site:Site example arn:aws:networkmanager::123456789012:site/global-network-0d47f6t230mz46dy4/site-444555aaabbb11223

Properties

Link copied to clipboard
val arn: Output<String>

Site Amazon Resource Name (ARN)

Link copied to clipboard
val description: Output<String>?

Description of the Site.

Link copied to clipboard
val globalNetworkId: Output<String>

The ID of the Global Network to create the site in.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val location: Output<SiteLocation>?

The site location as documented below.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tags: Output<Map<String, String>>?

Key-value tags for the Site. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val urn: Output<String>