interface DnsFirewallAlertItem
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53Resolver.Events.DNSFirewallAlert.DnsFirewallAlertItem |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53resolver/events#DNSFirewallAlert_DnsFirewallAlertItem |
Java | software.amazon.awscdk.mixins.preview.services.route53resolver.events.DNSFirewallAlert.DnsFirewallAlertItem |
Python | aws_cdk.mixins_preview.aws_route53resolver.events.DNSFirewallAlert.DnsFirewallAlertItem |
TypeScript | @aws-cdk/mixins-preview ยป aws_route53resolver ยป events ยป DNSFirewallAlert ยป DnsFirewallAlertItem |
Type definition for DNSFirewallAlertItem.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as route53resolver_events } from '@aws-cdk/mixins-preview/aws-route53resolver';
const dnsFirewallAlertItem: route53resolver_events.DNSFirewallAlert.DnsFirewallAlertItem = {
resolverEndpointDetails: {
id: ['id'],
},
resolverNetworkInterfaceDetails: {
id: ['id'],
},
resourceType: ['resourceType'],
};
Properties
| Name | Type | Description |
|---|---|---|
| resolver | Resolver | resolver-endpoint-details property. |
| resolver | Resolver | resolver-network-interface-details property. |
| resource | string[] | resource-type property. |
resolverEndpointDetails?
Type:
Resolver
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
resolverNetworkInterfaceDetails?
Type:
Resolver
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
resourceType?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript