aws.networkmanager.Link
Explore with Pulumi AI
Manages a Network Manager link. Use this resource to create a link for a site.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.networkmanager.Link("example", {
globalNetworkId: exampleAwsNetworkmanagerGlobalNetwork.id,
siteId: exampleAwsNetworkmanagerSite.id,
bandwidth: {
uploadSpeed: 10,
downloadSpeed: 50,
},
providerName: "MegaCorp",
});
import pulumi
import pulumi_aws as aws
example = aws.networkmanager.Link("example",
global_network_id=example_aws_networkmanager_global_network["id"],
site_id=example_aws_networkmanager_site["id"],
bandwidth={
"upload_speed": 10,
"download_speed": 50,
},
provider_name="MegaCorp")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/networkmanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := networkmanager.NewLink(ctx, "example", &networkmanager.LinkArgs{
GlobalNetworkId: pulumi.Any(exampleAwsNetworkmanagerGlobalNetwork.Id),
SiteId: pulumi.Any(exampleAwsNetworkmanagerSite.Id),
Bandwidth: &networkmanager.LinkBandwidthArgs{
UploadSpeed: pulumi.Int(10),
DownloadSpeed: pulumi.Int(50),
},
ProviderName: pulumi.String("MegaCorp"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.NetworkManager.Link("example", new()
{
GlobalNetworkId = exampleAwsNetworkmanagerGlobalNetwork.Id,
SiteId = exampleAwsNetworkmanagerSite.Id,
Bandwidth = new Aws.NetworkManager.Inputs.LinkBandwidthArgs
{
UploadSpeed = 10,
DownloadSpeed = 50,
},
ProviderName = "MegaCorp",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.networkmanager.Link;
import com.pulumi.aws.networkmanager.LinkArgs;
import com.pulumi.aws.networkmanager.inputs.LinkBandwidthArgs;
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 Link("example", LinkArgs.builder()
.globalNetworkId(exampleAwsNetworkmanagerGlobalNetwork.id())
.siteId(exampleAwsNetworkmanagerSite.id())
.bandwidth(LinkBandwidthArgs.builder()
.uploadSpeed(10)
.downloadSpeed(50)
.build())
.providerName("MegaCorp")
.build());
}
}
resources:
example:
type: aws:networkmanager:Link
properties:
globalNetworkId: ${exampleAwsNetworkmanagerGlobalNetwork.id}
siteId: ${exampleAwsNetworkmanagerSite.id}
bandwidth:
uploadSpeed: 10
downloadSpeed: 50
providerName: MegaCorp
Create Link Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Link(name: string, args: LinkArgs, opts?: CustomResourceOptions);
@overload
def Link(resource_name: str,
args: LinkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Link(resource_name: str,
opts: Optional[ResourceOptions] = None,
bandwidth: Optional[LinkBandwidthArgs] = None,
global_network_id: Optional[str] = None,
site_id: Optional[str] = None,
description: Optional[str] = None,
provider_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
type: Optional[str] = None)
func NewLink(ctx *Context, name string, args LinkArgs, opts ...ResourceOption) (*Link, error)
public Link(string name, LinkArgs args, CustomResourceOptions? opts = null)
type: aws:networkmanager:Link
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 LinkArgs
- 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 LinkArgs
- 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 LinkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LinkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LinkArgs
- 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 linkResource = new Aws.NetworkManager.Link("linkResource", new()
{
Bandwidth = new Aws.NetworkManager.Inputs.LinkBandwidthArgs
{
DownloadSpeed = 0,
UploadSpeed = 0,
},
GlobalNetworkId = "string",
SiteId = "string",
Description = "string",
ProviderName = "string",
Tags =
{
{ "string", "string" },
},
Type = "string",
});
example, err := networkmanager.NewLink(ctx, "linkResource", &networkmanager.LinkArgs{
Bandwidth: &networkmanager.LinkBandwidthArgs{
DownloadSpeed: pulumi.Int(0),
UploadSpeed: pulumi.Int(0),
},
GlobalNetworkId: pulumi.String("string"),
SiteId: pulumi.String("string"),
Description: pulumi.String("string"),
ProviderName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Type: pulumi.String("string"),
})
var linkResource = new com.pulumi.aws.networkmanager.Link("linkResource", com.pulumi.aws.networkmanager.LinkArgs.builder()
.bandwidth(LinkBandwidthArgs.builder()
.downloadSpeed(0)
.uploadSpeed(0)
.build())
.globalNetworkId("string")
.siteId("string")
.description("string")
.providerName("string")
.tags(Map.of("string", "string"))
.type("string")
.build());
link_resource = aws.networkmanager.Link("linkResource",
bandwidth={
"download_speed": 0,
"upload_speed": 0,
},
global_network_id="string",
site_id="string",
description="string",
provider_name="string",
tags={
"string": "string",
},
type="string")
const linkResource = new aws.networkmanager.Link("linkResource", {
bandwidth: {
downloadSpeed: 0,
uploadSpeed: 0,
},
globalNetworkId: "string",
siteId: "string",
description: "string",
providerName: "string",
tags: {
string: "string",
},
type: "string",
});
type: aws:networkmanager:Link
properties:
bandwidth:
downloadSpeed: 0
uploadSpeed: 0
description: string
globalNetworkId: string
providerName: string
siteId: string
tags:
string: string
type: string
Link 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 Link resource accepts the following input properties:
- Bandwidth
Link
Bandwidth - Upload speed and download speed in Mbps. See below.
- Global
Network stringId - ID of the global network.
- Site
Id string ID of the site.
The following arguments are optional:
- Description string
- Description of the link.
- Provider
Name string - Provider of the link.
- Dictionary<string, string>
- Key-value tags for the link. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Type string
- Type of the link.
- Bandwidth
Link
Bandwidth Args - Upload speed and download speed in Mbps. See below.
- Global
Network stringId - ID of the global network.
- Site
Id string ID of the site.
The following arguments are optional:
- Description string
- Description of the link.
- Provider
Name string - Provider of the link.
- map[string]string
- Key-value tags for the link. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Type string
- Type of the link.
- bandwidth
Link
Bandwidth - Upload speed and download speed in Mbps. See below.
- global
Network StringId - ID of the global network.
- site
Id String ID of the site.
The following arguments are optional:
- description String
- Description of the link.
- provider
Name String - Provider of the link.
- Map<String,String>
- Key-value tags for the link. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - type String
- Type of the link.
- bandwidth
Link
Bandwidth - Upload speed and download speed in Mbps. See below.
- global
Network stringId - ID of the global network.
- site
Id string ID of the site.
The following arguments are optional:
- description string
- Description of the link.
- provider
Name string - Provider of the link.
- {[key: string]: string}
- Key-value tags for the link. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - type string
- Type of the link.
- bandwidth
Link
Bandwidth Args - Upload speed and download speed in Mbps. See below.
- global_
network_ strid - ID of the global network.
- site_
id str ID of the site.
The following arguments are optional:
- description str
- Description of the link.
- provider_
name str - Provider of the link.
- Mapping[str, str]
- Key-value tags for the link. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - type str
- Type of the link.
- bandwidth Property Map
- Upload speed and download speed in Mbps. See below.
- global
Network StringId - ID of the global network.
- site
Id String ID of the site.
The following arguments are optional:
- description String
- Description of the link.
- provider
Name String - Provider of the link.
- Map<String>
- Key-value tags for the link. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - type String
- Type of the link.
Outputs
All input properties are implicitly available as output properties. Additionally, the Link resource produces the following output properties:
Look up Existing Link Resource
Get an existing Link 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?: LinkState, opts?: CustomResourceOptions): Link
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
bandwidth: Optional[LinkBandwidthArgs] = None,
description: Optional[str] = None,
global_network_id: Optional[str] = None,
provider_name: Optional[str] = None,
site_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
type: Optional[str] = None) -> Link
func GetLink(ctx *Context, name string, id IDInput, state *LinkState, opts ...ResourceOption) (*Link, error)
public static Link Get(string name, Input<string> id, LinkState? state, CustomResourceOptions? opts = null)
public static Link get(String name, Output<String> id, LinkState state, CustomResourceOptions options)
resources: _: type: aws:networkmanager:Link 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
- Link ARN.
- Bandwidth
Link
Bandwidth - Upload speed and download speed in Mbps. See below.
- Description string
- Description of the link.
- Global
Network stringId - ID of the global network.
- Provider
Name string - Provider of the link.
- Site
Id string ID of the site.
The following arguments are optional:
- Dictionary<string, string>
- Key-value tags for the link. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Type string
- Type of the link.
- Arn string
- Link ARN.
- Bandwidth
Link
Bandwidth Args - Upload speed and download speed in Mbps. See below.
- Description string
- Description of the link.
- Global
Network stringId - ID of the global network.
- Provider
Name string - Provider of the link.
- Site
Id string ID of the site.
The following arguments are optional:
- map[string]string
- Key-value tags for the link. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Type string
- Type of the link.
- arn String
- Link ARN.
- bandwidth
Link
Bandwidth - Upload speed and download speed in Mbps. See below.
- description String
- Description of the link.
- global
Network StringId - ID of the global network.
- provider
Name String - Provider of the link.
- site
Id String ID of the site.
The following arguments are optional:
- Map<String,String>
- Key-value tags for the link. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type String
- Type of the link.
- arn string
- Link ARN.
- bandwidth
Link
Bandwidth - Upload speed and download speed in Mbps. See below.
- description string
- Description of the link.
- global
Network stringId - ID of the global network.
- provider
Name string - Provider of the link.
- site
Id string ID of the site.
The following arguments are optional:
- {[key: string]: string}
- Key-value tags for the link. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type string
- Type of the link.
- arn str
- Link ARN.
- bandwidth
Link
Bandwidth Args - Upload speed and download speed in Mbps. See below.
- description str
- Description of the link.
- global_
network_ strid - ID of the global network.
- provider_
name str - Provider of the link.
- site_
id str ID of the site.
The following arguments are optional:
- Mapping[str, str]
- Key-value tags for the link. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type str
- Type of the link.
- arn String
- Link ARN.
- bandwidth Property Map
- Upload speed and download speed in Mbps. See below.
- description String
- Description of the link.
- global
Network StringId - ID of the global network.
- provider
Name String - Provider of the link.
- site
Id String ID of the site.
The following arguments are optional:
- Map<String>
- Key-value tags for the link. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type String
- Type of the link.
Supporting Types
LinkBandwidth, LinkBandwidthArgs
- Download
Speed int - Download speed in Mbps.
- Upload
Speed int - Upload speed in Mbps.
- Download
Speed int - Download speed in Mbps.
- Upload
Speed int - Upload speed in Mbps.
- download
Speed Integer - Download speed in Mbps.
- upload
Speed Integer - Upload speed in Mbps.
- download
Speed number - Download speed in Mbps.
- upload
Speed number - Upload speed in Mbps.
- download_
speed int - Download speed in Mbps.
- upload_
speed int - Upload speed in Mbps.
- download
Speed Number - Download speed in Mbps.
- upload
Speed Number - Upload speed in Mbps.
Import
Using pulumi import
, import aws_networkmanager_link
using the link ARN. For example:
$ pulumi import aws:networkmanager/link:Link example arn:aws:networkmanager::123456789012:link/global-network-0d47f6t230mz46dy4/link-444555aaabbb11223
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
aws
Terraform Provider.