#[non_exhaustive]pub struct ContinueDeploymentInput {
pub deployment_id: Option<String>,
pub deployment_wait_type: Option<DeploymentWaitType>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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<DeploymentWaitType>
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.
Implementations§
source§impl ContinueDeploymentInput
impl ContinueDeploymentInput
sourcepub fn deployment_id(&self) -> Option<&str>
pub fn deployment_id(&self) -> Option<&str>
The unique ID of a blue/green deployment for which you want to start rerouting traffic to the replacement environment.
sourcepub fn deployment_wait_type(&self) -> Option<&DeploymentWaitType>
pub fn deployment_wait_type(&self) -> Option<&DeploymentWaitType>
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.
source§impl ContinueDeploymentInput
impl ContinueDeploymentInput
sourcepub fn builder() -> ContinueDeploymentInputBuilder
pub fn builder() -> ContinueDeploymentInputBuilder
Creates a new builder-style object to manufacture ContinueDeploymentInput
.
Trait Implementations§
source§impl Clone for ContinueDeploymentInput
impl Clone for ContinueDeploymentInput
source§fn clone(&self) -> ContinueDeploymentInput
fn clone(&self) -> ContinueDeploymentInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ContinueDeploymentInput
impl Debug for ContinueDeploymentInput
source§impl PartialEq for ContinueDeploymentInput
impl PartialEq for ContinueDeploymentInput
source§fn eq(&self, other: &ContinueDeploymentInput) -> bool
fn eq(&self, other: &ContinueDeploymentInput) -> bool
self
and other
values to be equal, and is used
by ==
.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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more