interface CfnLinkMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Mixins.CfnLinkMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkmanager/mixins#CfnLinkMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.networkmanager.mixins.CfnLinkMixinProps |
Python | aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnLinkMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_networkmanager » mixins » CfnLinkMixinProps |
Properties for CfnLinkPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as networkmanager_mixins } from '@aws-cdk/mixins-preview/aws-networkmanager';
const cfnLinkMixinProps: networkmanager_mixins.CfnLinkMixinProps = {
bandwidth: {
downloadSpeed: 123,
uploadSpeed: 123,
},
description: 'description',
globalNetworkId: 'globalNetworkId',
provider: 'provider',
siteId: 'siteId',
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| bandwidth? | IResolvable | Bandwidth | The bandwidth for the link. |
| description? | string | A description of the link. |
| global | string | The ID of the global network. |
| provider? | string | The provider of the link. |
| site | string | The ID of the site. |
| tags? | Cfn[] | The tags for the link. |
| type? | string | The type of the link. |
bandwidth?
Type:
IResolvable | Bandwidth
(optional)
The bandwidth for the link.
description?
Type:
string
(optional)
A description of the link.
Constraints: Maximum length of 256 characters.
globalNetworkId?
Type:
string
(optional)
The ID of the global network.
provider?
Type:
string
(optional)
The provider of the link.
Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^
siteId?
Type:
string
(optional)
The ID of the site.
tags?
Type:
Cfn[]
(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: | \ ^

.NET
Go
Java
Python
TypeScript