pub struct ExponentialRolloutRate {
pub base_rate_per_minute: i64,
pub increment_factor: f64,
pub rate_increase_criteria: RateIncreaseCriteria,
}Expand description
Allows you to create an exponential rate of rollout for a job.
Fields§
§base_rate_per_minute: i64The minimum number of things that will be notified of a pending job, per minute at the start of job rollout. This parameter allows you to define the initial rate of rollout.
increment_factor: f64The exponential factor to increase the rate of rollout for a job.
rate_increase_criteria: RateIncreaseCriteriaThe 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 ExponentialRolloutRate
impl Clone for ExponentialRolloutRate
Source§fn clone(&self) -> ExponentialRolloutRate
fn clone(&self) -> ExponentialRolloutRate
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 ExponentialRolloutRate
impl Debug for ExponentialRolloutRate
Source§impl Default for ExponentialRolloutRate
impl Default for ExponentialRolloutRate
Source§fn default() -> ExponentialRolloutRate
fn default() -> ExponentialRolloutRate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExponentialRolloutRate
impl<'de> Deserialize<'de> for ExponentialRolloutRate
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 ExponentialRolloutRate
impl PartialEq for ExponentialRolloutRate
Source§impl Serialize for ExponentialRolloutRate
impl Serialize for ExponentialRolloutRate
impl StructuralPartialEq for ExponentialRolloutRate
Auto Trait Implementations§
impl Freeze for ExponentialRolloutRate
impl RefUnwindSafe for ExponentialRolloutRate
impl Send for ExponentialRolloutRate
impl Sync for ExponentialRolloutRate
impl Unpin for ExponentialRolloutRate
impl UnwindSafe for ExponentialRolloutRate
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