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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFirewallDomainListProps
static final class
An implementation forCfnFirewallDomainListProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
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.A list of the domain lists that you have defined.default String
getName()
The name of the domain list.getTags()
A list of the tag keys and values that you want to associate with the domain list.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
A list of the domain lists that you have defined. -
getName
The name of the domain list. -
getTags
A list of the tag keys and values that you want to associate with the domain list. -
builder
- Returns:
- a
CfnFirewallDomainListProps.Builder
ofCfnFirewallDomainListProps
-