Struct aws_sdk_iot::types::JobExecutionsRolloutConfig
source · #[non_exhaustive]pub struct JobExecutionsRolloutConfig {
pub maximum_per_minute: Option<i32>,
pub exponential_rate: Option<ExponentialRolloutRate>,
}
Expand description
Allows you to create a staged rollout of a job.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.maximum_per_minute: Option<i32>
The maximum number of things that will be notified of a pending job, per minute. This parameter allows you to create a staged rollout.
exponential_rate: Option<ExponentialRolloutRate>
The rate of increase for a job rollout. This parameter allows you to define an exponential rate for a job rollout.
Implementations§
source§impl JobExecutionsRolloutConfig
impl JobExecutionsRolloutConfig
sourcepub fn maximum_per_minute(&self) -> Option<i32>
pub fn maximum_per_minute(&self) -> Option<i32>
The maximum number of things that will be notified of a pending job, per minute. This parameter allows you to create a staged rollout.
sourcepub fn exponential_rate(&self) -> Option<&ExponentialRolloutRate>
pub fn exponential_rate(&self) -> Option<&ExponentialRolloutRate>
The rate of increase for a job rollout. This parameter allows you to define an exponential rate for a job rollout.
source§impl JobExecutionsRolloutConfig
impl JobExecutionsRolloutConfig
sourcepub fn builder() -> JobExecutionsRolloutConfigBuilder
pub fn builder() -> JobExecutionsRolloutConfigBuilder
Creates a new builder-style object to manufacture JobExecutionsRolloutConfig
.
Trait Implementations§
source§impl Clone for JobExecutionsRolloutConfig
impl Clone for JobExecutionsRolloutConfig
source§fn clone(&self) -> JobExecutionsRolloutConfig
fn clone(&self) -> JobExecutionsRolloutConfig
Returns a copy 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 JobExecutionsRolloutConfig
impl Debug for JobExecutionsRolloutConfig
source§impl PartialEq for JobExecutionsRolloutConfig
impl PartialEq for JobExecutionsRolloutConfig
source§fn eq(&self, other: &JobExecutionsRolloutConfig) -> bool
fn eq(&self, other: &JobExecutionsRolloutConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for JobExecutionsRolloutConfig
Auto Trait Implementations§
impl RefUnwindSafe for JobExecutionsRolloutConfig
impl Send for JobExecutionsRolloutConfig
impl Sync for JobExecutionsRolloutConfig
impl Unpin for JobExecutionsRolloutConfig
impl UnwindSafe for JobExecutionsRolloutConfig
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
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>
Creates a shared type from an unshared type.