Class CfnAnycastIpList

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, ITaggableV2, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2025-01-04T09:06:18.782Z") @Stability(Stable) public class CfnAnycastIpList extends CfnResource implements IInspectable, ITaggableV2
An Anycast static IP list.

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.*;
 CfnAnycastIpList cfnAnycastIpList = CfnAnycastIpList.Builder.create(this, "MyCfnAnycastIpList")
         .ipCount(123)
         .name("name")
         // the properties below are optional
         .tags(TagsProperty.builder()
                 .items(List.of(CfnTag.builder()
                         .key("key")
                         .value("value")
                         .build()))
                 .build())
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnAnycastIpList

      protected CfnAnycastIpList(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnAnycastIpList

      protected CfnAnycastIpList(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnAnycastIpList

      @Stability(Stable) public CfnAnycastIpList(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnAnycastIpListProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrAnycastIpList

      @Stability(Stable) @NotNull public IResolvable getAttrAnycastIpList()
    • getAttrETag

      @Stability(Stable) @NotNull public String getAttrETag()
      A complex type that contains Tag key and Tag value.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      The ID of the Anycast static IP list.
    • getCdkTagManager

      @Stability(Stable) @NotNull public TagManager getCdkTagManager()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getCdkTagManager in interface ITaggableV2
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getIpCount

      @Stability(Stable) @NotNull public Number getIpCount()
      The number of IP addresses in the Anycast static IP list.
    • setIpCount

      @Stability(Stable) public void setIpCount(@NotNull Number value)
      The number of IP addresses in the Anycast static IP list.
    • getName

      @Stability(Stable) @NotNull public String getName()
      The name of the Anycast static IP list.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      The name of the Anycast static IP list.
    • getTags

      @Stability(Stable) @Nullable public CfnAnycastIpList.TagsProperty getTags()
      A complex type that contains zero or more Tag elements.
    • setTags

      @Stability(Stable) public void setTags(@Nullable CfnAnycastIpList.TagsProperty value)
      A complex type that contains zero or more Tag elements.