aws_sdk_ssmguiconnect/client/
delete_connection_recording_preferences.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 [`DeleteConnectionRecordingPreferences`](crate::operation::delete_connection_recording_preferences::builders::DeleteConnectionRecordingPreferencesFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`client_token(impl Into<String>)`](crate::operation::delete_connection_recording_preferences::builders::DeleteConnectionRecordingPreferencesFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::delete_connection_recording_preferences::builders::DeleteConnectionRecordingPreferencesFluentBuilder::set_client_token):<br>required: **false**<br><p>User-provided idempotency token.</p><br>
7    /// - On success, responds with [`DeleteConnectionRecordingPreferencesOutput`](crate::operation::delete_connection_recording_preferences::DeleteConnectionRecordingPreferencesOutput) with field(s):
8    ///   - [`client_token(Option<String>)`](crate::operation::delete_connection_recording_preferences::DeleteConnectionRecordingPreferencesOutput::client_token): <p>Service-provided idempotency token.</p>
9    /// - On failure, responds with [`SdkError<DeleteConnectionRecordingPreferencesError>`](crate::operation::delete_connection_recording_preferences::DeleteConnectionRecordingPreferencesError)
10    pub fn delete_connection_recording_preferences(
11        &self,
12    ) -> crate::operation::delete_connection_recording_preferences::builders::DeleteConnectionRecordingPreferencesFluentBuilder {
13        crate::operation::delete_connection_recording_preferences::builders::DeleteConnectionRecordingPreferencesFluentBuilder::new(
14            self.handle.clone(),
15        )
16    }
17}