pub struct AwsJobExecutionsRolloutConfig {
pub exponential_rate: Option<AwsJobExponentialRolloutRate>,
pub maximum_per_minute: Option<i64>,
}Expand description
Configuration for the rollout of OTA updates.
Fields§
§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.
maximum_per_minute: Option<i64>The maximum number of OTA update job executions started per minute.
Trait Implementations§
Source§impl Clone for AwsJobExecutionsRolloutConfig
impl Clone for AwsJobExecutionsRolloutConfig
Source§fn clone(&self) -> AwsJobExecutionsRolloutConfig
fn clone(&self) -> AwsJobExecutionsRolloutConfig
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 Default for AwsJobExecutionsRolloutConfig
impl Default for AwsJobExecutionsRolloutConfig
Source§fn default() -> AwsJobExecutionsRolloutConfig
fn default() -> AwsJobExecutionsRolloutConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsJobExecutionsRolloutConfig
impl<'de> Deserialize<'de> for AwsJobExecutionsRolloutConfig
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 AwsJobExecutionsRolloutConfig
impl PartialEq for AwsJobExecutionsRolloutConfig
Source§fn eq(&self, other: &AwsJobExecutionsRolloutConfig) -> bool
fn eq(&self, other: &AwsJobExecutionsRolloutConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AwsJobExecutionsRolloutConfig
Auto Trait Implementations§
impl Freeze for AwsJobExecutionsRolloutConfig
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