#[non_exhaustive]pub struct GetLaunchInputBuilder { /* private fields */ }Expand description
A builder for GetLaunchInput.
Implementations§
source§impl GetLaunchInputBuilder
impl GetLaunchInputBuilder
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.
This field is required.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.
This field is required.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.
sourcepub fn build(self) -> Result<GetLaunchInput, BuildError>
pub fn build(self) -> Result<GetLaunchInput, BuildError>
Consumes the builder and constructs a GetLaunchInput.
source§impl GetLaunchInputBuilder
impl GetLaunchInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetLaunchOutput, SdkError<GetLaunchError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetLaunchOutput, SdkError<GetLaunchError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetLaunchInputBuilder
impl Clone for GetLaunchInputBuilder
source§fn clone(&self) -> GetLaunchInputBuilder
fn clone(&self) -> GetLaunchInputBuilder
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 GetLaunchInputBuilder
impl Debug for GetLaunchInputBuilder
source§impl Default for GetLaunchInputBuilder
impl Default for GetLaunchInputBuilder
source§fn default() -> GetLaunchInputBuilder
fn default() -> GetLaunchInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetLaunchInputBuilder
impl PartialEq for GetLaunchInputBuilder
source§fn eq(&self, other: &GetLaunchInputBuilder) -> bool
fn eq(&self, other: &GetLaunchInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetLaunchInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetLaunchInputBuilder
impl Send for GetLaunchInputBuilder
impl Sync for GetLaunchInputBuilder
impl Unpin for GetLaunchInputBuilder
impl UnwindSafe for GetLaunchInputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.