pub struct AwsJobExponentialRolloutRate {
pub base_rate_per_minute: i64,
pub increment_factor: f64,
pub rate_increase_criteria: AwsJobRateIncreaseCriteria,
}Expand description
The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.
Fields§
§base_rate_per_minute: i64The minimum number of things that will be notified of a pending job, per minute, at the start of the job rollout. This is the initial rate of the rollout.
increment_factor: f64The rate of increase for a job rollout. The number of things notified is multiplied by this factor.
rate_increase_criteria: AwsJobRateIncreaseCriteriaThe criteria to initiate the increase in rate of rollout for a job.
AWS IoT supports up to one digit after the decimal (for example, 1.5, but not 1.55).
Trait Implementations§
Source§impl Clone for AwsJobExponentialRolloutRate
impl Clone for AwsJobExponentialRolloutRate
Source§fn clone(&self) -> AwsJobExponentialRolloutRate
fn clone(&self) -> AwsJobExponentialRolloutRate
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 AwsJobExponentialRolloutRate
impl Debug for AwsJobExponentialRolloutRate
Source§impl Default for AwsJobExponentialRolloutRate
impl Default for AwsJobExponentialRolloutRate
Source§fn default() -> AwsJobExponentialRolloutRate
fn default() -> AwsJobExponentialRolloutRate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsJobExponentialRolloutRate
impl<'de> Deserialize<'de> for AwsJobExponentialRolloutRate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AwsJobExponentialRolloutRate
impl PartialEq for AwsJobExponentialRolloutRate
Source§fn eq(&self, other: &AwsJobExponentialRolloutRate) -> bool
fn eq(&self, other: &AwsJobExponentialRolloutRate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AwsJobExponentialRolloutRate
Auto Trait Implementations§
impl Freeze for AwsJobExponentialRolloutRate
impl RefUnwindSafe for AwsJobExponentialRolloutRate
impl Send for AwsJobExponentialRolloutRate
impl Sync for AwsJobExponentialRolloutRate
impl Unpin for AwsJobExponentialRolloutRate
impl UnwindSafe for AwsJobExponentialRolloutRate
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