aws.networkmanager.ConnectAttachment
Explore with Pulumi AI
Resource for managing an AWS Network Manager ConnectAttachment.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.networkmanager.VpcAttachment("example", {
    subnetArns: exampleAwsSubnet.map(__item => __item.arn),
    coreNetworkId: exampleAwsccNetworkmanagerCoreNetwork.id,
    vpcArn: exampleAwsVpc.arn,
});
const exampleConnectAttachment = new aws.networkmanager.ConnectAttachment("example", {
    coreNetworkId: exampleAwsccNetworkmanagerCoreNetwork.id,
    transportAttachmentId: example.id,
    edgeLocation: example.edgeLocation,
    options: {
        protocol: "GRE",
    },
});
import pulumi
import pulumi_aws as aws
example = aws.networkmanager.VpcAttachment("example",
    subnet_arns=[__item["arn"] for __item in example_aws_subnet],
    core_network_id=example_awscc_networkmanager_core_network["id"],
    vpc_arn=example_aws_vpc["arn"])
example_connect_attachment = aws.networkmanager.ConnectAttachment("example",
    core_network_id=example_awscc_networkmanager_core_network["id"],
    transport_attachment_id=example.id,
    edge_location=example.edge_location,
    options={
        "protocol": "GRE",
    })
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/networkmanager"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
var splat0 []interface{}
for _, val0 := range exampleAwsSubnet {
splat0 = append(splat0, val0.Arn)
}
example, err := networkmanager.NewVpcAttachment(ctx, "example", &networkmanager.VpcAttachmentArgs{
SubnetArns: toPulumiArray(splat0),
CoreNetworkId: pulumi.Any(exampleAwsccNetworkmanagerCoreNetwork.Id),
VpcArn: pulumi.Any(exampleAwsVpc.Arn),
})
if err != nil {
return err
}
_, err = networkmanager.NewConnectAttachment(ctx, "example", &networkmanager.ConnectAttachmentArgs{
CoreNetworkId: pulumi.Any(exampleAwsccNetworkmanagerCoreNetwork.Id),
TransportAttachmentId: example.ID(),
EdgeLocation: example.EdgeLocation,
Options: &networkmanager.ConnectAttachmentOptionsArgs{
Protocol: pulumi.String("GRE"),
},
})
if err != nil {
return err
}
return nil
})
}
func toPulumiArray(arr []) pulumi.Array {
var pulumiArr pulumi.Array
for _, v := range arr {
pulumiArr = append(pulumiArr, pulumi.(v))
}
return pulumiArr
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() => 
{
    var example = new Aws.NetworkManager.VpcAttachment("example", new()
    {
        SubnetArns = exampleAwsSubnet.Select(__item => __item.Arn).ToList(),
        CoreNetworkId = exampleAwsccNetworkmanagerCoreNetwork.Id,
        VpcArn = exampleAwsVpc.Arn,
    });
    var exampleConnectAttachment = new Aws.NetworkManager.ConnectAttachment("example", new()
    {
        CoreNetworkId = exampleAwsccNetworkmanagerCoreNetwork.Id,
        TransportAttachmentId = example.Id,
        EdgeLocation = example.EdgeLocation,
        Options = new Aws.NetworkManager.Inputs.ConnectAttachmentOptionsArgs
        {
            Protocol = "GRE",
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.networkmanager.VpcAttachment;
import com.pulumi.aws.networkmanager.VpcAttachmentArgs;
import com.pulumi.aws.networkmanager.ConnectAttachment;
import com.pulumi.aws.networkmanager.ConnectAttachmentArgs;
import com.pulumi.aws.networkmanager.inputs.ConnectAttachmentOptionsArgs;
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 VpcAttachment("example", VpcAttachmentArgs.builder()
            .subnetArns(exampleAwsSubnet.stream().map(element -> element.arn()).collect(toList()))
            .coreNetworkId(exampleAwsccNetworkmanagerCoreNetwork.id())
            .vpcArn(exampleAwsVpc.arn())
            .build());
        var exampleConnectAttachment = new ConnectAttachment("exampleConnectAttachment", ConnectAttachmentArgs.builder()
            .coreNetworkId(exampleAwsccNetworkmanagerCoreNetwork.id())
            .transportAttachmentId(example.id())
            .edgeLocation(example.edgeLocation())
            .options(ConnectAttachmentOptionsArgs.builder()
                .protocol("GRE")
                .build())
            .build());
    }
}
Coming soon!
Usage with attachment accepter
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.networkmanager.VpcAttachment("example", {
    subnetArns: exampleAwsSubnet.map(__item => __item.arn),
    coreNetworkId: exampleAwsccNetworkmanagerCoreNetwork.id,
    vpcArn: exampleAwsVpc.arn,
});
const exampleAttachmentAccepter = new aws.networkmanager.AttachmentAccepter("example", {
    attachmentId: example.id,
    attachmentType: example.attachmentType,
});
const exampleConnectAttachment = new aws.networkmanager.ConnectAttachment("example", {
    coreNetworkId: exampleAwsccNetworkmanagerCoreNetwork.id,
    transportAttachmentId: example.id,
    edgeLocation: example.edgeLocation,
    options: {
        protocol: "GRE",
    },
}, {
    dependsOn: [test],
});
const example2 = new aws.networkmanager.AttachmentAccepter("example2", {
    attachmentId: exampleConnectAttachment.id,
    attachmentType: exampleConnectAttachment.attachmentType,
});
import pulumi
import pulumi_aws as aws
example = aws.networkmanager.VpcAttachment("example",
    subnet_arns=[__item["arn"] for __item in example_aws_subnet],
    core_network_id=example_awscc_networkmanager_core_network["id"],
    vpc_arn=example_aws_vpc["arn"])
example_attachment_accepter = aws.networkmanager.AttachmentAccepter("example",
    attachment_id=example.id,
    attachment_type=example.attachment_type)
example_connect_attachment = aws.networkmanager.ConnectAttachment("example",
    core_network_id=example_awscc_networkmanager_core_network["id"],
    transport_attachment_id=example.id,
    edge_location=example.edge_location,
    options={
        "protocol": "GRE",
    },
    opts = pulumi.ResourceOptions(depends_on=[test]))
example2 = aws.networkmanager.AttachmentAccepter("example2",
    attachment_id=example_connect_attachment.id,
    attachment_type=example_connect_attachment.attachment_type)
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/networkmanager"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
var splat0 []interface{}
for _, val0 := range exampleAwsSubnet {
splat0 = append(splat0, val0.Arn)
}
example, err := networkmanager.NewVpcAttachment(ctx, "example", &networkmanager.VpcAttachmentArgs{
SubnetArns: toPulumiArray(splat0),
CoreNetworkId: pulumi.Any(exampleAwsccNetworkmanagerCoreNetwork.Id),
VpcArn: pulumi.Any(exampleAwsVpc.Arn),
})
if err != nil {
return err
}
_, err = networkmanager.NewAttachmentAccepter(ctx, "example", &networkmanager.AttachmentAccepterArgs{
AttachmentId: example.ID(),
AttachmentType: example.AttachmentType,
})
if err != nil {
return err
}
exampleConnectAttachment, err := networkmanager.NewConnectAttachment(ctx, "example", &networkmanager.ConnectAttachmentArgs{
CoreNetworkId: pulumi.Any(exampleAwsccNetworkmanagerCoreNetwork.Id),
TransportAttachmentId: example.ID(),
EdgeLocation: example.EdgeLocation,
Options: &networkmanager.ConnectAttachmentOptionsArgs{
Protocol: pulumi.String("GRE"),
},
}, pulumi.DependsOn([]pulumi.Resource{
test,
}))
if err != nil {
return err
}
_, err = networkmanager.NewAttachmentAccepter(ctx, "example2", &networkmanager.AttachmentAccepterArgs{
AttachmentId: exampleConnectAttachment.ID(),
AttachmentType: exampleConnectAttachment.AttachmentType,
})
if err != nil {
return err
}
return nil
})
}
func toPulumiArray(arr []) pulumi.Array {
var pulumiArr pulumi.Array
for _, v := range arr {
pulumiArr = append(pulumiArr, pulumi.(v))
}
return pulumiArr
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() => 
{
    var example = new Aws.NetworkManager.VpcAttachment("example", new()
    {
        SubnetArns = exampleAwsSubnet.Select(__item => __item.Arn).ToList(),
        CoreNetworkId = exampleAwsccNetworkmanagerCoreNetwork.Id,
        VpcArn = exampleAwsVpc.Arn,
    });
    var exampleAttachmentAccepter = new Aws.NetworkManager.AttachmentAccepter("example", new()
    {
        AttachmentId = example.Id,
        AttachmentType = example.AttachmentType,
    });
    var exampleConnectAttachment = new Aws.NetworkManager.ConnectAttachment("example", new()
    {
        CoreNetworkId = exampleAwsccNetworkmanagerCoreNetwork.Id,
        TransportAttachmentId = example.Id,
        EdgeLocation = example.EdgeLocation,
        Options = new Aws.NetworkManager.Inputs.ConnectAttachmentOptionsArgs
        {
            Protocol = "GRE",
        },
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            test,
        },
    });
    var example2 = new Aws.NetworkManager.AttachmentAccepter("example2", new()
    {
        AttachmentId = exampleConnectAttachment.Id,
        AttachmentType = exampleConnectAttachment.AttachmentType,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.networkmanager.VpcAttachment;
import com.pulumi.aws.networkmanager.VpcAttachmentArgs;
import com.pulumi.aws.networkmanager.AttachmentAccepter;
import com.pulumi.aws.networkmanager.AttachmentAccepterArgs;
import com.pulumi.aws.networkmanager.ConnectAttachment;
import com.pulumi.aws.networkmanager.ConnectAttachmentArgs;
import com.pulumi.aws.networkmanager.inputs.ConnectAttachmentOptionsArgs;
import com.pulumi.resources.CustomResourceOptions;
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 VpcAttachment("example", VpcAttachmentArgs.builder()
            .subnetArns(exampleAwsSubnet.stream().map(element -> element.arn()).collect(toList()))
            .coreNetworkId(exampleAwsccNetworkmanagerCoreNetwork.id())
            .vpcArn(exampleAwsVpc.arn())
            .build());
        var exampleAttachmentAccepter = new AttachmentAccepter("exampleAttachmentAccepter", AttachmentAccepterArgs.builder()
            .attachmentId(example.id())
            .attachmentType(example.attachmentType())
            .build());
        var exampleConnectAttachment = new ConnectAttachment("exampleConnectAttachment", ConnectAttachmentArgs.builder()
            .coreNetworkId(exampleAwsccNetworkmanagerCoreNetwork.id())
            .transportAttachmentId(example.id())
            .edgeLocation(example.edgeLocation())
            .options(ConnectAttachmentOptionsArgs.builder()
                .protocol("GRE")
                .build())
            .build(), CustomResourceOptions.builder()
                .dependsOn(test)
                .build());
        var example2 = new AttachmentAccepter("example2", AttachmentAccepterArgs.builder()
            .attachmentId(exampleConnectAttachment.id())
            .attachmentType(exampleConnectAttachment.attachmentType())
            .build());
    }
}
Coming soon!
Create ConnectAttachment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ConnectAttachment(name: string, args: ConnectAttachmentArgs, opts?: CustomResourceOptions);@overload
def ConnectAttachment(resource_name: str,
                      args: ConnectAttachmentArgs,
                      opts: Optional[ResourceOptions] = None)
@overload
def ConnectAttachment(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      core_network_id: Optional[str] = None,
                      edge_location: Optional[str] = None,
                      options: Optional[ConnectAttachmentOptionsArgs] = None,
                      transport_attachment_id: Optional[str] = None,
                      tags: Optional[Mapping[str, str]] = None)func NewConnectAttachment(ctx *Context, name string, args ConnectAttachmentArgs, opts ...ResourceOption) (*ConnectAttachment, error)public ConnectAttachment(string name, ConnectAttachmentArgs args, CustomResourceOptions? opts = null)
public ConnectAttachment(String name, ConnectAttachmentArgs args)
public ConnectAttachment(String name, ConnectAttachmentArgs args, CustomResourceOptions options)
type: aws:networkmanager:ConnectAttachment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ConnectAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ConnectAttachmentArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ConnectAttachmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConnectAttachmentArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var connectAttachmentResource = new Aws.NetworkManager.ConnectAttachment("connectAttachmentResource", new()
{
    CoreNetworkId = "string",
    EdgeLocation = "string",
    Options = new Aws.NetworkManager.Inputs.ConnectAttachmentOptionsArgs
    {
        Protocol = "string",
    },
    TransportAttachmentId = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := networkmanager.NewConnectAttachment(ctx, "connectAttachmentResource", &networkmanager.ConnectAttachmentArgs{
	CoreNetworkId: pulumi.String("string"),
	EdgeLocation:  pulumi.String("string"),
	Options: &networkmanager.ConnectAttachmentOptionsArgs{
		Protocol: pulumi.String("string"),
	},
	TransportAttachmentId: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var connectAttachmentResource = new ConnectAttachment("connectAttachmentResource", ConnectAttachmentArgs.builder()
    .coreNetworkId("string")
    .edgeLocation("string")
    .options(ConnectAttachmentOptionsArgs.builder()
        .protocol("string")
        .build())
    .transportAttachmentId("string")
    .tags(Map.of("string", "string"))
    .build());
connect_attachment_resource = aws.networkmanager.ConnectAttachment("connectAttachmentResource",
    core_network_id="string",
    edge_location="string",
    options={
        "protocol": "string",
    },
    transport_attachment_id="string",
    tags={
        "string": "string",
    })
const connectAttachmentResource = new aws.networkmanager.ConnectAttachment("connectAttachmentResource", {
    coreNetworkId: "string",
    edgeLocation: "string",
    options: {
        protocol: "string",
    },
    transportAttachmentId: "string",
    tags: {
        string: "string",
    },
});
type: aws:networkmanager:ConnectAttachment
properties:
    coreNetworkId: string
    edgeLocation: string
    options:
        protocol: string
    tags:
        string: string
    transportAttachmentId: string
ConnectAttachment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ConnectAttachment resource accepts the following input properties:
- CoreNetwork stringId 
- The ID of a core network where you want to create the attachment.
- EdgeLocation string
- The Region where the edge is located.
- Options
ConnectAttachment Options 
- Options block. See options for more information. - The following arguments are optional: 
- TransportAttachment stringId 
- The ID of the attachment between the two connections.
- Dictionary<string, string>
- Key-value tags for the attachment. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- CoreNetwork stringId 
- The ID of a core network where you want to create the attachment.
- EdgeLocation string
- The Region where the edge is located.
- Options
ConnectAttachment Options Args 
- Options block. See options for more information. - The following arguments are optional: 
- TransportAttachment stringId 
- The ID of the attachment between the two connections.
- map[string]string
- Key-value tags for the attachment. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- coreNetwork StringId 
- The ID of a core network where you want to create the attachment.
- edgeLocation String
- The Region where the edge is located.
- options
ConnectAttachment Options 
- Options block. See options for more information. - The following arguments are optional: 
- transportAttachment StringId 
- The ID of the attachment between the two connections.
- Map<String,String>
- Key-value tags for the attachment. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- coreNetwork stringId 
- The ID of a core network where you want to create the attachment.
- edgeLocation string
- The Region where the edge is located.
- options
ConnectAttachment Options 
- Options block. See options for more information. - The following arguments are optional: 
- transportAttachment stringId 
- The ID of the attachment between the two connections.
- {[key: string]: string}
- Key-value tags for the attachment. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- core_network_ strid 
- The ID of a core network where you want to create the attachment.
- edge_location str
- The Region where the edge is located.
- options
ConnectAttachment Options Args 
- Options block. See options for more information. - The following arguments are optional: 
- transport_attachment_ strid 
- The ID of the attachment between the two connections.
- Mapping[str, str]
- Key-value tags for the attachment. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- coreNetwork StringId 
- The ID of a core network where you want to create the attachment.
- edgeLocation String
- The Region where the edge is located.
- options Property Map
- Options block. See options for more information. - The following arguments are optional: 
- transportAttachment StringId 
- The ID of the attachment between the two connections.
- Map<String>
- Key-value tags for the attachment. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConnectAttachment resource produces the following output properties:
- Arn string
- The ARN of the attachment.
- AttachmentId string
- AttachmentPolicy intRule Number 
- The policy rule number associated with the attachment.
- AttachmentType string
- The type of attachment.
- CoreNetwork stringArn 
- The ARN of a core network.
- Id string
- The provider-assigned unique ID for this managed resource.
- OwnerAccount stringId 
- The ID of the attachment account owner.
- ResourceArn string
- The attachment resource ARN.
- SegmentName string
- The name of the segment attachment.
- State string
- The state of the attachment.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Arn string
- The ARN of the attachment.
- AttachmentId string
- AttachmentPolicy intRule Number 
- The policy rule number associated with the attachment.
- AttachmentType string
- The type of attachment.
- CoreNetwork stringArn 
- The ARN of a core network.
- Id string
- The provider-assigned unique ID for this managed resource.
- OwnerAccount stringId 
- The ID of the attachment account owner.
- ResourceArn string
- The attachment resource ARN.
- SegmentName string
- The name of the segment attachment.
- State string
- The state of the attachment.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The ARN of the attachment.
- attachmentId String
- attachmentPolicy IntegerRule Number 
- The policy rule number associated with the attachment.
- attachmentType String
- The type of attachment.
- coreNetwork StringArn 
- The ARN of a core network.
- id String
- The provider-assigned unique ID for this managed resource.
- ownerAccount StringId 
- The ID of the attachment account owner.
- resourceArn String
- The attachment resource ARN.
- segmentName String
- The name of the segment attachment.
- state String
- The state of the attachment.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn string
- The ARN of the attachment.
- attachmentId string
- attachmentPolicy numberRule Number 
- The policy rule number associated with the attachment.
- attachmentType string
- The type of attachment.
- coreNetwork stringArn 
- The ARN of a core network.
- id string
- The provider-assigned unique ID for this managed resource.
- ownerAccount stringId 
- The ID of the attachment account owner.
- resourceArn string
- The attachment resource ARN.
- segmentName string
- The name of the segment attachment.
- state string
- The state of the attachment.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn str
- The ARN of the attachment.
- attachment_id str
- attachment_policy_ intrule_ number 
- The policy rule number associated with the attachment.
- attachment_type str
- The type of attachment.
- core_network_ strarn 
- The ARN of a core network.
- id str
- The provider-assigned unique ID for this managed resource.
- owner_account_ strid 
- The ID of the attachment account owner.
- resource_arn str
- The attachment resource ARN.
- segment_name str
- The name of the segment attachment.
- state str
- The state of the attachment.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- The ARN of the attachment.
- attachmentId String
- attachmentPolicy NumberRule Number 
- The policy rule number associated with the attachment.
- attachmentType String
- The type of attachment.
- coreNetwork StringArn 
- The ARN of a core network.
- id String
- The provider-assigned unique ID for this managed resource.
- ownerAccount StringId 
- The ID of the attachment account owner.
- resourceArn String
- The attachment resource ARN.
- segmentName String
- The name of the segment attachment.
- state String
- The state of the attachment.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
Look up Existing ConnectAttachment Resource
Get an existing ConnectAttachment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ConnectAttachmentState, opts?: CustomResourceOptions): ConnectAttachment@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        attachment_id: Optional[str] = None,
        attachment_policy_rule_number: Optional[int] = None,
        attachment_type: Optional[str] = None,
        core_network_arn: Optional[str] = None,
        core_network_id: Optional[str] = None,
        edge_location: Optional[str] = None,
        options: Optional[ConnectAttachmentOptionsArgs] = None,
        owner_account_id: Optional[str] = None,
        resource_arn: Optional[str] = None,
        segment_name: Optional[str] = None,
        state: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None,
        transport_attachment_id: Optional[str] = None) -> ConnectAttachmentfunc GetConnectAttachment(ctx *Context, name string, id IDInput, state *ConnectAttachmentState, opts ...ResourceOption) (*ConnectAttachment, error)public static ConnectAttachment Get(string name, Input<string> id, ConnectAttachmentState? state, CustomResourceOptions? opts = null)public static ConnectAttachment get(String name, Output<String> id, ConnectAttachmentState state, CustomResourceOptions options)resources:  _:    type: aws:networkmanager:ConnectAttachment    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- The ARN of the attachment.
- AttachmentId string
- AttachmentPolicy intRule Number 
- The policy rule number associated with the attachment.
- AttachmentType string
- The type of attachment.
- CoreNetwork stringArn 
- The ARN of a core network.
- CoreNetwork stringId 
- The ID of a core network where you want to create the attachment.
- EdgeLocation string
- The Region where the edge is located.
- Options
ConnectAttachment Options 
- Options block. See options for more information. - The following arguments are optional: 
- OwnerAccount stringId 
- The ID of the attachment account owner.
- ResourceArn string
- The attachment resource ARN.
- SegmentName string
- The name of the segment attachment.
- State string
- The state of the attachment.
- Dictionary<string, string>
- Key-value tags for the attachment. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- TransportAttachment stringId 
- The ID of the attachment between the two connections.
- Arn string
- The ARN of the attachment.
- AttachmentId string
- AttachmentPolicy intRule Number 
- The policy rule number associated with the attachment.
- AttachmentType string
- The type of attachment.
- CoreNetwork stringArn 
- The ARN of a core network.
- CoreNetwork stringId 
- The ID of a core network where you want to create the attachment.
- EdgeLocation string
- The Region where the edge is located.
- Options
ConnectAttachment Options Args 
- Options block. See options for more information. - The following arguments are optional: 
- OwnerAccount stringId 
- The ID of the attachment account owner.
- ResourceArn string
- The attachment resource ARN.
- SegmentName string
- The name of the segment attachment.
- State string
- The state of the attachment.
- map[string]string
- Key-value tags for the attachment. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- TransportAttachment stringId 
- The ID of the attachment between the two connections.
- arn String
- The ARN of the attachment.
- attachmentId String
- attachmentPolicy IntegerRule Number 
- The policy rule number associated with the attachment.
- attachmentType String
- The type of attachment.
- coreNetwork StringArn 
- The ARN of a core network.
- coreNetwork StringId 
- The ID of a core network where you want to create the attachment.
- edgeLocation String
- The Region where the edge is located.
- options
ConnectAttachment Options 
- Options block. See options for more information. - The following arguments are optional: 
- ownerAccount StringId 
- The ID of the attachment account owner.
- resourceArn String
- The attachment resource ARN.
- segmentName String
- The name of the segment attachment.
- state String
- The state of the attachment.
- Map<String,String>
- Key-value tags for the attachment. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- transportAttachment StringId 
- The ID of the attachment between the two connections.
- arn string
- The ARN of the attachment.
- attachmentId string
- attachmentPolicy numberRule Number 
- The policy rule number associated with the attachment.
- attachmentType string
- The type of attachment.
- coreNetwork stringArn 
- The ARN of a core network.
- coreNetwork stringId 
- The ID of a core network where you want to create the attachment.
- edgeLocation string
- The Region where the edge is located.
- options
ConnectAttachment Options 
- Options block. See options for more information. - The following arguments are optional: 
- ownerAccount stringId 
- The ID of the attachment account owner.
- resourceArn string
- The attachment resource ARN.
- segmentName string
- The name of the segment attachment.
- state string
- The state of the attachment.
- {[key: string]: string}
- Key-value tags for the attachment. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- transportAttachment stringId 
- The ID of the attachment between the two connections.
- arn str
- The ARN of the attachment.
- attachment_id str
- attachment_policy_ intrule_ number 
- The policy rule number associated with the attachment.
- attachment_type str
- The type of attachment.
- core_network_ strarn 
- The ARN of a core network.
- core_network_ strid 
- The ID of a core network where you want to create the attachment.
- edge_location str
- The Region where the edge is located.
- options
ConnectAttachment Options Args 
- Options block. See options for more information. - The following arguments are optional: 
- owner_account_ strid 
- The ID of the attachment account owner.
- resource_arn str
- The attachment resource ARN.
- segment_name str
- The name of the segment attachment.
- state str
- The state of the attachment.
- Mapping[str, str]
- Key-value tags for the attachment. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- transport_attachment_ strid 
- The ID of the attachment between the two connections.
- arn String
- The ARN of the attachment.
- attachmentId String
- attachmentPolicy NumberRule Number 
- The policy rule number associated with the attachment.
- attachmentType String
- The type of attachment.
- coreNetwork StringArn 
- The ARN of a core network.
- coreNetwork StringId 
- The ID of a core network where you want to create the attachment.
- edgeLocation String
- The Region where the edge is located.
- options Property Map
- Options block. See options for more information. - The following arguments are optional: 
- ownerAccount StringId 
- The ID of the attachment account owner.
- resourceArn String
- The attachment resource ARN.
- segmentName String
- The name of the segment attachment.
- state String
- The state of the attachment.
- Map<String>
- Key-value tags for the attachment. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- transportAttachment StringId 
- The ID of the attachment between the two connections.
Supporting Types
ConnectAttachmentOptions, ConnectAttachmentOptionsArgs      
- Protocol string
- The protocol used for the attachment connection. Possible values are GREandNO_ENCAP.
- Protocol string
- The protocol used for the attachment connection. Possible values are GREandNO_ENCAP.
- protocol String
- The protocol used for the attachment connection. Possible values are GREandNO_ENCAP.
- protocol string
- The protocol used for the attachment connection. Possible values are GREandNO_ENCAP.
- protocol str
- The protocol used for the attachment connection. Possible values are GREandNO_ENCAP.
- protocol String
- The protocol used for the attachment connection. Possible values are GREandNO_ENCAP.
Import
Using pulumi import, import aws_networkmanager_connect_attachment using the attachment ID. For example:
$ pulumi import aws:networkmanager/connectAttachment:ConnectAttachment example attachment-0f8fa60d2238d1bd8
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the awsTerraform Provider.