@aws-cdk_aws-gamelift-alpha.MatchmakingConfigurationAttributes

interface MatchmakingConfigurationAttributes ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.GameLift.Alpha.MatchmakingConfigurationAttributes
Gogithub.com/aws/aws-cdk-go/awscdkgameliftalpha/v2#MatchmakingConfigurationAttributes
Javasoftware.amazon.awscdk.services.gamelift.alpha.MatchmakingConfigurationAttributes
Pythonaws_cdk.aws_gamelift_alpha.MatchmakingConfigurationAttributes
TypeScript (source)@aws-cdk/aws-gamelift-alpha ยป MatchmakingConfigurationAttributes

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

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as gamelift_alpha from '@aws-cdk/aws-gamelift-alpha';
import { aws_sns as sns } from 'aws-cdk-lib';

declare const topic: sns.Topic;
const matchmakingConfigurationAttributes: gamelift_alpha.MatchmakingConfigurationAttributes = {
  matchmakingConfigurationArn: 'matchmakingConfigurationArn',
  matchmakingConfigurationName: 'matchmakingConfigurationName',
  notificationTarget: topic,
};

Properties

NameTypeDescription
matchmakingConfigurationArn?๐Ÿ”นstringThe ARN of the Matchmaking configuration.
matchmakingConfigurationName?๐Ÿ”นstringThe identifier of the Matchmaking configuration.
notificationTarget?๐Ÿ”นITopicAn SNS topic ARN that is set up to receive matchmaking notifications.

matchmakingConfigurationArn?๐Ÿ”น

Type: string (optional, default: derived from matchmakingConfigurationName.)

The ARN of the Matchmaking configuration.

At least one of matchmakingConfigurationArn and matchmakingConfigurationName must be provided.


matchmakingConfigurationName?๐Ÿ”น

Type: string (optional, default: derived from matchmakingConfigurationArn.)

The identifier of the Matchmaking configuration.

At least one of matchmakingConfigurationName and matchmakingConfigurationArn must be provided.


notificationTarget?๐Ÿ”น

Type: ITopic (optional, default: no notification target binded to imported ressource)

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

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