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:
objectProperties 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 moreTagelements.
- See:
- 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.
- enabled
Whether the connection group is enabled.
- ipv6_enabled
IPv6 is enabled for the connection group.
- name
The name of the connection group.
- tags
A complex type that contains zero or more
Tagelements.