aws_sdk_connectparticipant/client/cancel_participant_authentication.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CancelParticipantAuthentication`](crate::operation::cancel_participant_authentication::builders::CancelParticipantAuthenticationFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`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>
/// - [`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>
/// - On success, responds with [`CancelParticipantAuthenticationOutput`](crate::operation::cancel_participant_authentication::CancelParticipantAuthenticationOutput)
/// - On failure, responds with [`SdkError<CancelParticipantAuthenticationError>`](crate::operation::cancel_participant_authentication::CancelParticipantAuthenticationError)
pub fn cancel_participant_authentication(
&self,
) -> crate::operation::cancel_participant_authentication::builders::CancelParticipantAuthenticationFluentBuilder {
crate::operation::cancel_participant_authentication::builders::CancelParticipantAuthenticationFluentBuilder::new(self.handle.clone())
}
}