Struct aws_sdk_proton::operation::get_service_instance::builders::GetServiceInstanceFluentBuilder
source · pub struct GetServiceInstanceFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetServiceInstance
.
Get detailed data for a service instance. A service instance is an instantiation of service template and it runs in a specific environment.
Implementations§
source§impl GetServiceInstanceFluentBuilder
impl GetServiceInstanceFluentBuilder
sourcepub fn as_input(&self) -> &GetServiceInstanceInputBuilder
pub fn as_input(&self) -> &GetServiceInstanceInputBuilder
Access the GetServiceInstance as a reference.
sourcepub async fn send(
self
) -> Result<GetServiceInstanceOutput, SdkError<GetServiceInstanceError, HttpResponse>>
pub async fn send( self ) -> Result<GetServiceInstanceOutput, SdkError<GetServiceInstanceError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<GetServiceInstanceOutput, GetServiceInstanceError, Self>, SdkError<GetServiceInstanceError>>
pub async fn customize( self ) -> Result<CustomizableOperation<GetServiceInstanceOutput, GetServiceInstanceError, Self>, SdkError<GetServiceInstanceError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 GetServiceInstanceFluentBuilder
impl Clone for GetServiceInstanceFluentBuilder
source§fn clone(&self) -> GetServiceInstanceFluentBuilder
fn clone(&self) -> GetServiceInstanceFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more