aws.networkmanager.Link
Explore with Pulumi AI
Creates 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/v6/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 Link("linkResource", 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={
"downloadSpeed": 0,
"uploadSpeed": 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
The Link resource accepts the following input properties:
- Bandwidth
Link
Bandwidth - The upload speed and download speed in Mbps. Documented below.
- Global
Network stringId - The ID of the global network.
- Site
Id string - The ID of the site.
- Description string
- A description of the link.
- Provider
Name string - The 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
- The type of the link.
- Bandwidth
Link
Bandwidth Args - The upload speed and download speed in Mbps. Documented below.
- Global
Network stringId - The ID of the global network.
- Site
Id string - The ID of the site.
- Description string
- A description of the link.
- Provider
Name string - The 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
- The type of the link.
- bandwidth
Link
Bandwidth - The upload speed and download speed in Mbps. Documented below.
- global
Network StringId - The ID of the global network.
- site
Id String - The ID of the site.
- description String
- A description of the link.
- provider
Name String - The 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
- The type of the link.
- bandwidth
Link
Bandwidth - The upload speed and download speed in Mbps. Documented below.
- global
Network stringId - The ID of the global network.
- site
Id string - The ID of the site.
- description string
- A description of the link.
- provider
Name string - The 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
- The type of the link.
- bandwidth
Link
Bandwidth Args - The upload speed and download speed in Mbps. Documented below.
- global_
network_ strid - The ID of the global network.
- site_
id str - The ID of the site.
- description str
- A description of the link.
- provider_
name str - The 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
- The type of the link.
- bandwidth Property Map
- The upload speed and download speed in Mbps. Documented below.
- global
Network StringId - The ID of the global network.
- site
Id String - The ID of the site.
- description String
- A description of the link.
- provider
Name String - The 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
- The 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)
Resource lookup is not supported in YAML
- 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 Amazon Resource Name (ARN).
- Bandwidth
Link
Bandwidth - The upload speed and download speed in Mbps. Documented below.
- Description string
- A description of the link.
- Global
Network stringId - The ID of the global network.
- Provider
Name string - The provider of the link.
- Site
Id string - The ID of the site.
- 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>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Type string
- The type of the link.
- Arn string
- Link Amazon Resource Name (ARN).
- Bandwidth
Link
Bandwidth Args - The upload speed and download speed in Mbps. Documented below.
- Description string
- A description of the link.
- Global
Network stringId - The ID of the global network.
- Provider
Name string - The provider of the link.
- Site
Id string - The ID of the site.
- 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
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Type string
- The type of the link.
- arn String
- Link Amazon Resource Name (ARN).
- bandwidth
Link
Bandwidth - The upload speed and download speed in Mbps. Documented below.
- description String
- A description of the link.
- global
Network StringId - The ID of the global network.
- provider
Name String - The provider of the link.
- site
Id String - The ID of the site.
- 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>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type String
- The type of the link.
- arn string
- Link Amazon Resource Name (ARN).
- bandwidth
Link
Bandwidth - The upload speed and download speed in Mbps. Documented below.
- description string
- A description of the link.
- global
Network stringId - The ID of the global network.
- provider
Name string - The provider of the link.
- site
Id string - The ID of the site.
- {[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}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type string
- The type of the link.
- arn str
- Link Amazon Resource Name (ARN).
- bandwidth
Link
Bandwidth Args - The upload speed and download speed in Mbps. Documented below.
- description str
- A description of the link.
- global_
network_ strid - The ID of the global network.
- provider_
name str - The provider of the link.
- site_
id str - The ID of the site.
- 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]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type str
- The type of the link.
- arn String
- Link Amazon Resource Name (ARN).
- bandwidth Property Map
- The upload speed and download speed in Mbps. Documented below.
- description String
- A description of the link.
- global
Network StringId - The ID of the global network.
- provider
Name String - The provider of the link.
- site
Id String - The ID of the site.
- 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>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type String
- The 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.