Interface FirewallAttachmentStatusChanged.DataItem
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FirewallAttachmentStatusChanged.DataItem.Jsii$Proxy
- Enclosing class:
FirewallAttachmentStatusChanged
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.networkfirewall.events.*;
DataItem dataItem = DataItem.builder()
.availabilityZone(List.of("availabilityZone"))
.currentAttachmentStatus(List.of("currentAttachmentStatus"))
.endpointId(List.of("endpointId"))
.previousAttachmentStatus(List.of("previousAttachmentStatus"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forFirewallAttachmentStatusChanged.DataItemstatic final classAn implementation forFirewallAttachmentStatusChanged.DataItem -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) Availability Zone property.(experimental) Current Attachment Status property.(experimental) Endpoint ID property.(experimental) Previous Attachment Status property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAvailabilityZone
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getCurrentAttachmentStatus
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getEndpointId
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getPreviousAttachmentStatus
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-