Class CfnMatchmakingConfiguration.GamePropertyProperty
Set of key-value pairs that contain information about a game session.
Inheritance
System.Object
    CfnMatchmakingConfiguration.GamePropertyProperty
  Namespace: Amazon.CDK.AWS.GameLift
Assembly: Amazon.CDK.AWS.GameLift.dll
Syntax (csharp)
public class GamePropertyProperty : Object, CfnMatchmakingConfiguration.IGamePropertyPropertySyntax (vb)
Public Class GamePropertyProperty
    Inherits Object
    Implements CfnMatchmakingConfiguration.IGamePropertyPropertyRemarks
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
Constructors
| GamePropertyProperty() | 
Properties
| Key | The game property identifier. | 
| Value | The game property value. | 
Constructors
GamePropertyProperty()
public GamePropertyProperty()Properties
Key
The game property identifier.
public string Key { get; set; }Property Value
System.String
Remarks
Value
The game property value.
public string Value { get; set; }Property Value
System.String