Show / Hide Table of Contents

Interface IMatchmakingConfigurationAttributes

(experimental) A full specification of a matchmaking configuration that can be used to import it fluently into the CDK application.

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

Stability: Experimental

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.Alpha;
             using Amazon.CDK.AWS.SNS;

             Topic topic;

             var matchmakingConfigurationAttributes = new MatchmakingConfigurationAttributes {
                 MatchmakingConfigurationArn = "matchmakingConfigurationArn",
                 MatchmakingConfigurationName = "matchmakingConfigurationName",
                 NotificationTarget = topic
             };

Synopsis

Properties

MatchmakingConfigurationArn

(experimental) The ARN of the Matchmaking configuration.

MatchmakingConfigurationName

(experimental) The identifier of the Matchmaking configuration.

NotificationTarget

(experimental) An SNS topic ARN that is set up to receive matchmaking notifications.

Properties

MatchmakingConfigurationArn

(experimental) The ARN of the Matchmaking configuration.

string? MatchmakingConfigurationArn { get; }
Property Value

string

Remarks

At least one of matchmakingConfigurationArn and matchmakingConfigurationName must be provided.

Default: derived from matchmakingConfigurationName.

Stability: Experimental

MatchmakingConfigurationName

(experimental) The identifier of the Matchmaking configuration.

string? MatchmakingConfigurationName { get; }
Property Value

string

Remarks

At least one of matchmakingConfigurationName and matchmakingConfigurationArn must be provided.

Default: derived from matchmakingConfigurationArn.

Stability: Experimental

NotificationTarget

(experimental) An SNS topic ARN that is set up to receive matchmaking notifications.

ITopic? NotificationTarget { get; }
Property Value

ITopic

Remarks

Default: no notification target binded to imported ressource

Stability: Experimental

See: https://docs.aws.amazon.com/gamelift/latest/flexmatchguide/match-notification.html

Back to top Generated by DocFX