pub struct DeleteLaunchFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DeleteLaunch.
Deletes an Evidently launch. The feature used for the launch is not deleted.
To stop a launch without deleting it, use StopLaunch.
Implementations§
source§impl DeleteLaunchFluentBuilder
impl DeleteLaunchFluentBuilder
sourcepub fn as_input(&self) -> &DeleteLaunchInputBuilder
pub fn as_input(&self) -> &DeleteLaunchInputBuilder
Access the DeleteLaunch as a reference.
sourcepub async fn send(
self
) -> Result<DeleteLaunchOutput, SdkError<DeleteLaunchError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteLaunchOutput, SdkError<DeleteLaunchError, 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<DeleteLaunchOutput, DeleteLaunchError>, SdkError<DeleteLaunchError>>
pub async fn customize( self ) -> Result<CustomizableOperation<DeleteLaunchOutput, DeleteLaunchError>, SdkError<DeleteLaunchError>>
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 delete.
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 delete.
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 delete.
sourcepub fn set_launch(self, input: Option<String>) -> Self
pub fn set_launch(self, input: Option<String>) -> Self
The name of the launch to delete.
sourcepub fn get_launch(&self) -> &Option<String>
pub fn get_launch(&self) -> &Option<String>
The name of the launch to delete.
Trait Implementations§
source§impl Clone for DeleteLaunchFluentBuilder
impl Clone for DeleteLaunchFluentBuilder
source§fn clone(&self) -> DeleteLaunchFluentBuilder
fn clone(&self) -> DeleteLaunchFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more