Class CfnFirewallDomainList

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.route53globalresolver.CfnFirewallDomainList
All Implemented Interfaces:
IInspectable, IEnvironmentAware, IFirewallDomainListRef, ITaggableV2, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-27T13:12:06.768Z") @Stability(Stable) public class CfnFirewallDomainList extends CfnResource implements IInspectable, IFirewallDomainListRef, ITaggableV2
Resource schema for AWS::Route53GlobalResolver::FirewallDomainList.

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.route53globalresolver.*;
 CfnFirewallDomainList cfnFirewallDomainList = CfnFirewallDomainList.Builder.create(this, "MyCfnFirewallDomainList")
         .globalResolverId("globalResolverId")
         .name("name")
         // the properties below are optional
         .clientToken("clientToken")
         .description("description")
         .domainFileUrl("domainFileUrl")
         .domains(List.of("domains"))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .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

    • CfnFirewallDomainList

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

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

      @Stability(Stable) public CfnFirewallDomainList(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnFirewallDomainListProps props)
      Create a new AWS::Route53GlobalResolver::FirewallDomainList.

      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

    • arnForFirewallDomainList

      @Stability(Stable) @NotNull public static String arnForFirewallDomainList(@NotNull IFirewallDomainListRef resource)
      Parameters:
      resource - This parameter is required.
    • isCfnFirewallDomainList

      @Stability(Stable) @NotNull public static Boolean isCfnFirewallDomainList(@NotNull Object x)
      Checks whether the given object is a CfnFirewallDomainList.

      Parameters:
      x - This parameter is required.
    • 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.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
    • getAttrCreatedAt

      @Stability(Stable) @NotNull public String getAttrCreatedAt()
    • getAttrDomainCount

      @Stability(Stable) @NotNull public Number getAttrDomainCount()
    • getAttrFirewallDomainListId

      @Stability(Stable) @NotNull public String getAttrFirewallDomainListId()
    • getAttrStatus

      @Stability(Stable) @NotNull public String getAttrStatus()
    • getAttrStatusMessage

      @Stability(Stable) @NotNull public String getAttrStatusMessage()
    • getAttrUpdatedAt

      @Stability(Stable) @NotNull public String getAttrUpdatedAt()
    • 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
    • getFirewallDomainListRef

      @Stability(Stable) @NotNull public FirewallDomainListReference getFirewallDomainListRef()
      A reference to a FirewallDomainList resource.
      Specified by:
      getFirewallDomainListRef in interface IFirewallDomainListRef
    • getGlobalResolverId

      @Stability(Stable) @NotNull public String getGlobalResolverId()
    • setGlobalResolverId

      @Stability(Stable) public void setGlobalResolverId(@NotNull String value)
    • getName

      @Stability(Stable) @NotNull public String getName()
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
    • getClientToken

      @Stability(Stable) @Nullable public String getClientToken()
    • setClientToken

      @Stability(Stable) public void setClientToken(@Nullable String value)
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
    • getDomainFileUrl

      @Stability(Stable) @Nullable public String getDomainFileUrl()
      S3 URL to import domains from.
    • setDomainFileUrl

      @Stability(Stable) public void setDomainFileUrl(@Nullable String value)
      S3 URL to import domains from.
    • getDomains

      @Stability(Stable) @Nullable public List<String> getDomains()
      An inline list of domains to use for this domain list.
    • setDomains

      @Stability(Stable) public void setDomains(@Nullable List<String> value)
      An inline list of domains to use for this domain list.
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)