com.pulumi.aws.globalaccelerator.CrossAccountAttachment 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.
The newest version!
// *** 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.globalaccelerator;
import com.pulumi.aws.Utilities;
import com.pulumi.aws.globalaccelerator.CrossAccountAttachmentArgs;
import com.pulumi.aws.globalaccelerator.inputs.CrossAccountAttachmentState;
import com.pulumi.aws.globalaccelerator.outputs.CrossAccountAttachmentResource;
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;
/**
* Resource for managing an AWS Global Accelerator Cross Account Attachment.
*
* ## Example Usage
*
* ### Basic Usage
*
* <!--Start PulumiCodeChooser -->
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.aws.globalaccelerator.CrossAccountAttachment;
* import com.pulumi.aws.globalaccelerator.CrossAccountAttachmentArgs;
* 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 example = new CrossAccountAttachment("example", CrossAccountAttachmentArgs.builder()
* .name("example-cross-account-attachment")
* .build());
*
* }
* }
* }
*
* <!--End PulumiCodeChooser -->
*
* ### Usage with Optional Arguments
*
* <!--Start PulumiCodeChooser -->
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.aws.globalaccelerator.CrossAccountAttachment;
* import com.pulumi.aws.globalaccelerator.CrossAccountAttachmentArgs;
* import com.pulumi.aws.globalaccelerator.inputs.CrossAccountAttachmentResourceArgs;
* 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 example = new CrossAccountAttachment("example", CrossAccountAttachmentArgs.builder()
* .name("example-cross-account-attachment")
* .principals("123456789012")
* .resources(CrossAccountAttachmentResourceArgs.builder()
* .endpointId("arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188")
* .region("us-west-2")
* .build())
* .build());
*
* }
* }
* }
*
* <!--End PulumiCodeChooser -->
*
* ## Import
*
* Using `pulumi import`, import Global Accelerator Cross Account Attachment using the `example_id_arg`. For example:
*
* ```sh
* $ pulumi import aws:globalaccelerator/crossAccountAttachment:CrossAccountAttachment example arn:aws:globalaccelerator::012345678910:attachment/01234567-abcd-8910-efgh-123456789012
* ```
*
*/
@ResourceType(type="aws:globalaccelerator/crossAccountAttachment:CrossAccountAttachment")
public class CrossAccountAttachment extends com.pulumi.resources.CustomResource {
/**
* ARN of the Cross Account Attachment.
*
*/
@Export(name="arn", refs={String.class}, tree="[0]")
private Output arn;
/**
* @return ARN of the Cross Account Attachment.
*
*/
public Output arn() {
return this.arn;
}
/**
* Creation Time when the Cross Account Attachment.
*
*/
@Export(name="createdTime", refs={String.class}, tree="[0]")
private Output createdTime;
/**
* @return Creation Time when the Cross Account Attachment.
*
*/
public Output createdTime() {
return this.createdTime;
}
/**
* Last modified time of the Cross Account Attachment.
*
*/
@Export(name="lastModifiedTime", refs={String.class}, tree="[0]")
private Output lastModifiedTime;
/**
* @return Last modified time of the Cross Account Attachment.
*
*/
public Output lastModifiedTime() {
return this.lastModifiedTime;
}
/**
* Name of the Cross Account Attachment.
*
* The following arguments are optional:
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return Name of the Cross Account Attachment.
*
* The following arguments are optional:
*
*/
public Output name() {
return this.name;
}
/**
* List of AWS account IDs that are allowed to associate resources with the accelerator.
*
*/
@Export(name="principals", refs={List.class,String.class}, tree="[0,1]")
private Output* @Nullable */ List> principals;
/**
* @return List of AWS account IDs that are allowed to associate resources with the accelerator.
*
*/
public Output>> principals() {
return Codegen.optional(this.principals);
}
/**
* List of resources to be associated with the accelerator.
*
*/
@Export(name="resources", refs={List.class,CrossAccountAttachmentResource.class}, tree="[0,1]")
private Output* @Nullable */ List> resources;
/**
* @return List of resources to be associated with the accelerator.
*
*/
public Output>> resources() {
return Codegen.optional(this.resources);
}
/**
* A map of tags to assign to the resource. 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 A map of tags to assign to the resource. 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 resource, 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