CfnConnectionGroupMixinProps

class aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnConnectionGroupMixinProps(*, anycast_ip_list_id=None, enabled=None, ipv6_enabled=None, name=None, tags=None)

Bases: object

Properties for CfnConnectionGroupPropsMixin.

Parameters:
  • anycast_ip_list_id (Optional[str]) – The ID of the Anycast static IP list.

  • enabled (Union[bool, IResolvable, None]) – Whether the connection group is enabled.

  • ipv6_enabled (Union[bool, IResolvable, None]) – IPv6 is enabled for the connection group.

  • name (Optional[str]) – The name of the connection group.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A complex type that contains zero or more Tag elements.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectiongroup.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_cloudfront import mixins as cloudfront_mixins

cfn_connection_group_mixin_props = cloudfront_mixins.CfnConnectionGroupMixinProps(
    anycast_ip_list_id="anycastIpListId",
    enabled=False,
    ipv6_enabled=False,
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

anycast_ip_list_id

The ID of the Anycast static IP list.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectiongroup.html#cfn-cloudfront-connectiongroup-anycastiplistid

enabled

Whether the connection group is enabled.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectiongroup.html#cfn-cloudfront-connectiongroup-enabled

ipv6_enabled

IPv6 is enabled for the connection group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectiongroup.html#cfn-cloudfront-connectiongroup-ipv6enabled

name

The name of the connection group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-connectiongroup.html#cfn-cloudfront-connectiongroup-name

tags

A complex type that contains zero or more Tag elements.

See:

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