Interface CfnConnectionGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectionGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-05-22T23:39:47.178Z")
@Stability(Stable)
public interface CfnConnectionGroupProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnConnectionGroup.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cloudfront.*;
CfnConnectionGroupProps cfnConnectionGroupProps = CfnConnectionGroupProps.builder()
.name("name")
// the properties below are optional
.anycastIpListId("anycastIpListId")
.enabled(false)
.ipv6Enabled(false)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectionGroupPropsstatic final classAn implementation forCfnConnectionGroupProps -
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.getName()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
-
getName
The name of the connection group.- See Also:
-
getAnycastIpListId
The ID of the Anycast static IP list.- See Also:
-
getEnabled
Whether the connection group is enabled.- See Also:
-
getIpv6Enabled
IPv6 is enabled for the connection group.- See Also:
-
getTags
A complex type that contains zero or moreTagelements.- See Also:
-
builder
- Returns:
- a
CfnConnectionGroupProps.BuilderofCfnConnectionGroupProps
-