pub struct StartLaunchFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to StartLaunch.
Starts an existing launch. To create a launch, use CreateLaunch.
Implementations§
source§impl StartLaunchFluentBuilder
impl StartLaunchFluentBuilder
sourcepub fn as_input(&self) -> &StartLaunchInputBuilder
pub fn as_input(&self) -> &StartLaunchInputBuilder
Access the StartLaunch as a reference.
sourcepub async fn send(
self
) -> Result<StartLaunchOutput, SdkError<StartLaunchError, HttpResponse>>
pub async fn send( self ) -> Result<StartLaunchOutput, SdkError<StartLaunchError, 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<StartLaunchOutput, StartLaunchError, Self>
pub fn customize( self ) -> CustomizableOperation<StartLaunchOutput, StartLaunchError, Self>
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 to start.
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 to start.
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 to start.
sourcepub fn set_launch(self, input: Option<String>) -> Self
pub fn set_launch(self, input: Option<String>) -> Self
The name of the launch to start.
sourcepub fn get_launch(&self) -> &Option<String>
pub fn get_launch(&self) -> &Option<String>
The name of the launch to start.
Trait Implementations§
source§impl Clone for StartLaunchFluentBuilder
impl Clone for StartLaunchFluentBuilder
source§fn clone(&self) -> StartLaunchFluentBuilder
fn clone(&self) -> StartLaunchFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more