aws_sdk_codestarconnections/client/
get_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 [`GetSyncBlockerSummary`](crate::operation::get_sync_blocker_summary::builders::GetSyncBlockerSummaryFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`sync_type(SyncConfigurationType)`](crate::operation::get_sync_blocker_summary::builders::GetSyncBlockerSummaryFluentBuilder::sync_type) / [`set_sync_type(Option<SyncConfigurationType>)`](crate::operation::get_sync_blocker_summary::builders::GetSyncBlockerSummaryFluentBuilder::set_sync_type):<br>required: **true**<br><p>The sync type for the sync blocker summary.</p><br>
7    ///   - [`resource_name(impl Into<String>)`](crate::operation::get_sync_blocker_summary::builders::GetSyncBlockerSummaryFluentBuilder::resource_name) / [`set_resource_name(Option<String>)`](crate::operation::get_sync_blocker_summary::builders::GetSyncBlockerSummaryFluentBuilder::set_resource_name):<br>required: **true**<br><p>The name of the Amazon Web Services resource currently blocked from automatically being synced from a Git repository.</p><br>
8    /// - On success, responds with [`GetSyncBlockerSummaryOutput`](crate::operation::get_sync_blocker_summary::GetSyncBlockerSummaryOutput) with field(s):
9    ///   - [`sync_blocker_summary(Option<SyncBlockerSummary>)`](crate::operation::get_sync_blocker_summary::GetSyncBlockerSummaryOutput::sync_blocker_summary): <p>The list of sync blockers for a specified resource.</p>
10    /// - On failure, responds with [`SdkError<GetSyncBlockerSummaryError>`](crate::operation::get_sync_blocker_summary::GetSyncBlockerSummaryError)
11    pub fn get_sync_blocker_summary(&self) -> crate::operation::get_sync_blocker_summary::builders::GetSyncBlockerSummaryFluentBuilder {
12        crate::operation::get_sync_blocker_summary::builders::GetSyncBlockerSummaryFluentBuilder::new(self.handle.clone())
13    }
14}