pub struct GetDeploymentFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetDeployment
.
Get detailed data for a deployment.
Implementations§
source§impl GetDeploymentFluentBuilder
impl GetDeploymentFluentBuilder
sourcepub fn as_input(&self) -> &GetDeploymentInputBuilder
pub fn as_input(&self) -> &GetDeploymentInputBuilder
Access the GetDeployment as a reference.
sourcepub async fn send(
self
) -> Result<GetDeploymentOutput, SdkError<GetDeploymentError, HttpResponse>>
pub async fn send( self ) -> Result<GetDeploymentOutput, SdkError<GetDeploymentError, 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 fn customize(
self
) -> CustomizableOperation<GetDeploymentOutput, GetDeploymentError, Self>
pub fn customize( self ) -> CustomizableOperation<GetDeploymentOutput, GetDeploymentError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
The ID of the deployment that you want to get the detailed data for.
sourcepub fn set_id(self, input: Option<String>) -> Self
pub fn set_id(self, input: Option<String>) -> Self
The ID of the deployment that you want to get the detailed data for.
sourcepub fn get_id(&self) -> &Option<String>
pub fn get_id(&self) -> &Option<String>
The ID of the deployment that you want to get the detailed data for.
sourcepub fn environment_name(self, input: impl Into<String>) -> Self
pub fn environment_name(self, input: impl Into<String>) -> Self
The name of a environment that you want to get the detailed data for.
sourcepub fn set_environment_name(self, input: Option<String>) -> Self
pub fn set_environment_name(self, input: Option<String>) -> Self
The name of a environment that you want to get the detailed data for.
sourcepub fn get_environment_name(&self) -> &Option<String>
pub fn get_environment_name(&self) -> &Option<String>
The name of a environment 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 associated with the given deployment ID.
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 associated with the given deployment ID.
sourcepub fn get_service_name(&self) -> &Option<String>
pub fn get_service_name(&self) -> &Option<String>
The name of the service associated with the given deployment ID.
sourcepub fn service_instance_name(self, input: impl Into<String>) -> Self
pub fn service_instance_name(self, input: impl Into<String>) -> Self
The name of the service instance associated with the given deployment ID. serviceName
must be specified to identify the service instance.
sourcepub fn set_service_instance_name(self, input: Option<String>) -> Self
pub fn set_service_instance_name(self, input: Option<String>) -> Self
The name of the service instance associated with the given deployment ID. serviceName
must be specified to identify the service instance.
sourcepub fn get_service_instance_name(&self) -> &Option<String>
pub fn get_service_instance_name(&self) -> &Option<String>
The name of the service instance associated with the given deployment ID. serviceName
must be specified to identify the service instance.
sourcepub fn component_name(self, input: impl Into<String>) -> Self
pub fn component_name(self, input: impl Into<String>) -> Self
The name of a component that you want to get the detailed data for.
sourcepub fn set_component_name(self, input: Option<String>) -> Self
pub fn set_component_name(self, input: Option<String>) -> Self
The name of a component that you want to get the detailed data for.
sourcepub fn get_component_name(&self) -> &Option<String>
pub fn get_component_name(&self) -> &Option<String>
The name of a component that you want to get the detailed data for.
Trait Implementations§
source§impl Clone for GetDeploymentFluentBuilder
impl Clone for GetDeploymentFluentBuilder
source§fn clone(&self) -> GetDeploymentFluentBuilder
fn clone(&self) -> GetDeploymentFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more