pub struct CreateMatchmakingRuleSetInput {
pub name: String,
pub rule_set_body: String,
pub tags: Option<Vec<Tag>>,
}Expand description
Represents the input for a request action.
Fields§
§name: StringA 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.
rule_set_body: StringA collection of matchmaking rules, formatted as a JSON string. Comments are not allowed in JSON, but most elements support a description field.
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.
Trait Implementations§
Source§impl Clone for CreateMatchmakingRuleSetInput
impl Clone for CreateMatchmakingRuleSetInput
Source§fn clone(&self) -> CreateMatchmakingRuleSetInput
fn clone(&self) -> CreateMatchmakingRuleSetInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for CreateMatchmakingRuleSetInput
impl Default for CreateMatchmakingRuleSetInput
Source§fn default() -> CreateMatchmakingRuleSetInput
fn default() -> CreateMatchmakingRuleSetInput
Source§impl PartialEq for CreateMatchmakingRuleSetInput
impl PartialEq for CreateMatchmakingRuleSetInput
Source§fn eq(&self, other: &CreateMatchmakingRuleSetInput) -> bool
fn eq(&self, other: &CreateMatchmakingRuleSetInput) -> bool
self and other values to be equal, and is used by ==.