#[non_exhaustive]pub struct ContinueDeploymentInput { /* private fields */ }
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
.
source§impl ContinueDeploymentInput
impl ContinueDeploymentInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ContinueDeployment, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ContinueDeployment, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ContinueDeployment
>
Trait Implementations§
source§impl Clone for ContinueDeploymentInput
impl Clone for ContinueDeploymentInput
source§fn clone(&self) -> ContinueDeploymentInput
fn clone(&self) -> ContinueDeploymentInput
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 ContinueDeploymentInput
impl Debug for ContinueDeploymentInput
source§impl PartialEq<ContinueDeploymentInput> for ContinueDeploymentInput
impl PartialEq<ContinueDeploymentInput> for ContinueDeploymentInput
source§fn eq(&self, other: &ContinueDeploymentInput) -> bool
fn eq(&self, other: &ContinueDeploymentInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ContinueDeploymentInput
Auto Trait Implementations§
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