Interface FirewallAttachmentStatusChanged.FirewallAttachmentStatusChangedProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
FirewallAttachmentStatusChanged.FirewallAttachmentStatusChangedProps.Jsii$Proxy
Enclosing class:
FirewallAttachmentStatusChanged

@Stability(Experimental) public static interface FirewallAttachmentStatusChanged.FirewallAttachmentStatusChangedProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.networkfirewall@FirewallAttachmentStatusChanged event.

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.*;
 FirewallAttachmentStatusChangedProps firewallAttachmentStatusChangedProps = FirewallAttachmentStatusChangedProps.builder()
         .data(List.of(DataItem.builder()
                 .availabilityZone(List.of("availabilityZone"))
                 .currentAttachmentStatus(List.of("currentAttachmentStatus"))
                 .endpointId(List.of("endpointId"))
                 .previousAttachmentStatus(List.of("previousAttachmentStatus"))
                 .build()))
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .metadata(Metadata.builder()
                 .stateChangeId(List.of("stateChangeId"))
                 .build())
         .version(List.of("version"))
         .build();