Class: Aws::GameLift::Types::ContainerDependency
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::ContainerDependency
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
**This data type is used with the Amazon GameLift containers feature, which is currently in public preview.**
A container’s dependency on another container in the same container group. The dependency impacts how the dependent container is able to start or shut down based the status of the other container.
For example, ContainerA is configured with the following dependency: a ‘START` dependency on ContainerB. This means that ContainerA can’t start until ContainerB has started. It also means that ContainerA must shut down before ContainerB.
**Part of:** ContainerDefinition
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#condition ⇒ String
The condition that the dependency container must reach before the dependent container can start.
-
#container_name ⇒ String
A descriptive label for the container definition that this container depends on.
Instance Attribute Details
#condition ⇒ String
The condition that the dependency container must reach before the dependent container can start. Valid conditions include:
-
START - The dependency container must have started.
-
COMPLETE - The dependency container has run to completion (exits). Use this condition with nonessential containers, such as those that run a script and then exit. The dependency container can’t be an essential container.
-
SUCCESS - The dependency container has run to completion and exited with a zero status. The dependency container can’t be an essential container.
-
HEALTHY - The dependency container has passed its Docker health check. Use this condition with dependency containers that have health checks configured. This condition is confirmed at container group startup only.
986 987 988 989 990 991 |
# File 'lib/aws-sdk-gamelift/types.rb', line 986 class ContainerDependency < Struct.new( :container_name, :condition) SENSITIVE = [] include Aws::Structure end |
#container_name ⇒ String
A descriptive label for the container definition that this container depends on.
986 987 988 989 990 991 |
# File 'lib/aws-sdk-gamelift/types.rb', line 986 class ContainerDependency < Struct.new( :container_name, :condition) SENSITIVE = [] include Aws::Structure end |