interface Data
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkFirewall.Events.FirewallTransitGatewayAttachmentStatusChanged.Data |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkfirewall/events#FirewallTransitGatewayAttachmentStatusChanged_Data |
Java | software.amazon.awscdk.mixins.preview.services.networkfirewall.events.FirewallTransitGatewayAttachmentStatusChanged.Data |
Python | aws_cdk.mixins_preview.aws_networkfirewall.events.FirewallTransitGatewayAttachmentStatusChanged.Data |
TypeScript | @aws-cdk/mixins-preview ยป aws_networkfirewall ยป events ยป FirewallTransitGatewayAttachmentStatusChanged ยป Data |
Type definition for Data.
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 data: networkfirewall_events.FirewallTransitGatewayAttachmentStatusChanged.Data = {
attachmentId: ['attachmentId'],
currentTransitGatewayAttachmentStatus: ['currentTransitGatewayAttachmentStatus'],
previousTransitGatewayAttachmentStatus: ['previousTransitGatewayAttachmentStatus'],
};
Properties
| Name | Type | Description |
|---|---|---|
| attachment | string[] | Attachment ID property. |
| current | string[] | Current Transit Gateway Attachment Status property. |
| previous | string[] | Previous Transit Gateway Attachment Status property. |
attachmentId?
Type:
string[]
(optional, default: Do not filter on this field)
Attachment ID property.
Specify an array of string values to match this event if the actual value of Attachment ID is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
currentTransitGatewayAttachmentStatus?
Type:
string[]
(optional, default: Do not filter on this field)
Current Transit Gateway Attachment Status property.
Specify an array of string values to match this event if the actual value of Current Transit Gateway 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.
previousTransitGatewayAttachmentStatus?
Type:
string[]
(optional, default: Do not filter on this field)
Previous Transit Gateway Attachment Status property.
Specify an array of string values to match this event if the actual value of Previous Transit Gateway 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