Class FirewallDomainList
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.Resource
software.amazon.awscdk.services.route53resolver.FirewallDomainList
- All Implemented Interfaces:
IConstruct
,IDependable
,IResource
,IFirewallDomainList
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:40.405Z")
@Stability(Experimental)
public class FirewallDomainList
extends Resource
implements IFirewallDomainList
(experimental) A Firewall Domain List.
Example:
FirewallDomainList blockList = FirewallDomainList.Builder.create(this, "BlockList") .domains(FirewallDomains.fromList(List.of("bad-domain.com", "bot-domain.net"))) .build(); FirewallDomainList s3List = FirewallDomainList.Builder.create(this, "S3List") .domains(FirewallDomains.fromS3Url("s3://bucket/prefix/object")) .build(); FirewallDomainList assetList = FirewallDomainList.Builder.create(this, "AssetList") .domains(FirewallDomains.fromAsset("/path/to/domains.txt")) .build();
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
(experimental) A fluent builder forFirewallDomainList
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.route53resolver.IFirewallDomainList
IFirewallDomainList.Jsii$Default, IFirewallDomainList.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IResource
IResource.Jsii$Default
-
Constructor Summary
ModifierConstructorDescriptionprotected
FirewallDomainList
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
FirewallDomainList
(software.amazon.jsii.JsiiObjectRef objRef) FirewallDomainList
(software.constructs.Construct scope, String id, FirewallDomainListProps props) -
Method Summary
Modifier and TypeMethodDescriptionstatic IFirewallDomainList
fromFirewallDomainListId
(software.constructs.Construct scope, String id, String firewallDomainListId) (experimental) Import an existing Firewall Rule Group.(experimental) The ARN (Amazon Resource Name) of the domain list.(experimental) The date and time that the domain list was created.(experimental) The creator request ID.(experimental) The number of domains in the list.(experimental) The ID of the domain list.(experimental) The owner of the list, used only for lists that are not managed by you.(experimental) The date and time that the domain list was last modified.(experimental) The status of the domain list.(experimental) Additional information about the status of the rule group.Methods inherited from class software.amazon.awscdk.core.Resource
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isResource
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
Methods inherited from class software.constructs.Construct
toString
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.awscdk.core.IConstruct
getNode
Methods inherited from interface software.amazon.awscdk.core.IResource
applyRemovalPolicy, getEnv, getStack
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
FirewallDomainList
protected FirewallDomainList(software.amazon.jsii.JsiiObjectRef objRef) -
FirewallDomainList
protected FirewallDomainList(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
FirewallDomainList
@Stability(Experimental) public FirewallDomainList(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull FirewallDomainListProps props) - Parameters:
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.
-
-
Method Details
-
fromFirewallDomainListId
@Stability(Experimental) @NotNull public static IFirewallDomainList fromFirewallDomainListId(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String firewallDomainListId) (experimental) Import an existing Firewall Rule Group.- Parameters:
scope
- This parameter is required.id
- This parameter is required.firewallDomainListId
- This parameter is required.
-
getFirewallDomainListArn
(experimental) The ARN (Amazon Resource Name) of the domain list. -
getFirewallDomainListCreationTime
(experimental) The date and time that the domain list was created. -
getFirewallDomainListCreatorRequestId
(experimental) The creator request ID. -
getFirewallDomainListDomainCount
(experimental) The number of domains in the list. -
getFirewallDomainListId
(experimental) The ID of the domain list.- Specified by:
getFirewallDomainListId
in interfaceIFirewallDomainList
-
getFirewallDomainListManagedOwnerName
(experimental) The owner of the list, used only for lists that are not managed by you.For example, the managed domain list
AWSManagedDomainsMalwareDomainList
has the managed owner nameRoute 53 Resolver DNS Firewall
. -
getFirewallDomainListModificationTime
(experimental) The date and time that the domain list was last modified. -
getFirewallDomainListStatus
(experimental) The status of the domain list. -
getFirewallDomainListStatusMessage
(experimental) Additional information about the status of the rule group.
-