#[non_exhaustive]pub struct StopApplicationInput { /* private fields */ }Implementations§
source§impl StopApplicationInput
impl StopApplicationInput
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The unique identifier of the application you want to stop.
sourcepub fn force_stop(&self) -> bool
pub fn force_stop(&self) -> bool
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.
source§impl StopApplicationInput
impl StopApplicationInput
sourcepub fn builder() -> StopApplicationInputBuilder
pub fn builder() -> StopApplicationInputBuilder
Creates a new builder-style object to manufacture StopApplicationInput.
source§impl StopApplicationInput
impl StopApplicationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StopApplication, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<StopApplication, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StopApplication>
Trait Implementations§
source§impl Clone for StopApplicationInput
impl Clone for StopApplicationInput
source§fn clone(&self) -> StopApplicationInput
fn clone(&self) -> StopApplicationInput
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 StopApplicationInput
impl Debug for StopApplicationInput
source§impl PartialEq<StopApplicationInput> for StopApplicationInput
impl PartialEq<StopApplicationInput> for StopApplicationInput
source§fn eq(&self, other: &StopApplicationInput) -> bool
fn eq(&self, other: &StopApplicationInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StopApplicationInput
Auto Trait Implementations§
impl RefUnwindSafe for StopApplicationInput
impl Send for StopApplicationInput
impl Sync for StopApplicationInput
impl Unpin for StopApplicationInput
impl UnwindSafe for StopApplicationInput
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