pub struct GetLaunchFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to GetLaunch.
Returns the details about one launch. You must already know the launch name. To retrieve a list of launches in your account, use ListLaunches.
Implementations§
source§impl GetLaunchFluentBuilder
impl GetLaunchFluentBuilder
sourcepub fn as_input(&self) -> &GetLaunchInputBuilder
pub fn as_input(&self) -> &GetLaunchInputBuilder
Access the GetLaunch as a reference.
sourcepub async fn send(
self
) -> Result<GetLaunchOutput, SdkError<GetLaunchError, HttpResponse>>
pub async fn send( self ) -> Result<GetLaunchOutput, SdkError<GetLaunchError, 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<GetLaunchOutput, GetLaunchError>, SdkError<GetLaunchError>>
pub async fn customize( self ) -> Result<CustomizableOperation<GetLaunchOutput, GetLaunchError>, SdkError<GetLaunchError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn project(self, input: impl Into<String>) -> Self
pub fn project(self, input: impl Into<String>) -> Self
The name or ARN of the project that contains the launch.
sourcepub fn set_project(self, input: Option<String>) -> Self
pub fn set_project(self, input: Option<String>) -> Self
The name or ARN of the project that contains the launch.
sourcepub fn get_project(&self) -> &Option<String>
pub fn get_project(&self) -> &Option<String>
The name or ARN of the project that contains the launch.
sourcepub fn launch(self, input: impl Into<String>) -> Self
pub fn launch(self, input: impl Into<String>) -> Self
The name of the launch that you want to see the details of.
sourcepub fn set_launch(self, input: Option<String>) -> Self
pub fn set_launch(self, input: Option<String>) -> Self
The name of the launch that you want to see the details of.
sourcepub fn get_launch(&self) -> &Option<String>
pub fn get_launch(&self) -> &Option<String>
The name of the launch that you want to see the details of.
Trait Implementations§
source§impl Clone for GetLaunchFluentBuilder
impl Clone for GetLaunchFluentBuilder
source§fn clone(&self) -> GetLaunchFluentBuilder
fn clone(&self) -> GetLaunchFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more