Class: Aws::Lightsail::Types::ContainerServiceEndpoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::ContainerServiceEndpoint
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lightsail/types.rb
Overview
Describes the public endpoint configuration of a deployment of an Amazon Lightsail container service.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_name ⇒ String
The name of the container entry of the deployment that the endpoint configuration applies to.
-
#container_port ⇒ Integer
The port of the specified container to which traffic is forwarded to.
-
#health_check ⇒ Types::ContainerServiceHealthCheckConfig
An object that describes the health check configuration of the container.
Instance Attribute Details
#container_name ⇒ String
The name of the container entry of the deployment that the endpoint configuration applies to.
2455 2456 2457 2458 2459 2460 2461 |
# File 'lib/aws-sdk-lightsail/types.rb', line 2455 class ContainerServiceEndpoint < Struct.new( :container_name, :container_port, :health_check) SENSITIVE = [] include Aws::Structure end |
#container_port ⇒ Integer
The port of the specified container to which traffic is forwarded to.
2455 2456 2457 2458 2459 2460 2461 |
# File 'lib/aws-sdk-lightsail/types.rb', line 2455 class ContainerServiceEndpoint < Struct.new( :container_name, :container_port, :health_check) SENSITIVE = [] include Aws::Structure end |
#health_check ⇒ Types::ContainerServiceHealthCheckConfig
An object that describes the health check configuration of the container.
2455 2456 2457 2458 2459 2460 2461 |
# File 'lib/aws-sdk-lightsail/types.rb', line 2455 class ContainerServiceEndpoint < Struct.new( :container_name, :container_port, :health_check) SENSITIVE = [] include Aws::Structure end |