aws_sdk_gamelift/client/
delete_matchmaking_configuration.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 [`DeleteMatchmakingConfiguration`](crate::operation::delete_matchmaking_configuration::builders::DeleteMatchmakingConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`name(impl Into<String>)`](crate::operation::delete_matchmaking_configuration::builders::DeleteMatchmakingConfigurationFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::delete_matchmaking_configuration::builders::DeleteMatchmakingConfigurationFluentBuilder::set_name):<br>required: **true**<br><p>A unique identifier for the matchmaking configuration. You can use either the configuration name or ARN value.</p><br>
7    /// - On success, responds with [`DeleteMatchmakingConfigurationOutput`](crate::operation::delete_matchmaking_configuration::DeleteMatchmakingConfigurationOutput)
8    /// - On failure, responds with [`SdkError<DeleteMatchmakingConfigurationError>`](crate::operation::delete_matchmaking_configuration::DeleteMatchmakingConfigurationError)
9    pub fn delete_matchmaking_configuration(
10        &self,
11    ) -> crate::operation::delete_matchmaking_configuration::builders::DeleteMatchmakingConfigurationFluentBuilder {
12        crate::operation::delete_matchmaking_configuration::builders::DeleteMatchmakingConfigurationFluentBuilder::new(self.handle.clone())
13    }
14}