aws-cdk-lib.aws_networkmanager.CfnLinkProps

interface CfnLinkProps

LanguageType name
.NETAmazon.CDK.AWS.NetworkManager.CfnLinkProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsnetworkmanager#CfnLinkProps
Javasoftware.amazon.awscdk.services.networkmanager.CfnLinkProps
Pythonaws_cdk.aws_networkmanager.CfnLinkProps
TypeScript aws-cdk-lib » aws_networkmanager » CfnLinkProps

Properties for defining a CfnLink.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_networkmanager as networkmanager } from 'aws-cdk-lib';
const cfnLinkProps: networkmanager.CfnLinkProps = {
  bandwidth: {
    downloadSpeed: 123,
    uploadSpeed: 123,
  },
  globalNetworkId: 'globalNetworkId',
  siteId: 'siteId',

  // the properties below are optional
  description: 'description',
  provider: 'provider',
  tags: [{
    key: 'key',
    value: 'value',
  }],
  type: 'type',
};

Properties

NameTypeDescription
bandwidthIResolvable | BandwidthPropertyThe bandwidth for the link.
globalNetworkIdstringThe ID of the global network.
siteIdstringThe ID of the site.
description?stringA description of the link.
provider?stringThe provider of the link.
tags?CfnTag[]The tags for the link.
type?stringThe type of the link.

bandwidth

Type: IResolvable | BandwidthProperty

The bandwidth for the link.


globalNetworkId

Type: string

The ID of the global network.


siteId

Type: string

The ID of the site.


description?

Type: string (optional)

A description of the link.

Constraints: Maximum length of 256 characters.


provider?

Type: string (optional)

The provider of the link.

Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^


tags?

Type: CfnTag[] (optional)

The tags for the link.


type?

Type: string (optional)

The type of the link.

Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^