interface DNSFirewallAlertProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53Resolver.Events.DNSFirewallAlert.DNSFirewallAlertProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53resolver/events#DNSFirewallAlert_DNSFirewallAlertProps |
Java | software.amazon.awscdk.mixins.preview.services.route53resolver.events.DNSFirewallAlert.DNSFirewallAlertProps |
Python | aws_cdk.mixins_preview.aws_route53resolver.events.DNSFirewallAlert.DNSFirewallAlertProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_route53resolver ยป events ยป DNSFirewallAlert ยป DNSFirewallAlertProps |
Props type for aws.route53resolver@DNSFirewallAlert event.
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 dNSFirewallAlertProps: route53resolver_events.DNSFirewallAlert.DNSFirewallAlertProps = {
accountId: ['accountId'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
firewallDomainListId: ['firewallDomainListId'],
firewallRuleAction: ['firewallRuleAction'],
firewallRuleGroupId: ['firewallRuleGroupId'],
lastObservedAt: ['lastObservedAt'],
queryClass: ['queryClass'],
queryName: ['queryName'],
queryType: ['queryType'],
resources: [{
resolverEndpointDetails: {
id: ['id'],
},
resolverNetworkInterfaceDetails: {
id: ['id'],
},
resourceType: ['resourceType'],
}],
srcAddr: ['srcAddr'],
srcPort: ['srcPort'],
transport: ['transport'],
vpcId: ['vpcId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string[] | account-id property. |
| event | AWSEvent | EventBridge event metadata. |
| firewall | string[] | firewall-domain-list-id property. |
| firewall | string[] | firewall-rule-action property. |
| firewall | string[] | firewall-rule-group-id property. |
| last | string[] | last-observed-at property. |
| query | string[] | query-class property. |
| query | string[] | query-name property. |
| query | string[] | query-type property. |
| resources? | Dns[] | resources property. |
| src | string[] | src-addr property. |
| src | string[] | src-port property. |
| transport? | string[] | transport property. |
| vpc | string[] | vpc-id property. |
accountId?
Type:
string[]
(optional, default: Do not filter on this field)
account-id property.
Specify an array of string values to match this event if the actual value of account-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
firewallDomainListId?
Type:
string[]
(optional, default: Filter with the FirewallDomainList reference)
firewall-domain-list-id property.
Specify an array of string values to match this event if the actual value of firewall-domain-list-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
firewallRuleAction?
Type:
string[]
(optional, default: Do not filter on this field)
firewall-rule-action property.
Specify an array of string values to match this event if the actual value of firewall-rule-action is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
firewallRuleGroupId?
Type:
string[]
(optional, default: Do not filter on this field)
firewall-rule-group-id property.
Specify an array of string values to match this event if the actual value of firewall-rule-group-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
lastObservedAt?
Type:
string[]
(optional, default: Do not filter on this field)
last-observed-at property.
Specify an array of string values to match this event if the actual value of last-observed-at is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
queryClass?
Type:
string[]
(optional, default: Do not filter on this field)
query-class property.
Specify an array of string values to match this event if the actual value of query-class is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
queryName?
Type:
string[]
(optional, default: Do not filter on this field)
query-name property.
Specify an array of string values to match this event if the actual value of query-name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
queryType?
Type:
string[]
(optional, default: Do not filter on this field)
query-type property.
Specify an array of string values to match this event if the actual value of query-type is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
resources?
Type:
Dns[]
(optional, default: Do not filter on this field)
resources property.
Specify an array of string values to match this event if the actual value of resources is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
srcAddr?
Type:
string[]
(optional, default: Do not filter on this field)
src-addr property.
Specify an array of string values to match this event if the actual value of src-addr is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
srcPort?
Type:
string[]
(optional, default: Do not filter on this field)
src-port property.
Specify an array of string values to match this event if the actual value of src-port is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transport?
Type:
string[]
(optional, default: Do not filter on this field)
transport property.
Specify an array of string values to match this event if the actual value of transport is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
vpcId?
Type:
string[]
(optional, default: Do not filter on this field)
vpc-id property.
Specify an array of string values to match this event if the actual value of vpc-id 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