#[non_exhaustive]pub struct BlueGreenDeploymentConfigurationBuilder { /* private fields */ }
Expand description
A builder for BlueGreenDeploymentConfiguration
.
Implementations§
source§impl BlueGreenDeploymentConfigurationBuilder
impl BlueGreenDeploymentConfigurationBuilder
sourcepub fn terminate_blue_instances_on_deployment_success(
self,
input: BlueInstanceTerminationOption
) -> Self
pub fn terminate_blue_instances_on_deployment_success( self, input: BlueInstanceTerminationOption ) -> Self
Information about whether to terminate instances in the original fleet during a blue/green deployment.
sourcepub fn set_terminate_blue_instances_on_deployment_success(
self,
input: Option<BlueInstanceTerminationOption>
) -> Self
pub fn set_terminate_blue_instances_on_deployment_success( self, input: Option<BlueInstanceTerminationOption> ) -> Self
Information about whether to terminate instances in the original fleet during a blue/green deployment.
sourcepub fn get_terminate_blue_instances_on_deployment_success(
&self
) -> &Option<BlueInstanceTerminationOption>
pub fn get_terminate_blue_instances_on_deployment_success( &self ) -> &Option<BlueInstanceTerminationOption>
Information about whether to terminate instances in the original fleet during a blue/green deployment.
sourcepub fn deployment_ready_option(self, input: DeploymentReadyOption) -> Self
pub fn deployment_ready_option(self, input: DeploymentReadyOption) -> Self
Information about the action to take when newly provisioned instances are ready to receive traffic in a blue/green deployment.
sourcepub fn set_deployment_ready_option(
self,
input: Option<DeploymentReadyOption>
) -> Self
pub fn set_deployment_ready_option( self, input: Option<DeploymentReadyOption> ) -> Self
Information about the action to take when newly provisioned instances are ready to receive traffic in a blue/green deployment.
sourcepub fn get_deployment_ready_option(&self) -> &Option<DeploymentReadyOption>
pub fn get_deployment_ready_option(&self) -> &Option<DeploymentReadyOption>
Information about the action to take when newly provisioned instances are ready to receive traffic in a blue/green deployment.
sourcepub fn green_fleet_provisioning_option(
self,
input: GreenFleetProvisioningOption
) -> Self
pub fn green_fleet_provisioning_option( self, input: GreenFleetProvisioningOption ) -> Self
Information about how instances are provisioned for a replacement environment in a blue/green deployment.
sourcepub fn set_green_fleet_provisioning_option(
self,
input: Option<GreenFleetProvisioningOption>
) -> Self
pub fn set_green_fleet_provisioning_option( self, input: Option<GreenFleetProvisioningOption> ) -> Self
Information about how instances are provisioned for a replacement environment in a blue/green deployment.
sourcepub fn get_green_fleet_provisioning_option(
&self
) -> &Option<GreenFleetProvisioningOption>
pub fn get_green_fleet_provisioning_option( &self ) -> &Option<GreenFleetProvisioningOption>
Information about how instances are provisioned for a replacement environment in a blue/green deployment.
sourcepub fn build(self) -> BlueGreenDeploymentConfiguration
pub fn build(self) -> BlueGreenDeploymentConfiguration
Consumes the builder and constructs a BlueGreenDeploymentConfiguration
.
Trait Implementations§
source§impl Clone for BlueGreenDeploymentConfigurationBuilder
impl Clone for BlueGreenDeploymentConfigurationBuilder
source§fn clone(&self) -> BlueGreenDeploymentConfigurationBuilder
fn clone(&self) -> BlueGreenDeploymentConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for BlueGreenDeploymentConfigurationBuilder
impl Default for BlueGreenDeploymentConfigurationBuilder
source§fn default() -> BlueGreenDeploymentConfigurationBuilder
fn default() -> BlueGreenDeploymentConfigurationBuilder
source§impl PartialEq for BlueGreenDeploymentConfigurationBuilder
impl PartialEq for BlueGreenDeploymentConfigurationBuilder
source§fn eq(&self, other: &BlueGreenDeploymentConfigurationBuilder) -> bool
fn eq(&self, other: &BlueGreenDeploymentConfigurationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BlueGreenDeploymentConfigurationBuilder
Auto Trait Implementations§
impl Freeze for BlueGreenDeploymentConfigurationBuilder
impl RefUnwindSafe for BlueGreenDeploymentConfigurationBuilder
impl Send for BlueGreenDeploymentConfigurationBuilder
impl Sync for BlueGreenDeploymentConfigurationBuilder
impl Unpin for BlueGreenDeploymentConfigurationBuilder
impl UnwindSafe for BlueGreenDeploymentConfigurationBuilder
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