Struct aws_sdk_codedeploy::types::ZonalConfig
source · #[non_exhaustive]pub struct ZonalConfig {
pub first_zone_monitor_duration_in_seconds: Option<i64>,
pub monitor_duration_in_seconds: Option<i64>,
pub minimum_healthy_hosts_per_zone: Option<MinimumHealthyHostsPerZone>,
}
Expand description
Configure the ZonalConfig
object if you want CodeDeploy to deploy your application to one Availability Zone at a time, within an Amazon Web Services Region. By deploying to one Availability Zone at a time, you can expose your deployment to a progressively larger audience as confidence in the deployment's performance and viability grows. If you don't configure the ZonalConfig
object, CodeDeploy deploys your application to a random selection of hosts across a Region.
For more information about the zonal configuration feature, see zonal configuration in the CodeDeploy User Guide.
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.first_zone_monitor_duration_in_seconds: Option<i64>
The period of time, in seconds, that CodeDeploy must wait after completing a deployment to the first Availability Zone. CodeDeploy will wait this amount of time before starting a deployment to the second Availability Zone. You might set this option if you want to allow extra bake time for the first Availability Zone. If you don't specify a value for firstZoneMonitorDurationInSeconds
, then CodeDeploy uses the monitorDurationInSeconds
value for the first Availability Zone.
For more information about the zonal configuration feature, see zonal configuration in the CodeDeploy User Guide.
monitor_duration_in_seconds: Option<i64>
The period of time, in seconds, that CodeDeploy must wait after completing a deployment to an Availability Zone. CodeDeploy will wait this amount of time before starting a deployment to the next Availability Zone. Consider adding a monitor duration to give the deployment some time to prove itself (or 'bake') in one Availability Zone before it is released in the next zone. If you don't specify a monitorDurationInSeconds
, CodeDeploy starts deploying to the next Availability Zone immediately.
For more information about the zonal configuration feature, see zonal configuration in the CodeDeploy User Guide.
minimum_healthy_hosts_per_zone: Option<MinimumHealthyHostsPerZone>
The number or percentage of instances that must remain available per Availability Zone during a deployment. This option works in conjunction with the MinimumHealthyHosts
option. For more information, see About the minimum number of healthy hosts per Availability Zone in the CodeDeploy User Guide.
If you don't specify the minimumHealthyHostsPerZone
option, then CodeDeploy uses a default value of 0
percent.
For more information about the zonal configuration feature, see zonal configuration in the CodeDeploy User Guide.
Implementations§
source§impl ZonalConfig
impl ZonalConfig
sourcepub fn first_zone_monitor_duration_in_seconds(&self) -> Option<i64>
pub fn first_zone_monitor_duration_in_seconds(&self) -> Option<i64>
The period of time, in seconds, that CodeDeploy must wait after completing a deployment to the first Availability Zone. CodeDeploy will wait this amount of time before starting a deployment to the second Availability Zone. You might set this option if you want to allow extra bake time for the first Availability Zone. If you don't specify a value for firstZoneMonitorDurationInSeconds
, then CodeDeploy uses the monitorDurationInSeconds
value for the first Availability Zone.
For more information about the zonal configuration feature, see zonal configuration in the CodeDeploy User Guide.
sourcepub fn monitor_duration_in_seconds(&self) -> Option<i64>
pub fn monitor_duration_in_seconds(&self) -> Option<i64>
The period of time, in seconds, that CodeDeploy must wait after completing a deployment to an Availability Zone. CodeDeploy will wait this amount of time before starting a deployment to the next Availability Zone. Consider adding a monitor duration to give the deployment some time to prove itself (or 'bake') in one Availability Zone before it is released in the next zone. If you don't specify a monitorDurationInSeconds
, CodeDeploy starts deploying to the next Availability Zone immediately.
For more information about the zonal configuration feature, see zonal configuration in the CodeDeploy User Guide.
sourcepub fn minimum_healthy_hosts_per_zone(
&self
) -> Option<&MinimumHealthyHostsPerZone>
pub fn minimum_healthy_hosts_per_zone( &self ) -> Option<&MinimumHealthyHostsPerZone>
The number or percentage of instances that must remain available per Availability Zone during a deployment. This option works in conjunction with the MinimumHealthyHosts
option. For more information, see About the minimum number of healthy hosts per Availability Zone in the CodeDeploy User Guide.
If you don't specify the minimumHealthyHostsPerZone
option, then CodeDeploy uses a default value of 0
percent.
For more information about the zonal configuration feature, see zonal configuration in the CodeDeploy User Guide.
source§impl ZonalConfig
impl ZonalConfig
sourcepub fn builder() -> ZonalConfigBuilder
pub fn builder() -> ZonalConfigBuilder
Creates a new builder-style object to manufacture ZonalConfig
.
Trait Implementations§
source§impl Clone for ZonalConfig
impl Clone for ZonalConfig
source§fn clone(&self) -> ZonalConfig
fn clone(&self) -> ZonalConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ZonalConfig
impl Debug for ZonalConfig
source§impl PartialEq for ZonalConfig
impl PartialEq for ZonalConfig
source§fn eq(&self, other: &ZonalConfig) -> bool
fn eq(&self, other: &ZonalConfig) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ZonalConfig
Auto Trait Implementations§
impl Freeze for ZonalConfig
impl RefUnwindSafe for ZonalConfig
impl Send for ZonalConfig
impl Sync for ZonalConfig
impl Unpin for ZonalConfig
impl UnwindSafe for ZonalConfig
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