AttachmentAccepter

class AttachmentAccepter : KotlinCustomResource

Resource for managing an AWS NetworkManager Attachment Accepter.

Example Usage

Example with VPC attachment

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.networkmanager.AttachmentAccepter;
import com.pulumi.aws.networkmanager.AttachmentAccepterArgs;
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 test = new AttachmentAccepter("test", AttachmentAccepterArgs.builder()
.attachmentId(aws_networkmanager_vpc_attachment.vpc().id())
.attachmentType(aws_networkmanager_vpc_attachment.vpc().attachment_type())
.build());
}
}

Example with site-to-site VPN attachment

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.networkmanager.AttachmentAccepter;
import com.pulumi.aws.networkmanager.AttachmentAccepterArgs;
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 test = new AttachmentAccepter("test", AttachmentAccepterArgs.builder()
.attachmentId(aws_networkmanager_site_to_site_vpn_attachment.vpn().id())
.attachmentType(aws_networkmanager_site_to_site_vpn_attachment.vpn().attachment_type())
.build());
}
}

Properties

Link copied to clipboard
val attachmentId: Output<String>

The ID of the attachment.

Link copied to clipboard

The policy rule number associated with the attachment.

Link copied to clipboard
val attachmentType: Output<String>

The type of attachment. Valid values can be found in the AWS Documentation

Link copied to clipboard
val coreNetworkArn: Output<String>

The ARN of a core network.

Link copied to clipboard
val coreNetworkId: Output<String>

The id of a core network.

Link copied to clipboard
val edgeLocation: Output<String>

The Region where the edge is located.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val ownerAccountId: Output<String>

The ID of the attachment account owner.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val resourceArn: Output<String>

The attachment resource ARN.

Link copied to clipboard
val segmentName: Output<String>

The name of the segment attachment.

Link copied to clipboard
val state: Output<String>

The state of the attachment.

Link copied to clipboard
val urn: Output<String>