Struct aws_sdk_codegurureviewer::waiters::repository_association_succeeded::RepositoryAssociationSucceededFluentBuilder
source · pub struct RepositoryAssociationSucceededFluentBuilder { /* private fields */ }Expand description
Fluent builder for the repository_association_succeeded waiter.
This builder is intended to be used similar to the other fluent builders for
normal operations on the client. However, instead of a send method, it has
a wait method that takes a maximum amount of time to wait.
Construct this fluent builder using the client by importing the
Waiters trait and calling the methods
prefixed with wait_until.
Implementations§
source§impl RepositoryAssociationSucceededFluentBuilder
impl RepositoryAssociationSucceededFluentBuilder
sourcepub fn as_input(&self) -> &DescribeRepositoryAssociationInputBuilder
pub fn as_input(&self) -> &DescribeRepositoryAssociationInputBuilder
Access the DescribeRepositoryAssociation as a reference.
sourcepub async fn wait(
self,
max_wait: Duration,
) -> Result<RepositoryAssociationSucceededFinalPoll, WaitUntilRepositoryAssociationSucceededError>
pub async fn wait( self, max_wait: Duration, ) -> Result<RepositoryAssociationSucceededFinalPoll, WaitUntilRepositoryAssociationSucceededError>
Wait until a repository association is complete.
sourcepub fn association_arn(self, input: impl Into<String>) -> Self
pub fn association_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations.
sourcepub fn set_association_arn(self, input: Option<String>) -> Self
pub fn set_association_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations.
sourcepub fn get_association_arn(&self) -> &Option<String>
pub fn get_association_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations.
Trait Implementations§
source§impl Clone for RepositoryAssociationSucceededFluentBuilder
impl Clone for RepositoryAssociationSucceededFluentBuilder
source§fn clone(&self) -> RepositoryAssociationSucceededFluentBuilder
fn clone(&self) -> RepositoryAssociationSucceededFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for RepositoryAssociationSucceededFluentBuilder
impl !RefUnwindSafe for RepositoryAssociationSucceededFluentBuilder
impl Send for RepositoryAssociationSucceededFluentBuilder
impl Sync for RepositoryAssociationSucceededFluentBuilder
impl Unpin for RepositoryAssociationSucceededFluentBuilder
impl !UnwindSafe for RepositoryAssociationSucceededFluentBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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