#[non_exhaustive]pub struct StopApplicationInputBuilder { /* private fields */ }Expand description
A builder for StopApplicationInput.
Implementations§
source§impl StopApplicationInputBuilder
impl StopApplicationInputBuilder
sourcepub fn application_id(self, input: impl Into<String>) -> Self
pub fn application_id(self, input: impl Into<String>) -> Self
The unique identifier of the application you want to stop.
sourcepub fn set_application_id(self, input: Option<String>) -> Self
pub fn set_application_id(self, input: Option<String>) -> Self
The unique identifier of the application you want to stop.
sourcepub fn force_stop(self, input: bool) -> Self
pub fn force_stop(self, input: bool) -> Self
Stopping an application process can take a long time. Setting this parameter to true lets you force stop the application so you don't need to wait until the process finishes to apply another action on the application. The default value is false.
sourcepub fn set_force_stop(self, input: Option<bool>) -> Self
pub fn set_force_stop(self, input: Option<bool>) -> Self
Stopping an application process can take a long time. Setting this parameter to true lets you force stop the application so you don't need to wait until the process finishes to apply another action on the application. The default value is false.
sourcepub fn build(self) -> Result<StopApplicationInput, BuildError>
pub fn build(self) -> Result<StopApplicationInput, BuildError>
Consumes the builder and constructs a StopApplicationInput.
Trait Implementations§
source§impl Clone for StopApplicationInputBuilder
impl Clone for StopApplicationInputBuilder
source§fn clone(&self) -> StopApplicationInputBuilder
fn clone(&self) -> StopApplicationInputBuilder
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 StopApplicationInputBuilder
impl Debug for StopApplicationInputBuilder
source§impl Default for StopApplicationInputBuilder
impl Default for StopApplicationInputBuilder
source§fn default() -> StopApplicationInputBuilder
fn default() -> StopApplicationInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<StopApplicationInputBuilder> for StopApplicationInputBuilder
impl PartialEq<StopApplicationInputBuilder> for StopApplicationInputBuilder
source§fn eq(&self, other: &StopApplicationInputBuilder) -> bool
fn eq(&self, other: &StopApplicationInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StopApplicationInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for StopApplicationInputBuilder
impl Send for StopApplicationInputBuilder
impl Sync for StopApplicationInputBuilder
impl Unpin for StopApplicationInputBuilder
impl UnwindSafe for StopApplicationInputBuilder
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