#[non_exhaustive]pub struct IoTJobExponentialRolloutRateBuilder { /* private fields */ }Expand description
A builder for IoTJobExponentialRolloutRate.
Implementations§
source§impl IoTJobExponentialRolloutRateBuilder
impl IoTJobExponentialRolloutRateBuilder
sourcepub fn base_rate_per_minute(self, input: i32) -> Self
pub fn base_rate_per_minute(self, input: i32) -> Self
The minimum number of devices that receive a pending job notification, per minute, when the job starts. This parameter defines the initial rollout rate of the job.
This field is required.sourcepub fn set_base_rate_per_minute(self, input: Option<i32>) -> Self
pub fn set_base_rate_per_minute(self, input: Option<i32>) -> Self
The minimum number of devices that receive a pending job notification, per minute, when the job starts. This parameter defines the initial rollout rate of the job.
sourcepub fn get_base_rate_per_minute(&self) -> &Option<i32>
pub fn get_base_rate_per_minute(&self) -> &Option<i32>
The minimum number of devices that receive a pending job notification, per minute, when the job starts. This parameter defines the initial rollout rate of the job.
sourcepub fn increment_factor(self, input: f64) -> Self
pub fn increment_factor(self, input: f64) -> Self
The exponential factor to increase the rollout rate for the job.
This parameter supports up to one digit after the decimal (for example, you can specify 1.5, but not 1.55).
sourcepub fn set_increment_factor(self, input: Option<f64>) -> Self
pub fn set_increment_factor(self, input: Option<f64>) -> Self
The exponential factor to increase the rollout rate for the job.
This parameter supports up to one digit after the decimal (for example, you can specify 1.5, but not 1.55).
sourcepub fn get_increment_factor(&self) -> &Option<f64>
pub fn get_increment_factor(&self) -> &Option<f64>
The exponential factor to increase the rollout rate for the job.
This parameter supports up to one digit after the decimal (for example, you can specify 1.5, but not 1.55).
sourcepub fn rate_increase_criteria(self, input: IoTJobRateIncreaseCriteria) -> Self
pub fn rate_increase_criteria(self, input: IoTJobRateIncreaseCriteria) -> Self
The criteria to increase the rollout rate for the job.
This field is required.sourcepub fn set_rate_increase_criteria(
self,
input: Option<IoTJobRateIncreaseCriteria>,
) -> Self
pub fn set_rate_increase_criteria( self, input: Option<IoTJobRateIncreaseCriteria>, ) -> Self
The criteria to increase the rollout rate for the job.
sourcepub fn get_rate_increase_criteria(&self) -> &Option<IoTJobRateIncreaseCriteria>
pub fn get_rate_increase_criteria(&self) -> &Option<IoTJobRateIncreaseCriteria>
The criteria to increase the rollout rate for the job.
sourcepub fn build(self) -> Result<IoTJobExponentialRolloutRate, BuildError>
pub fn build(self) -> Result<IoTJobExponentialRolloutRate, BuildError>
Consumes the builder and constructs a IoTJobExponentialRolloutRate.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for IoTJobExponentialRolloutRateBuilder
impl Clone for IoTJobExponentialRolloutRateBuilder
source§fn clone(&self) -> IoTJobExponentialRolloutRateBuilder
fn clone(&self) -> IoTJobExponentialRolloutRateBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for IoTJobExponentialRolloutRateBuilder
impl Default for IoTJobExponentialRolloutRateBuilder
source§fn default() -> IoTJobExponentialRolloutRateBuilder
fn default() -> IoTJobExponentialRolloutRateBuilder
source§impl PartialEq for IoTJobExponentialRolloutRateBuilder
impl PartialEq for IoTJobExponentialRolloutRateBuilder
source§fn eq(&self, other: &IoTJobExponentialRolloutRateBuilder) -> bool
fn eq(&self, other: &IoTJobExponentialRolloutRateBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IoTJobExponentialRolloutRateBuilder
Auto Trait Implementations§
impl Freeze for IoTJobExponentialRolloutRateBuilder
impl RefUnwindSafe for IoTJobExponentialRolloutRateBuilder
impl Send for IoTJobExponentialRolloutRateBuilder
impl Sync for IoTJobExponentialRolloutRateBuilder
impl Unpin for IoTJobExponentialRolloutRateBuilder
impl UnwindSafe for IoTJobExponentialRolloutRateBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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