Interface CfnContainerGroupDefinition.ContainerDependencyProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnContainerGroupDefinition.ContainerDependencyProperty.Jsii$Proxy
Enclosing class:
CfnContainerGroupDefinition

@Stability(Stable) public static interface CfnContainerGroupDefinition.ContainerDependencyProperty extends software.amazon.jsii.JsiiSerializable
*This data type is currently not available.

It is under improvement as we respond to customer feedback from the Containers 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

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.gamelift.*;
 ContainerDependencyProperty containerDependencyProperty = ContainerDependencyProperty.builder()
         .condition("condition")
         .containerName("containerName")
         .build();
 

See Also: