Interface CfnAnycastIpListProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnycastIpListProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:34.180Z")
@Stability(Stable)
public interface CfnAnycastIpListProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAnycastIpList.
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.*;
CfnAnycastIpListProps cfnAnycastIpListProps = CfnAnycastIpListProps.builder()
.ipCount(123)
.name("name")
// the properties below are optional
.ipAddressType("ipAddressType")
.tags(TagsProperty.builder()
.items(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnycastIpListPropsstatic final classAn implementation forCfnAnycastIpListProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe number of IP addresses in the Anycast static IP list.getName()The name of the Anycast static IP list.default CfnAnycastIpList.TagsPropertygetTags()A complex type that contains zero or moreTagelements.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIpCount
The number of IP addresses in the Anycast static IP list.- See Also:
-
getName
The name of the Anycast static IP list.- See Also:
-
getIpAddressType
- See Also:
-
getTags
A complex type that contains zero or moreTagelements.- See Also:
-
builder
- Returns:
- a
CfnAnycastIpListProps.BuilderofCfnAnycastIpListProps
-