Struct aws_sdk_codestarconnections::operation::get_sync_configuration::builders::GetSyncConfigurationInputBuilder
source · #[non_exhaustive]pub struct GetSyncConfigurationInputBuilder { /* private fields */ }
Expand description
A builder for GetSyncConfigurationInput
.
Implementations§
source§impl GetSyncConfigurationInputBuilder
impl GetSyncConfigurationInputBuilder
sourcepub fn sync_type(self, input: SyncConfigurationType) -> Self
pub fn sync_type(self, input: SyncConfigurationType) -> Self
The sync type for the sync configuration for which you want to retrieve information.
This field is required.sourcepub fn set_sync_type(self, input: Option<SyncConfigurationType>) -> Self
pub fn set_sync_type(self, input: Option<SyncConfigurationType>) -> Self
The sync type for the sync configuration for which you want to retrieve information.
sourcepub fn get_sync_type(&self) -> &Option<SyncConfigurationType>
pub fn get_sync_type(&self) -> &Option<SyncConfigurationType>
The sync type for the sync configuration for which you want to retrieve information.
sourcepub fn resource_name(self, input: impl Into<String>) -> Self
pub fn resource_name(self, input: impl Into<String>) -> Self
The name of the Amazon Web Services resource for the sync configuration for which you want to retrieve information.
This field is required.sourcepub fn set_resource_name(self, input: Option<String>) -> Self
pub fn set_resource_name(self, input: Option<String>) -> Self
The name of the Amazon Web Services resource for the sync configuration for which you want to retrieve information.
sourcepub fn get_resource_name(&self) -> &Option<String>
pub fn get_resource_name(&self) -> &Option<String>
The name of the Amazon Web Services resource for the sync configuration for which you want to retrieve information.
sourcepub fn build(self) -> Result<GetSyncConfigurationInput, BuildError>
pub fn build(self) -> Result<GetSyncConfigurationInput, BuildError>
Consumes the builder and constructs a GetSyncConfigurationInput
.
source§impl GetSyncConfigurationInputBuilder
impl GetSyncConfigurationInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetSyncConfigurationOutput, SdkError<GetSyncConfigurationError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetSyncConfigurationOutput, SdkError<GetSyncConfigurationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetSyncConfigurationInputBuilder
impl Clone for GetSyncConfigurationInputBuilder
source§fn clone(&self) -> GetSyncConfigurationInputBuilder
fn clone(&self) -> GetSyncConfigurationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetSyncConfigurationInputBuilder
impl Default for GetSyncConfigurationInputBuilder
source§fn default() -> GetSyncConfigurationInputBuilder
fn default() -> GetSyncConfigurationInputBuilder
source§impl PartialEq for GetSyncConfigurationInputBuilder
impl PartialEq for GetSyncConfigurationInputBuilder
source§fn eq(&self, other: &GetSyncConfigurationInputBuilder) -> bool
fn eq(&self, other: &GetSyncConfigurationInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetSyncConfigurationInputBuilder
Auto Trait Implementations§
impl Freeze for GetSyncConfigurationInputBuilder
impl RefUnwindSafe for GetSyncConfigurationInputBuilder
impl Send for GetSyncConfigurationInputBuilder
impl Sync for GetSyncConfigurationInputBuilder
impl Unpin for GetSyncConfigurationInputBuilder
impl UnwindSafe for GetSyncConfigurationInputBuilder
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
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>
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>
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 more