#[non_exhaustive]pub struct DeleteLaunchInputBuilder { /* private fields */ }Expand description
A builder for DeleteLaunchInput.
Implementations§
source§impl DeleteLaunchInputBuilder
impl DeleteLaunchInputBuilder
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.
sourcepub fn build(self) -> Result<DeleteLaunchInput, BuildError>
pub fn build(self) -> Result<DeleteLaunchInput, BuildError>
Consumes the builder and constructs a DeleteLaunchInput.
source§impl DeleteLaunchInputBuilder
impl DeleteLaunchInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteLaunchOutput, SdkError<DeleteLaunchError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteLaunchOutput, SdkError<DeleteLaunchError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteLaunchInputBuilder
impl Clone for DeleteLaunchInputBuilder
source§fn clone(&self) -> DeleteLaunchInputBuilder
fn clone(&self) -> DeleteLaunchInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DeleteLaunchInputBuilder
impl Debug for DeleteLaunchInputBuilder
source§impl Default for DeleteLaunchInputBuilder
impl Default for DeleteLaunchInputBuilder
source§fn default() -> DeleteLaunchInputBuilder
fn default() -> DeleteLaunchInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DeleteLaunchInputBuilder> for DeleteLaunchInputBuilder
impl PartialEq<DeleteLaunchInputBuilder> for DeleteLaunchInputBuilder
source§fn eq(&self, other: &DeleteLaunchInputBuilder) -> bool
fn eq(&self, other: &DeleteLaunchInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteLaunchInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DeleteLaunchInputBuilder
impl Send for DeleteLaunchInputBuilder
impl Sync for DeleteLaunchInputBuilder
impl Unpin for DeleteLaunchInputBuilder
impl UnwindSafe for DeleteLaunchInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more