aws_sdk_connectparticipant/client/
cancel_participant_authentication.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 [`CancelParticipantAuthentication`](crate::operation::cancel_participant_authentication::builders::CancelParticipantAuthenticationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`session_id(impl Into<String>)`](crate::operation::cancel_participant_authentication::builders::CancelParticipantAuthenticationFluentBuilder::session_id) / [`set_session_id(Option<String>)`](crate::operation::cancel_participant_authentication::builders::CancelParticipantAuthenticationFluentBuilder::set_session_id):<br>required: **true**<br><p>The <code>sessionId</code> provided in the <code>authenticationInitiated</code> event.</p><br>
7    ///   - [`connection_token(impl Into<String>)`](crate::operation::cancel_participant_authentication::builders::CancelParticipantAuthenticationFluentBuilder::connection_token) / [`set_connection_token(Option<String>)`](crate::operation::cancel_participant_authentication::builders::CancelParticipantAuthenticationFluentBuilder::set_connection_token):<br>required: **true**<br><p>The authentication token associated with the participant's connection.</p><br>
8    /// - On success, responds with [`CancelParticipantAuthenticationOutput`](crate::operation::cancel_participant_authentication::CancelParticipantAuthenticationOutput)
9    /// - On failure, responds with [`SdkError<CancelParticipantAuthenticationError>`](crate::operation::cancel_participant_authentication::CancelParticipantAuthenticationError)
10    pub fn cancel_participant_authentication(
11        &self,
12    ) -> crate::operation::cancel_participant_authentication::builders::CancelParticipantAuthenticationFluentBuilder {
13        crate::operation::cancel_participant_authentication::builders::CancelParticipantAuthenticationFluentBuilder::new(self.handle.clone())
14    }
15}