Interface CfnFirewallDomainListProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFirewallDomainListProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:38.477Z")
@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();
- See Also:
-
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.
- See Also:
-
getDomains
A list of the domain lists that you have defined.- See Also:
-
getName
The name of the domain list.- See Also:
-
getTags
A list of the tag keys and values that you want to associate with the domain list.- See Also:
-
builder
- Returns:
- a
CfnFirewallDomainListProps.Builder
ofCfnFirewallDomainListProps
-