// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateSyncJob`](crate::operation::create_sync_job::builders::CreateSyncJobFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`workspace_id(impl Into<String>)`](crate::operation::create_sync_job::builders::CreateSyncJobFluentBuilder::workspace_id) / [`set_workspace_id(Option<String>)`](crate::operation::create_sync_job::builders::CreateSyncJobFluentBuilder::set_workspace_id):<br>required: **true**<br><p>The workspace ID.</p><br>
/// - [`sync_source(impl Into<String>)`](crate::operation::create_sync_job::builders::CreateSyncJobFluentBuilder::sync_source) / [`set_sync_source(Option<String>)`](crate::operation::create_sync_job::builders::CreateSyncJobFluentBuilder::set_sync_source):<br>required: **true**<br><p>The sync source.</p> <note> <p>Currently the only supported syncSoource is <code>SITEWISE </code>.</p> </note><br>
/// - [`sync_role(impl Into<String>)`](crate::operation::create_sync_job::builders::CreateSyncJobFluentBuilder::sync_role) / [`set_sync_role(Option<String>)`](crate::operation::create_sync_job::builders::CreateSyncJobFluentBuilder::set_sync_role):<br>required: **true**<br><p>The SyncJob IAM role. This IAM role is used by the SyncJob to read from the syncSource, and create, update, or delete the corresponding resources.</p><br>
/// - [`tags(impl Into<String>, impl Into<String>)`](crate::operation::create_sync_job::builders::CreateSyncJobFluentBuilder::tags) / [`set_tags(Option<HashMap::<String, String>>)`](crate::operation::create_sync_job::builders::CreateSyncJobFluentBuilder::set_tags):<br>required: **false**<br><p>The SyncJob tags.</p><br>
/// - On success, responds with [`CreateSyncJobOutput`](crate::operation::create_sync_job::CreateSyncJobOutput) with field(s):
/// - [`arn(String)`](crate::operation::create_sync_job::CreateSyncJobOutput::arn): <p>The SyncJob ARN.</p>
/// - [`creation_date_time(DateTime)`](crate::operation::create_sync_job::CreateSyncJobOutput::creation_date_time): <p>The date and time for the SyncJob creation.</p>
/// - [`state(SyncJobState)`](crate::operation::create_sync_job::CreateSyncJobOutput::state): <p>The SyncJob response state.</p>
/// - On failure, responds with [`SdkError<CreateSyncJobError>`](crate::operation::create_sync_job::CreateSyncJobError)
pub fn create_sync_job(&self) -> crate::operation::create_sync_job::builders::CreateSyncJobFluentBuilder {
crate::operation::create_sync_job::builders::CreateSyncJobFluentBuilder::new(self.handle.clone())
}
}