@Stability(value=Stable)
public static interface CfnContainer.PublicEndpointProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnContainer.PublicEndpointProperty.Builder
A builder for
CfnContainer.PublicEndpointProperty |
static class |
CfnContainer.PublicEndpointProperty.Jsii$Proxy
An implementation for
CfnContainer.PublicEndpointProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnContainer.PublicEndpointProperty.Builder |
builder() |
default String |
getContainerName()
The name of the container entry of the deployment that the endpoint configuration applies to.
|
default Number |
getContainerPort()
The port of the specified container to which traffic is forwarded to.
|
default Object |
getHealthCheckConfig()
An object that describes the health check configuration of the container.
|
@Stability(value=Stable) @Nullable default String getContainerName()
@Stability(value=Stable) @Nullable default Number getContainerPort()
@Stability(value=Stable) @Nullable default Object getHealthCheckConfig()
@Stability(value=Stable) static CfnContainer.PublicEndpointProperty.Builder builder()
Copyright © 2022. All rights reserved.