CfnLinkMixinProps

class aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnLinkMixinProps(*, bandwidth=None, description=None, global_network_id=None, provider=None, site_id=None, tags=None, type=None)

Bases: object

Properties for CfnLinkPropsMixin.

Parameters:
  • bandwidth (Union[IResolvable, BandwidthProperty, Dict[str, Any], None]) – The bandwidth for the link.

  • description (Optional[str]) – A description of the link. Constraints: Maximum length of 256 characters.

  • global_network_id (Optional[str]) – The ID of the global network.

  • provider (Optional[str]) – The provider of the link. Constraints: Maximum length of 128 characters. Cannot include the following characters: | ^

  • site_id (Optional[str]) – The ID of the site.

  • 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: | ^

See:

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.
from aws_cdk.mixins_preview.aws_networkmanager import mixins as networkmanager_mixins

cfn_link_mixin_props = networkmanager_mixins.CfnLinkMixinProps(
    bandwidth=networkmanager_mixins.CfnLinkPropsMixin.BandwidthProperty(
        download_speed=123,
        upload_speed=123
    ),
    description="description",
    global_network_id="globalNetworkId",
    provider="provider",
    site_id="siteId",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    type="type"
)

Attributes

bandwidth

The bandwidth for the link.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-bandwidth

description

A description of the link.

Constraints: Maximum length of 256 characters.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-description

global_network_id

The ID of the global network.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-globalnetworkid

provider

The provider of the link.

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-provider

site_id

The ID of the site.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-siteid

tags

The tags for the link.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-tags

type

The type of the link.

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-link.html#cfn-networkmanager-link-type