aws_sdk_proton/client/get_service_sync_blocker_summary.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 [`GetServiceSyncBlockerSummary`](crate::operation::get_service_sync_blocker_summary::builders::GetServiceSyncBlockerSummaryFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`service_name(impl Into<String>)`](crate::operation::get_service_sync_blocker_summary::builders::GetServiceSyncBlockerSummaryFluentBuilder::service_name) / [`set_service_name(Option<String>)`](crate::operation::get_service_sync_blocker_summary::builders::GetServiceSyncBlockerSummaryFluentBuilder::set_service_name):<br>required: **true**<br><p>The name of the service that you want to get the service sync blocker summary for. If given only the service name, all instances are blocked.</p><br>
7 /// - [`service_instance_name(impl Into<String>)`](crate::operation::get_service_sync_blocker_summary::builders::GetServiceSyncBlockerSummaryFluentBuilder::service_instance_name) / [`set_service_instance_name(Option<String>)`](crate::operation::get_service_sync_blocker_summary::builders::GetServiceSyncBlockerSummaryFluentBuilder::set_service_instance_name):<br>required: **false**<br><p>The name of the service instance that you want to get the service sync blocker summary for. If given bothe the instance name and the service name, only the instance is blocked.</p><br>
8 /// - On success, responds with [`GetServiceSyncBlockerSummaryOutput`](crate::operation::get_service_sync_blocker_summary::GetServiceSyncBlockerSummaryOutput) with field(s):
9 /// - [`service_sync_blocker_summary(Option<ServiceSyncBlockerSummary>)`](crate::operation::get_service_sync_blocker_summary::GetServiceSyncBlockerSummaryOutput::service_sync_blocker_summary): <p>The detailed data of the requested service sync blocker summary.</p>
10 /// - On failure, responds with [`SdkError<GetServiceSyncBlockerSummaryError>`](crate::operation::get_service_sync_blocker_summary::GetServiceSyncBlockerSummaryError)
11 pub fn get_service_sync_blocker_summary(
12 &self,
13 ) -> crate::operation::get_service_sync_blocker_summary::builders::GetServiceSyncBlockerSummaryFluentBuilder {
14 crate::operation::get_service_sync_blocker_summary::builders::GetServiceSyncBlockerSummaryFluentBuilder::new(self.handle.clone())
15 }
16}