Interface DNSFirewallBlock.DnsFirewallBlockItem
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DNSFirewallBlock.DnsFirewallBlockItem.Jsii$Proxy
- Enclosing class:
DNSFirewallBlock
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.route53resolver.events.*;
DnsFirewallBlockItem dnsFirewallBlockItem = DnsFirewallBlockItem.builder()
.resolverEndpointDetails(ResolverEndpointDetails.builder()
.id(List.of("id"))
.build())
.resolverNetworkInterfaceDetails(ResolverNetworkInterfaceDetails.builder()
.id(List.of("id"))
.build())
.resourceType(List.of("resourceType"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDNSFirewallBlock.DnsFirewallBlockItemstatic final classAn implementation forDNSFirewallBlock.DnsFirewallBlockItem -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) resolver-endpoint-details property.(experimental) resolver-network-interface-details property.(experimental) resource-type property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResolverEndpointDetails
@Stability(Experimental) @Nullable default DNSFirewallBlock.ResolverEndpointDetails getResolverEndpointDetails()(experimental) resolver-endpoint-details property.Specify an array of string values to match this event if the actual value of resolver-endpoint-details is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getResolverNetworkInterfaceDetails
@Stability(Experimental) @Nullable default DNSFirewallBlock.ResolverNetworkInterfaceDetails getResolverNetworkInterfaceDetails()(experimental) resolver-network-interface-details property.Specify an array of string values to match this event if the actual value of resolver-network-interface-details is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getResourceType
(experimental) resource-type property.Specify an array of string values to match this event if the actual value of resource-type is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-