aws_sdk_connect/client/start_screen_sharing.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`StartScreenSharing`](crate::operation::start_screen_sharing::builders::StartScreenSharingFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`client_token(impl Into<String>)`](crate::operation::start_screen_sharing::builders::StartScreenSharingFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::start_screen_sharing::builders::StartScreenSharingFluentBuilder::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>
/// - [`instance_id(impl Into<String>)`](crate::operation::start_screen_sharing::builders::StartScreenSharingFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::start_screen_sharing::builders::StartScreenSharingFluentBuilder::set_instance_id):<br>required: **true**<br><p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p><br>
/// - [`contact_id(impl Into<String>)`](crate::operation::start_screen_sharing::builders::StartScreenSharingFluentBuilder::contact_id) / [`set_contact_id(Option<String>)`](crate::operation::start_screen_sharing::builders::StartScreenSharingFluentBuilder::set_contact_id):<br>required: **true**<br><p>The identifier of the contact in this instance of Amazon Connect.</p><br>
/// - On success, responds with [`StartScreenSharingOutput`](crate::operation::start_screen_sharing::StartScreenSharingOutput)
/// - On failure, responds with [`SdkError<StartScreenSharingError>`](crate::operation::start_screen_sharing::StartScreenSharingError)
pub fn start_screen_sharing(&self) -> crate::operation::start_screen_sharing::builders::StartScreenSharingFluentBuilder {
crate::operation::start_screen_sharing::builders::StartScreenSharingFluentBuilder::new(self.handle.clone())
}
}