Struct aws_sdk_codestarconnections::operation::get_sync_configuration::builders::GetSyncConfigurationOutputBuilder
source · #[non_exhaustive]pub struct GetSyncConfigurationOutputBuilder { /* private fields */ }
Expand description
A builder for GetSyncConfigurationOutput
.
Implementations§
source§impl GetSyncConfigurationOutputBuilder
impl GetSyncConfigurationOutputBuilder
sourcepub fn sync_configuration(self, input: SyncConfiguration) -> Self
pub fn sync_configuration(self, input: SyncConfiguration) -> Self
The details about the sync configuration for which you want to retrieve information.
This field is required.sourcepub fn set_sync_configuration(self, input: Option<SyncConfiguration>) -> Self
pub fn set_sync_configuration(self, input: Option<SyncConfiguration>) -> Self
The details about the sync configuration for which you want to retrieve information.
sourcepub fn get_sync_configuration(&self) -> &Option<SyncConfiguration>
pub fn get_sync_configuration(&self) -> &Option<SyncConfiguration>
The details about the sync configuration for which you want to retrieve information.
sourcepub fn build(self) -> GetSyncConfigurationOutput
pub fn build(self) -> GetSyncConfigurationOutput
Consumes the builder and constructs a GetSyncConfigurationOutput
.
Trait Implementations§
source§impl Clone for GetSyncConfigurationOutputBuilder
impl Clone for GetSyncConfigurationOutputBuilder
source§fn clone(&self) -> GetSyncConfigurationOutputBuilder
fn clone(&self) -> GetSyncConfigurationOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for GetSyncConfigurationOutputBuilder
impl Default for GetSyncConfigurationOutputBuilder
source§fn default() -> GetSyncConfigurationOutputBuilder
fn default() -> GetSyncConfigurationOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetSyncConfigurationOutputBuilder
impl PartialEq for GetSyncConfigurationOutputBuilder
source§fn eq(&self, other: &GetSyncConfigurationOutputBuilder) -> bool
fn eq(&self, other: &GetSyncConfigurationOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetSyncConfigurationOutputBuilder
Auto Trait Implementations§
impl Freeze for GetSyncConfigurationOutputBuilder
impl RefUnwindSafe for GetSyncConfigurationOutputBuilder
impl Send for GetSyncConfigurationOutputBuilder
impl Sync for GetSyncConfigurationOutputBuilder
impl Unpin for GetSyncConfigurationOutputBuilder
impl UnwindSafe for GetSyncConfigurationOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.