Struct aws_sdk_iot::types::AwsJobExecutionsRolloutConfig  
source · #[non_exhaustive]pub struct AwsJobExecutionsRolloutConfig {
    pub maximum_per_minute: Option<i32>,
    pub exponential_rate: Option<AwsJobExponentialRolloutRate>,
}Expand description
Configuration for the rollout of OTA updates.
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 OTA update job executions started per minute.
exponential_rate: Option<AwsJobExponentialRolloutRate>The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.
Implementations§
source§impl AwsJobExecutionsRolloutConfig
 
impl AwsJobExecutionsRolloutConfig
sourcepub fn maximum_per_minute(&self) -> Option<i32>
 
pub fn maximum_per_minute(&self) -> Option<i32>
The maximum number of OTA update job executions started per minute.
sourcepub fn exponential_rate(&self) -> Option<&AwsJobExponentialRolloutRate>
 
pub fn exponential_rate(&self) -> Option<&AwsJobExponentialRolloutRate>
The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.
source§impl AwsJobExecutionsRolloutConfig
 
impl AwsJobExecutionsRolloutConfig
sourcepub fn builder() -> AwsJobExecutionsRolloutConfigBuilder
 
pub fn builder() -> AwsJobExecutionsRolloutConfigBuilder
Creates a new builder-style object to manufacture AwsJobExecutionsRolloutConfig.
Trait Implementations§
source§impl Clone for AwsJobExecutionsRolloutConfig
 
impl Clone for AwsJobExecutionsRolloutConfig
source§fn clone(&self) -> AwsJobExecutionsRolloutConfig
 
fn clone(&self) -> AwsJobExecutionsRolloutConfig
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 PartialEq for AwsJobExecutionsRolloutConfig
 
impl PartialEq for AwsJobExecutionsRolloutConfig
source§fn eq(&self, other: &AwsJobExecutionsRolloutConfig) -> bool
 
fn eq(&self, other: &AwsJobExecutionsRolloutConfig) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AwsJobExecutionsRolloutConfig
Auto Trait Implementations§
impl RefUnwindSafe for AwsJobExecutionsRolloutConfig
impl Send for AwsJobExecutionsRolloutConfig
impl Sync for AwsJobExecutionsRolloutConfig
impl Unpin for AwsJobExecutionsRolloutConfig
impl UnwindSafe for AwsJobExecutionsRolloutConfig
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.