Interface CfnFirewallDomainListProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFirewallDomainListProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:40.356Z") @Stability(Stable) public interface CfnFirewallDomainListProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnFirewallDomainList.

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.route53resolver.*;
 CfnFirewallDomainListProps cfnFirewallDomainListProps = CfnFirewallDomainListProps.builder()
         .domainFileUrl("domainFileUrl")
         .domains(List.of("domains"))
         .name("name")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getDomainFileUrl

      @Stability(Stable) @Nullable default String getDomainFileUrl()
      The fully qualified URL or URI of the file stored in Amazon Simple Storage Service (Amazon S3) that contains the list of domains to import.

      The file must be in an S3 bucket that's in the same Region as your DNS Firewall. The file must be a text file and must contain a single domain per line.

    • getDomains

      @Stability(Stable) @Nullable default List<String> getDomains()
      A list of the domain lists that you have defined.
    • getName

      @Stability(Stable) @Nullable default String getName()
      The name of the domain list.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      A list of the tag keys and values that you want to associate with the domain list.
    • builder

      @Stability(Stable) static CfnFirewallDomainListProps.Builder builder()
      Returns:
      a CfnFirewallDomainListProps.Builder of CfnFirewallDomainListProps