Struct aws_sdk_proton::waiters::service_instance_deployed::ServiceInstanceDeployedFluentBuilder
source · pub struct ServiceInstanceDeployedFluentBuilder { /* private fields */ }
Expand description
Fluent builder for the service_instance_deployed
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 ServiceInstanceDeployedFluentBuilder
impl ServiceInstanceDeployedFluentBuilder
sourcepub fn as_input(&self) -> &GetServiceInstanceInputBuilder
pub fn as_input(&self) -> &GetServiceInstanceInputBuilder
Access the GetServiceInstance as a reference.
sourcepub async fn wait(
self,
max_wait: Duration
) -> Result<ServiceInstanceDeployedFinalPoll, WaitUntilServiceInstanceDeployedError>
pub async fn wait( self, max_wait: Duration ) -> Result<ServiceInstanceDeployedFinalPoll, WaitUntilServiceInstanceDeployedError>
Wait until a ServiceInstance is deployed. Use this after invoking CreateService or UpdateServiceInstance
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of a service instance that you want to get the detailed data for.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of a service instance that you want to get the detailed data for.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
The name of a service instance that you want to get the detailed data for.
sourcepub fn service_name(self, input: impl Into<String>) -> Self
pub fn service_name(self, input: impl Into<String>) -> Self
The name of the service that you want the service instance input for.
sourcepub fn set_service_name(self, input: Option<String>) -> Self
pub fn set_service_name(self, input: Option<String>) -> Self
The name of the service that you want the service instance input for.
sourcepub fn get_service_name(&self) -> &Option<String>
pub fn get_service_name(&self) -> &Option<String>
The name of the service that you want the service instance input for.
Trait Implementations§
source§impl Clone for ServiceInstanceDeployedFluentBuilder
impl Clone for ServiceInstanceDeployedFluentBuilder
source§fn clone(&self) -> ServiceInstanceDeployedFluentBuilder
fn clone(&self) -> ServiceInstanceDeployedFluentBuilder
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 ServiceInstanceDeployedFluentBuilder
impl !RefUnwindSafe for ServiceInstanceDeployedFluentBuilder
impl Send for ServiceInstanceDeployedFluentBuilder
impl Sync for ServiceInstanceDeployedFluentBuilder
impl Unpin for ServiceInstanceDeployedFluentBuilder
impl !UnwindSafe for ServiceInstanceDeployedFluentBuilder
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