Show / Hide Table of Contents

Interface CfnContainerGroupDefinition.IContainerDependencyProperty

A container's dependency on another container in the same container group.

Namespace: Amazon.CDK.AWS.GameLift
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IContainerDependencyProperty
Syntax (vb)
Public Interface IContainerDependencyProperty
Remarks

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: GameServerContainerDefinition , GameServerContainerDefinitionInput , SupportContainerDefinition , SupportContainerDefinitionInput

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerdependency.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.GameLift;

var containerDependencyProperty = new ContainerDependencyProperty {
    Condition = "condition",
    ContainerName = "containerName"
};

Synopsis

Properties

Condition

The condition that the dependency container must reach before the dependent container can start. Valid conditions include:.

ContainerName

A descriptive label for the container definition that this container depends on.

Properties

Condition

The condition that the dependency container must reach before the dependent container can start. Valid conditions include:.

string Condition { get; }
Property Value

System.String

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerdependency.html#cfn-gamelift-containergroupdefinition-containerdependency-condition

    ContainerName

    A descriptive label for the container definition that this container depends on.

    string ContainerName { get; }
    Property Value

    System.String

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerdependency.html#cfn-gamelift-containergroupdefinition-containerdependency-containername

    Back to top Generated by DocFX