Interface CfnContainerGroupDefinition.IContainerEnvironmentProperty
An environment variable to set inside a container, in the form of a key-value pair.
Namespace: Amazon.CDK.AWS.GameLift
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IContainerEnvironmentProperty
Syntax (vb)
Public Interface IContainerEnvironmentProperty
Remarks
Part of: GameServerContainerDefinition , GameServerContainerDefinitionInput , SupportContainerDefinition , SupportContainerDefinitionInput
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
Properties
Name | The environment variable name. |
Value | The environment variable value. |
Properties
Name
The environment variable name.
string Name { get; }
Property Value
System.String
Remarks
Value
The environment variable value.
string Value { get; }
Property Value
System.String