AWS Fundamentals Logo
AWS Fundamentals
AWS::GameLift::MatchmakingConfiguration

GameLift MatchmakingConfiguration

The AWS::GameLift::MatchmakingConfiguration resource creates an Amazon GameLift (GameLift) matchmaking configuration.

Properties

17 configurable properties. 4 required. Click a row to see details.

Filter:
PropertyTypeFlags
AcceptanceRequired
boolean
Required
Name
string
RequiredCreate-only
RequestTimeoutSeconds
integer
Required
RuleSetName
string
Required
AcceptanceTimeoutSeconds
integer
AdditionalPlayerCount
integer
BackfillMode
string
CreationTime
string
CustomEventData
string
Description
string
FlexMatchMode
string
GameProperties
Array<GameProperty>
GameSessionData
string
GameSessionQueueArns
Array<string>
NotificationTarget
string
RuleSetArn
string
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ArnstringThe Amazon Resource Name (ARN) that is assigned to a Amazon GameLift matchmaking configuration resource and uniquely identifies it.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::GameLift::MatchmakingConfiguration

Resources:
  MyResource:
    Type: AWS::GameLift::MatchmakingConfiguration
    Properties:
      AcceptanceRequired: true
      Name: "my-name"
      RequestTimeoutSeconds: 1
      RuleSetName: "my-rulesetname"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

gamelift:CreateMatchmakingConfigurationgamelift:ListTagsForResourcegamelift:TagResourcegamelift:DescribeMatchmakingConfigurations

read

gamelift:DescribeMatchmakingConfigurationsgamelift:ListTagsForResource

delete

gamelift:DescribeMatchmakingConfigurationsgamelift:DeleteMatchmakingConfiguration

list

gamelift:DescribeMatchmakingConfigurations

update

gamelift:DescribeMatchmakingConfigurationsgamelift:UpdateMatchmakingConfigurationgamelift:ListTagsForResourcegamelift:TagResourcegamelift:UntagResource

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceGameLift
Properties18
Required4
TaggingSupported
Primary IDName

Supported Operations

CreateReadDeleteListUpdate

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

Name

External Links