aws_sdk_gamelift/client/
stop_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 [`StopMatchmaking`](crate::operation::stop_matchmaking::builders::StopMatchmakingFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`ticket_id(impl Into<String>)`](crate::operation::stop_matchmaking::builders::StopMatchmakingFluentBuilder::ticket_id) / [`set_ticket_id(Option<String>)`](crate::operation::stop_matchmaking::builders::StopMatchmakingFluentBuilder::set_ticket_id):<br>required: **true**<br><p>A unique identifier for a matchmaking ticket.</p><br>
7    /// - On success, responds with [`StopMatchmakingOutput`](crate::operation::stop_matchmaking::StopMatchmakingOutput)
8    /// - On failure, responds with [`SdkError<StopMatchmakingError>`](crate::operation::stop_matchmaking::StopMatchmakingError)
9    pub fn stop_matchmaking(&self) -> crate::operation::stop_matchmaking::builders::StopMatchmakingFluentBuilder {
10        crate::operation::stop_matchmaking::builders::StopMatchmakingFluentBuilder::new(self.handle.clone())
11    }
12}