Struct aws_sdk_proton::client::fluent_builders::GetServiceInstance
source · pub struct GetServiceInstance { /* 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 GetServiceInstance
impl GetServiceInstance
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<GetServiceInstance, AwsResponseRetryClassifier>, SdkError<GetServiceInstanceError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<GetServiceInstance, AwsResponseRetryClassifier>, SdkError<GetServiceInstanceError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<GetServiceInstanceOutput, SdkError<GetServiceInstanceError>>
pub async fn send(
self
) -> Result<GetServiceInstanceOutput, SdkError<GetServiceInstanceError>>
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 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 service_name(self, input: impl Into<String>) -> Self
pub fn service_name(self, input: impl Into<String>) -> Self
The name of the service that the service instance belongs to.
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 the service instance belongs to.
Trait Implementations§
source§impl Clone for GetServiceInstance
impl Clone for GetServiceInstance
source§fn clone(&self) -> GetServiceInstance
fn clone(&self) -> GetServiceInstance
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more