CfnLinkProps
- class aws_cdk.aws_networkmanager.CfnLinkProps(*, bandwidth, global_network_id, site_id, description=None, provider=None, tags=None, type=None)
Bases:
object
Properties for defining a
CfnLink
.- Parameters:
bandwidth (
Union
[IResolvable
,BandwidthProperty
,Dict
[str
,Any
]]) – The bandwidth for the link.global_network_id (
str
) – The ID of the global network.site_id (
str
) – The ID of the site.description (
Optional
[str
]) – A description of the link. Constraints: Maximum length of 256 characters.provider (
Optional
[str
]) – The provider of the link. Constraints: Maximum length of 128 characters. Cannot include the following characters: | ^tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – The tags for the link.type (
Optional
[str
]) – The type of the link. Constraints: Maximum length of 128 characters. Cannot include the following characters: | ^
- Link:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_networkmanager as networkmanager cfn_link_props = networkmanager.CfnLinkProps( bandwidth=networkmanager.CfnLink.BandwidthProperty( download_speed=123, upload_speed=123 ), global_network_id="globalNetworkId", site_id="siteId", # the properties below are optional description="description", provider="provider", tags=[CfnTag( key="key", value="value" )], type="type" )
Attributes
- bandwidth
The bandwidth for the link.
- description
A description of the link.
Constraints: Maximum length of 256 characters.
- global_network_id
The ID of the global network.
- provider
The provider of the link.
Constraints: Maximum length of 128 characters. Cannot include the following characters: | ^
- site_id
The ID of the site.
- tags
The tags for the link.
- type
The type of the link.
Constraints: Maximum length of 128 characters. Cannot include the following characters: | ^