Interface CfnVirtualNodePropsMixin.OutlierDetectionProperty

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

@Stability(Stable) public static interface CfnVirtualNodePropsMixin.OutlierDetectionProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the outlier detection for a virtual node's listener.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.appmesh.*;
 OutlierDetectionProperty outlierDetectionProperty = OutlierDetectionProperty.builder()
         .baseEjectionDuration(DurationProperty.builder()
                 .unit("unit")
                 .value(123)
                 .build())
         .interval(DurationProperty.builder()
                 .unit("unit")
                 .value(123)
                 .build())
         .maxEjectionPercent(123)
         .maxServerErrors(123)
         .build();
 

See Also: