[][src]Struct rusoto_gamelift::DescribeMatchmakingConfigurationsInput

pub struct DescribeMatchmakingConfigurationsInput {
    pub limit: Option<i64>,
    pub names: Option<Vec<String>>,
    pub next_token: Option<String>,
    pub rule_set_name: Option<String>,
}

Represents the input for a request action.

Fields

limit: Option<i64>

The maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages. This parameter is limited to 10.

names: Option<Vec<String>>

A unique identifier for a matchmaking configuration(s) to retrieve. You can use either the configuration name or ARN value. To request all existing configurations, leave this parameter empty.

next_token: Option<String>

A token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.

rule_set_name: Option<String>

A unique identifier for a matchmaking rule set. You can use either the rule set name or ARN value. Use this parameter to retrieve all matchmaking configurations that use this rule set.

Trait Implementations

impl Clone for DescribeMatchmakingConfigurationsInput[src]

impl Debug for DescribeMatchmakingConfigurationsInput[src]

impl Default for DescribeMatchmakingConfigurationsInput[src]

impl PartialEq<DescribeMatchmakingConfigurationsInput> for DescribeMatchmakingConfigurationsInput[src]

impl Serialize for DescribeMatchmakingConfigurationsInput[src]

impl StructuralPartialEq for DescribeMatchmakingConfigurationsInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.