aws_sdk_connectparticipant/client/disconnect_participant.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DisconnectParticipant`](crate::operation::disconnect_participant::builders::DisconnectParticipantFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`client_token(impl Into<String>)`](crate::operation::disconnect_participant::builders::DisconnectParticipantFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::disconnect_participant::builders::DisconnectParticipantFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p><br>
/// - [`connection_token(impl Into<String>)`](crate::operation::disconnect_participant::builders::DisconnectParticipantFluentBuilder::connection_token) / [`set_connection_token(Option<String>)`](crate::operation::disconnect_participant::builders::DisconnectParticipantFluentBuilder::set_connection_token):<br>required: **true**<br><p>The authentication token associated with the participant's connection.</p><br>
/// - On success, responds with [`DisconnectParticipantOutput`](crate::operation::disconnect_participant::DisconnectParticipantOutput)
/// - On failure, responds with [`SdkError<DisconnectParticipantError>`](crate::operation::disconnect_participant::DisconnectParticipantError)
pub fn disconnect_participant(&self) -> crate::operation::disconnect_participant::builders::DisconnectParticipantFluentBuilder {
crate::operation::disconnect_participant::builders::DisconnectParticipantFluentBuilder::new(self.handle.clone())
}
}