aws_sdk_gamelift/client/describe_matchmaking.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DescribeMatchmaking`](crate::operation::describe_matchmaking::builders::DescribeMatchmakingFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`ticket_ids(impl Into<String>)`](crate::operation::describe_matchmaking::builders::DescribeMatchmakingFluentBuilder::ticket_ids) / [`set_ticket_ids(Option<Vec::<String>>)`](crate::operation::describe_matchmaking::builders::DescribeMatchmakingFluentBuilder::set_ticket_ids):<br>required: **true**<br><p>A unique identifier for a matchmaking ticket. You can include up to 10 ID values.</p><br>
7 /// - On success, responds with [`DescribeMatchmakingOutput`](crate::operation::describe_matchmaking::DescribeMatchmakingOutput) with field(s):
8 /// - [`ticket_list(Option<Vec::<MatchmakingTicket>>)`](crate::operation::describe_matchmaking::DescribeMatchmakingOutput::ticket_list): <p>A collection of existing matchmaking ticket objects matching the request.</p>
9 /// - On failure, responds with [`SdkError<DescribeMatchmakingError>`](crate::operation::describe_matchmaking::DescribeMatchmakingError)
10 pub fn describe_matchmaking(&self) -> crate::operation::describe_matchmaking::builders::DescribeMatchmakingFluentBuilder {
11 crate::operation::describe_matchmaking::builders::DescribeMatchmakingFluentBuilder::new(self.handle.clone())
12 }
13}