interface DataItem
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkFirewall.Events.FirewallConfigurationChanged.DataItem |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkfirewall/events#FirewallConfigurationChanged_DataItem |
Java | software.amazon.awscdk.mixins.preview.services.networkfirewall.events.FirewallConfigurationChanged.DataItem |
Python | aws_cdk.mixins_preview.aws_networkfirewall.events.FirewallConfigurationChanged.DataItem |
TypeScript | @aws-cdk/mixins-preview ยป aws_networkfirewall ยป events ยป FirewallConfigurationChanged ยป 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.FirewallConfigurationChanged.DataItem = {
availabilityZone: ['availabilityZone'],
configurationResourceArn: ['configurationResourceArn'],
currentConfigurationSyncStatus: ['currentConfigurationSyncStatus'],
currentConfigurationUpdateToken: ['currentConfigurationUpdateToken'],
previousConfigurationSyncStatus: ['previousConfigurationSyncStatus'],
previousConfigurationUpdateToken: ['previousConfigurationUpdateToken'],
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string[] | Availability Zone property. |
| configuration | string[] | Configuration Resource ARN property. |
| current | string[] | Current Configuration Sync Status property. |
| current | string[] | Current Configuration Update Token property. |
| previous | string[] | Previous Configuration Sync Status property. |
| previous | string[] | Previous Configuration Update Token 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.
configurationResourceArn?
Type:
string[]
(optional, default: Do not filter on this field)
Configuration Resource ARN property.
Specify an array of string values to match this event if the actual value of Configuration Resource ARN is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
currentConfigurationSyncStatus?
Type:
string[]
(optional, default: Do not filter on this field)
Current Configuration Sync Status property.
Specify an array of string values to match this event if the actual value of Current Configuration Sync Status is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
currentConfigurationUpdateToken?
Type:
string[]
(optional, default: Do not filter on this field)
Current Configuration Update Token property.
Specify an array of string values to match this event if the actual value of Current Configuration Update Token is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
previousConfigurationSyncStatus?
Type:
string[]
(optional, default: Do not filter on this field)
Previous Configuration Sync Status property.
Specify an array of string values to match this event if the actual value of Previous Configuration Sync Status is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
previousConfigurationUpdateToken?
Type:
string[]
(optional, default: Do not filter on this field)
Previous Configuration Update Token property.
Specify an array of string values to match this event if the actual value of Previous Configuration Update Token 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