CreateMatchmakingRuleSetInput
public struct CreateMatchmakingRuleSetInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
A unique identifier for a matchmaking rule set. A matchmaking configuration identifies the rule set it uses by this name value. Note that the rule set name is different from the optional name field in the rule set body.
Declaration
Swift
public let name: String
-
A collection of matchmaking rules, formatted as a JSON string. Comments are not allowed in JSON, but most elements support a description field.
Declaration
Swift
public let ruleSetBody: String
-
A list of labels to assign to the new matchmaking rule set resource. Tags are developer-defined key-value pairs. Tagging AWS resources are useful for resource management, access management and cost allocation. For more information, see Tagging AWS Resources in the AWS General Reference. Once the resource is created, you can use TagResource, UntagResource, and ListTagsForResource to add, remove, and view tags. The maximum tag limit may be lower than stated. See the AWS General Reference for actual tagging limits.
Declaration
Swift
public let tags: [Tag]?
-
Undocumented
Declaration
Swift
public init(name: String, ruleSetBody: String, tags: [Tag]? = nil)
-
Declaration
Swift
public func validate(name: String) throws