CfnSiteMixinProps

class aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnSiteMixinProps(*, description=None, global_network_id=None, location=None, tags=None)

Bases: object

Properties for CfnSitePropsMixin.

Parameters:
  • description (Optional[str]) – A description of your site. Constraints: Maximum length of 256 characters.

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

  • location (Union[IResolvable, LocationProperty, Dict[str, Any], None]) – The site location. This information is used for visualization in the Network Manager console. If you specify the address, the latitude and longitude are automatically calculated. - Address : The physical address of the site. - Latitude : The latitude of the site. - Longitude : The longitude of the site.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags for the site.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.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_site_mixin_props = networkmanager_mixins.CfnSiteMixinProps(
    description="description",
    global_network_id="globalNetworkId",
    location=networkmanager_mixins.CfnSitePropsMixin.LocationProperty(
        address="address",
        latitude="latitude",
        longitude="longitude"
    ),
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

A description of your site.

Constraints: Maximum length of 256 characters.

See:

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

global_network_id

The ID of the global network.

See:

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

location

The site location.

This information is used for visualization in the Network Manager console. If you specify the address, the latitude and longitude are automatically calculated.

  • Address : The physical address of the site.

  • Latitude : The latitude of the site.

  • Longitude : The longitude of the site.

See:

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

tags

The tags for the site.

See:

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