AWS Fundamentals Logo
AWS Fundamentals
AWS::GameLift::MatchmakingRuleSet

GameLift MatchmakingRuleSet

The AWS::GameLift::MatchmakingRuleSet resource creates an Amazon GameLift (GameLift) matchmaking rule set.

Properties

3 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
Name
string
RequiredCreate-only
RuleSetBody
string
RequiredCreate-only
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 rule set resource and uniquely identifies it.
CreationTimestringA time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds.

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::MatchmakingRuleSet

Resources:
  MyResource:
    Type: AWS::GameLift::MatchmakingRuleSet
    Properties:
      Name: "my-name"
      RuleSetBody: "value"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

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

create

gamelift:CreateMatchmakingRuleSetgamelift:DescribeMatchmakingRuleSetsgamelift:ValidateMatchmakingRuleSetgamelift:ListTagsForResourcegamelift:TagResource

read

gamelift:DescribeMatchmakingRuleSetsgamelift:ValidateMatchmakingRuleSetgamelift:ListTagsForResource

delete

gamelift:DeleteMatchmakingRuleSet

update

gamelift:DescribeMatchmakingRuleSetsgamelift:ListTagsForResourcegamelift:TagResourcegamelift:UntagResource

list

gamelift:DescribeMatchmakingRuleSets

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
Properties5
Required2
TaggingSupported
Primary IDName

Supported Operations

CreateReadDeleteUpdateList

Immutable After Creation

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

NameRuleSetBody

External Links