aws_sdk_proton/client/update_service_sync_blocker.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 [`UpdateServiceSyncBlocker`](crate::operation::update_service_sync_blocker::builders::UpdateServiceSyncBlockerFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`id(impl Into<String>)`](crate::operation::update_service_sync_blocker::builders::UpdateServiceSyncBlockerFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::update_service_sync_blocker::builders::UpdateServiceSyncBlockerFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the service sync blocker.</p><br>
7 /// - [`resolved_reason(impl Into<String>)`](crate::operation::update_service_sync_blocker::builders::UpdateServiceSyncBlockerFluentBuilder::resolved_reason) / [`set_resolved_reason(Option<String>)`](crate::operation::update_service_sync_blocker::builders::UpdateServiceSyncBlockerFluentBuilder::set_resolved_reason):<br>required: **true**<br><p>The reason the service sync blocker was resolved.</p><br>
8 /// - On success, responds with [`UpdateServiceSyncBlockerOutput`](crate::operation::update_service_sync_blocker::UpdateServiceSyncBlockerOutput) with field(s):
9 /// - [`service_name(String)`](crate::operation::update_service_sync_blocker::UpdateServiceSyncBlockerOutput::service_name): <p>The name of the service that you want to update the service sync blocker for.</p>
10 /// - [`service_instance_name(Option<String>)`](crate::operation::update_service_sync_blocker::UpdateServiceSyncBlockerOutput::service_instance_name): <p>The name of the service instance that you want to update the service sync blocker for.</p>
11 /// - [`service_sync_blocker(Option<SyncBlocker>)`](crate::operation::update_service_sync_blocker::UpdateServiceSyncBlockerOutput::service_sync_blocker): <p>The detailed data on the service sync blocker that was updated.</p>
12 /// - On failure, responds with [`SdkError<UpdateServiceSyncBlockerError>`](crate::operation::update_service_sync_blocker::UpdateServiceSyncBlockerError)
13 pub fn update_service_sync_blocker(&self) -> crate::operation::update_service_sync_blocker::builders::UpdateServiceSyncBlockerFluentBuilder {
14 crate::operation::update_service_sync_blocker::builders::UpdateServiceSyncBlockerFluentBuilder::new(self.handle.clone())
15 }
16}