Interface ClusterEvents.ECSTaskStateChange.NetworkBindingDetails
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ClusterEvents.ECSTaskStateChange.NetworkBindingDetails.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.*;
NetworkBindingDetails networkBindingDetails = NetworkBindingDetails.builder()
.bindIp(List.of("bindIp"))
.containerPort(List.of("containerPort"))
.hostPort(List.of("hostPort"))
.protocol(List.of("protocol"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forClusterEvents.ECSTaskStateChange.NetworkBindingDetailsstatic final classAn implementation forClusterEvents.ECSTaskStateChange.NetworkBindingDetails -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) bindIP property.(experimental) containerPort property.(experimental) hostPort property.(experimental) protocol property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBindIp
(experimental) bindIP property.Specify an array of string values to match this event if the actual value of bindIP 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
-
getContainerPort
(experimental) containerPort property.Specify an array of string values to match this event if the actual value of containerPort 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
-
getHostPort
(experimental) hostPort property.Specify an array of string values to match this event if the actual value of hostPort 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
-
getProtocol
(experimental) protocol property.Specify an array of string values to match this event if the actual value of protocol 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.NetworkBindingDetails.Builder builder()
-