Show / Hide Table of Contents

Class CfnContainerGroupDefinition.ContainerEnvironmentProperty

An environment variable to set inside a container, in the form of a key-value pair.

Inheritance
object
CfnContainerGroupDefinition.ContainerEnvironmentProperty
Implements
CfnContainerGroupDefinition.IContainerEnvironmentProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.GameLift
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnContainerGroupDefinition.ContainerEnvironmentProperty : CfnContainerGroupDefinition.IContainerEnvironmentProperty
Syntax (vb)
Public Class CfnContainerGroupDefinition.ContainerEnvironmentProperty Implements CfnContainerGroupDefinition.IContainerEnvironmentProperty
Remarks

Part of: GameServerContainerDefinition , GameServerContainerDefinitionInput , SupportContainerDefinition , SupportContainerDefinitionInput

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerenvironment.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 containerEnvironmentProperty = new ContainerEnvironmentProperty {
                 Name = "name",
                 Value = "value"
             };

Synopsis

Constructors

ContainerEnvironmentProperty()

An environment variable to set inside a container, in the form of a key-value pair.

Properties

Name

The environment variable name.

Value

The environment variable value.

Constructors

ContainerEnvironmentProperty()

An environment variable to set inside a container, in the form of a key-value pair.

public ContainerEnvironmentProperty()
Remarks

Part of: GameServerContainerDefinition , GameServerContainerDefinitionInput , SupportContainerDefinition , SupportContainerDefinitionInput

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerenvironment.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 containerEnvironmentProperty = new ContainerEnvironmentProperty {
                 Name = "name",
                 Value = "value"
             };

Properties

Name

The environment variable name.

public string Name { get; set; }
Property Value

string

Remarks

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

Value

The environment variable value.

public string Value { get; set; }
Property Value

string

Remarks

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

Implements

CfnContainerGroupDefinition.IContainerEnvironmentProperty
Back to top Generated by DocFX