Class: Aws::Lightsail::Types::EndpointRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::EndpointRequest
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Note:
When making an API call, you may pass EndpointRequest data as a hash:
{
container_name: "string", # required
container_port: 1, # required
health_check: {
healthy_threshold: 1,
unhealthy_threshold: 1,
timeout_seconds: 1,
interval_seconds: 1,
path: "string",
success_codes: "string",
},
}
Describes the settings of a public endpoint for an Amazon Lightsail container service.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_name ⇒ String
The name of the container for the endpoint.
-
#container_port ⇒ Integer
The port of the 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 for the endpoint.
6935 6936 6937 6938 6939 6940 6941 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 6935 class EndpointRequest < Struct.new( :container_name, :container_port, :health_check) SENSITIVE = [] include Aws::Structure end |
#container_port ⇒ Integer
The port of the container to which traffic is forwarded to.
6935 6936 6937 6938 6939 6940 6941 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 6935 class EndpointRequest < 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.
6935 6936 6937 6938 6939 6940 6941 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 6935 class EndpointRequest < Struct.new( :container_name, :container_port, :health_check) SENSITIVE = [] include Aws::Structure end |