Interface ClusterEvents.ECSTaskStateChange.NetworkInterfaceDetails
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ClusterEvents.ECSTaskStateChange.NetworkInterfaceDetails.Jsii$Proxy
- Enclosing class:
ClusterEvents.ECSTaskStateChange
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.ecs.events.*;
NetworkInterfaceDetails networkInterfaceDetails = NetworkInterfaceDetails.builder()
.attachmentId(List.of("attachmentId"))
.ipv6Address(List.of("ipv6Address"))
.privateIpv4Address(List.of("privateIpv4Address"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forClusterEvents.ECSTaskStateChange.NetworkInterfaceDetailsstatic final classAn implementation forClusterEvents.ECSTaskStateChange.NetworkInterfaceDetails -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) attachmentId property.(experimental) ipv6Address property.(experimental) privateIpv4Address property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttachmentId
(experimental) attachmentId property.Specify an array of string values to match this event if the actual value of attachmentId 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
-
getIpv6Address
(experimental) ipv6Address property.Specify an array of string values to match this event if the actual value of ipv6Address 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
-
getPrivateIpv4Address
(experimental) privateIpv4Address property.Specify an array of string values to match this event if the actual value of privateIpv4Address 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 ClusterEvents.ECSTaskStateChange.NetworkInterfaceDetails.Builder builder()
-