Show / Hide Table of Contents

Interface CfnContainer.IPublicEndpointProperty

PublicEndpoint is a property of the ContainerServiceDeployment property. It describes describes the settings of the public endpoint of a container on a container service.

Namespace: Amazon.CDK.AWS.Lightsail
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnContainer.IPublicEndpointProperty
Syntax (vb)
Public Interface CfnContainer.IPublicEndpointProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-container-publicendpoint.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Lightsail;

             var publicEndpointProperty = new PublicEndpointProperty {
                 ContainerName = "containerName",
                 ContainerPort = 123,
                 HealthCheckConfig = new HealthCheckConfigProperty {
                     HealthyThreshold = 123,
                     IntervalSeconds = 123,
                     Path = "path",
                     SuccessCodes = "successCodes",
                     TimeoutSeconds = 123,
                     UnhealthyThreshold = 123
                 }
             };

Synopsis

Properties

ContainerName

The name of the container entry of the deployment that the endpoint configuration applies to.

ContainerPort

The port of the specified container to which traffic is forwarded to.

HealthCheckConfig

An object that describes the health check configuration of the container.

Properties

ContainerName

The name of the container entry of the deployment that the endpoint configuration applies to.

string? ContainerName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-container-publicendpoint.html#cfn-lightsail-container-publicendpoint-containername

ContainerPort

The port of the specified container to which traffic is forwarded to.

double? ContainerPort { get; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-container-publicendpoint.html#cfn-lightsail-container-publicendpoint-containerport

HealthCheckConfig

An object that describes the health check configuration of the container.

object? HealthCheckConfig { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-container-publicendpoint.html#cfn-lightsail-container-publicendpoint-healthcheckconfig

Back to top Generated by DocFX