Interface CfnContainer.PublicEndpointProperty

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

@Stability(Stable) public static interface CfnContainer.PublicEndpointProperty extends software.amazon.jsii.JsiiSerializable
PublicEndpoint is a property of the ContainerServiceDeployment property. It describes describes the settings of the public endpoint of a container on a container service.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lightsail.*;
 PublicEndpointProperty publicEndpointProperty = PublicEndpointProperty.builder()
         .containerName("containerName")
         .containerPort(123)
         .healthCheckConfig(HealthCheckConfigProperty.builder()
                 .healthyThreshold(123)
                 .intervalSeconds(123)
                 .path("path")
                 .successCodes("successCodes")
                 .timeoutSeconds(123)
                 .unhealthyThreshold(123)
                 .build())
         .build();
 

See Also: