Interface CfnConnectionGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectionGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.011Z")
@Stability(Stable)
public interface CfnConnectionGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnConnectionGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cloudfront.*;
CfnConnectionGroupMixinProps cfnConnectionGroupMixinProps = CfnConnectionGroupMixinProps.builder()
.anycastIpListId("anycastIpListId")
.enabled(false)
.ipv6Enabled(false)
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectionGroupMixinPropsstatic final classAn implementation forCfnConnectionGroupMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ID of the Anycast static IP list.default ObjectWhether the connection group is enabled.default ObjectIPv6 is enabled for the connection group.default StringgetName()The name of the connection group.getTags()A complex type that contains zero or moreTagelements.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAnycastIpListId
The ID of the Anycast static IP list.- See Also:
-
getEnabled
Whether the connection group is enabled.Returns union: either
BooleanorIResolvable- See Also:
-
getIpv6Enabled
IPv6 is enabled for the connection group.Returns union: either
BooleanorIResolvable- See Also:
-
getName
The name of the connection group.- See Also:
-
getTags
A complex type that contains zero or moreTagelements.- See Also:
-
builder
-