pub struct ContinueDeploymentInput {
pub deployment_id: Option<String>,
pub deployment_wait_type: Option<String>,
}
Fields§
§deployment_id: Option<String>
The unique ID of a blue/green deployment for which you want to start rerouting traffic to the replacement environment.
deployment_wait_type: Option<String>
The status of the deployment's waiting period. READY_WAIT
indicates that the deployment is ready to start shifting traffic. TERMINATION_WAIT
indicates that the traffic is shifted, but the original target is not terminated.
Trait Implementations§
Source§impl Clone for ContinueDeploymentInput
impl Clone for ContinueDeploymentInput
Source§fn clone(&self) -> ContinueDeploymentInput
fn clone(&self) -> ContinueDeploymentInput
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 ContinueDeploymentInput
impl Debug for ContinueDeploymentInput
Source§impl Default for ContinueDeploymentInput
impl Default for ContinueDeploymentInput
Source§fn default() -> ContinueDeploymentInput
fn default() -> ContinueDeploymentInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ContinueDeploymentInput
impl PartialEq for ContinueDeploymentInput
Source§impl Serialize for ContinueDeploymentInput
impl Serialize for ContinueDeploymentInput
impl StructuralPartialEq for ContinueDeploymentInput
Auto Trait Implementations§
impl Freeze for ContinueDeploymentInput
impl RefUnwindSafe for ContinueDeploymentInput
impl Send for ContinueDeploymentInput
impl Sync for ContinueDeploymentInput
impl Unpin for ContinueDeploymentInput
impl UnwindSafe for ContinueDeploymentInput
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