Interface FirewallAttachmentStatusChanged.FirewallAttachmentStatusChangedProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FirewallAttachmentStatusChanged.FirewallAttachmentStatusChangedProps.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.*;
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forFirewallAttachmentStatusChanged.FirewallAttachmentStatusChangedProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()getData()(experimental) data property.default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) metadata property.(experimental) version property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getData
(experimental) data property.Specify an array of string values to match this event if the actual value of data 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
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
getMetadata
(experimental) metadata property.Specify an array of string values to match this event if the actual value of metadata 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
-
getVersion
(experimental) version property.Specify an array of string values to match this event if the actual value of version 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
@Stability(Experimental) static FirewallAttachmentStatusChanged.FirewallAttachmentStatusChangedProps.Builder builder()
-