Show / Hide Table of Contents

Class CfnContainer.PublicEndpointProperty

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

Inheritance
object
CfnContainer.PublicEndpointProperty
Implements
CfnContainer.IPublicEndpointProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Lightsail
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnContainer.PublicEndpointProperty : CfnContainer.IPublicEndpointProperty
Syntax (vb)
Public Class CfnContainer.PublicEndpointProperty Implements 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

Constructors

PublicEndpointProperty()

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

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.

Constructors

PublicEndpointProperty()

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

public PublicEndpointProperty()
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
                 }
             };

Properties

ContainerName

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

public string? ContainerName { get; set; }
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.

public double? ContainerPort { get; set; }
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.

public object? HealthCheckConfig { get; set; }
Property Value

object

Remarks

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

Implements

CfnContainer.IPublicEndpointProperty
Back to top Generated by DocFX