interface DataItem
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkFirewall.Events.FirewallAttachmentStatusChanged.DataItem |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkfirewall/events#FirewallAttachmentStatusChanged_DataItem |
Java | software.amazon.awscdk.mixins.preview.services.networkfirewall.events.FirewallAttachmentStatusChanged.DataItem |
Python | aws_cdk.mixins_preview.aws_networkfirewall.events.FirewallAttachmentStatusChanged.DataItem |
TypeScript | @aws-cdk/mixins-preview ยป aws_networkfirewall ยป events ยป FirewallAttachmentStatusChanged ยป DataItem |
Type definition for DataItem.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as networkfirewall_events } from '@aws-cdk/mixins-preview/aws-networkfirewall';
const dataItem: networkfirewall_events.FirewallAttachmentStatusChanged.DataItem = {
availabilityZone: ['availabilityZone'],
currentAttachmentStatus: ['currentAttachmentStatus'],
endpointId: ['endpointId'],
previousAttachmentStatus: ['previousAttachmentStatus'],
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string[] | Availability Zone property. |
| current | string[] | Current Attachment Status property. |
| endpoint | string[] | Endpoint ID property. |
| previous | string[] | Previous Attachment Status property. |
availabilityZone?
Type:
string[]
(optional, default: Do not filter on this field)
Availability Zone property.
Specify an array of string values to match this event if the actual value of Availability Zone is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
currentAttachmentStatus?
Type:
string[]
(optional, default: Do not filter on this field)
Current Attachment Status property.
Specify an array of string values to match this event if the actual value of Current Attachment Status is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
endpointId?
Type:
string[]
(optional, default: Do not filter on this field)
Endpoint ID property.
Specify an array of string values to match this event if the actual value of Endpoint ID is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
previousAttachmentStatus?
Type:
string[]
(optional, default: Do not filter on this field)
Previous Attachment Status property.
Specify an array of string values to match this event if the actual value of Previous Attachment Status 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