Interface CfnMatchmakingConfiguration.IGamePropertyProperty
Set of key-value pairs that contain information about a game session.
Namespace: Amazon.CDK.AWS.GameLift
Assembly: Amazon.CDK.AWS.GameLift.dll
Syntax (csharp)
public interface IGamePropertyProperty
Syntax (vb)
Public Interface IGamePropertyProperty
Remarks
When included in a game session request, these properties communicate details to be used when setting up the new game session. For example, a game property might specify a game mode, level, or map. Game properties are passed to the game server process when initiating a new game session. For more information, see the Amazon GameLift Developer Guide .
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 gamePropertyProperty = new GamePropertyProperty {
Key = "key",
Value = "value"
};
Synopsis
Properties
| Key | The game property identifier. |
| Value | The game property value. |
Properties
Key
The game property identifier.
string Key { get; }
Property Value
System.String
Remarks
Value
The game property value.
string Value { get; }
Property Value
System.String