pub struct StopDeploymentInput {
pub auto_rollback_enabled: Option<bool>,
pub deployment_id: String,
}
Expand description
Represents the input of a StopDeployment
operation.
Fields§
§auto_rollback_enabled: Option<bool>
Indicates, when a deployment is stopped, whether instances that have been updated should be rolled back to the previous version of the application revision.
deployment_id: String
The unique ID of a deployment.
Trait Implementations§
Source§impl Clone for StopDeploymentInput
impl Clone for StopDeploymentInput
Source§fn clone(&self) -> StopDeploymentInput
fn clone(&self) -> StopDeploymentInput
Returns a duplicate 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 StopDeploymentInput
impl Debug for StopDeploymentInput
Source§impl Default for StopDeploymentInput
impl Default for StopDeploymentInput
Source§fn default() -> StopDeploymentInput
fn default() -> StopDeploymentInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for StopDeploymentInput
impl PartialEq for StopDeploymentInput
Source§impl Serialize for StopDeploymentInput
impl Serialize for StopDeploymentInput
impl StructuralPartialEq for StopDeploymentInput
Auto Trait Implementations§
impl Freeze for StopDeploymentInput
impl RefUnwindSafe for StopDeploymentInput
impl Send for StopDeploymentInput
impl Sync for StopDeploymentInput
impl Unpin for StopDeploymentInput
impl UnwindSafe for StopDeploymentInput
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