Struct aws_sdk_robomaker::types::BatchPolicy
source · #[non_exhaustive]pub struct BatchPolicy {
pub timeout_in_seconds: Option<i64>,
pub max_concurrency: Option<i32>,
}
Expand description
Information about the batch policy.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.timeout_in_seconds: Option<i64>
The amount of time, in seconds, to wait for the batch to complete.
If a batch times out, and there are pending requests that were failing due to an internal failure (like InternalServiceError
), they will be moved to the failed list and the batch status will be Failed
. If the pending requests were failing for any other reason, the failed pending requests will be moved to the failed list and the batch status will be TimedOut
.
max_concurrency: Option<i32>
The number of active simulation jobs create as part of the batch that can be in an active state at the same time.
Active states include: Pending
,Preparing
, Running
, Restarting
, RunningFailed
and Terminating
. All other states are terminal states.
Implementations§
source§impl BatchPolicy
impl BatchPolicy
sourcepub fn timeout_in_seconds(&self) -> Option<i64>
pub fn timeout_in_seconds(&self) -> Option<i64>
The amount of time, in seconds, to wait for the batch to complete.
If a batch times out, and there are pending requests that were failing due to an internal failure (like InternalServiceError
), they will be moved to the failed list and the batch status will be Failed
. If the pending requests were failing for any other reason, the failed pending requests will be moved to the failed list and the batch status will be TimedOut
.
sourcepub fn max_concurrency(&self) -> Option<i32>
pub fn max_concurrency(&self) -> Option<i32>
The number of active simulation jobs create as part of the batch that can be in an active state at the same time.
Active states include: Pending
,Preparing
, Running
, Restarting
, RunningFailed
and Terminating
. All other states are terminal states.
source§impl BatchPolicy
impl BatchPolicy
sourcepub fn builder() -> BatchPolicyBuilder
pub fn builder() -> BatchPolicyBuilder
Creates a new builder-style object to manufacture BatchPolicy
.
Trait Implementations§
source§impl Clone for BatchPolicy
impl Clone for BatchPolicy
source§fn clone(&self) -> BatchPolicy
fn clone(&self) -> BatchPolicy
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BatchPolicy
impl Debug for BatchPolicy
source§impl PartialEq for BatchPolicy
impl PartialEq for BatchPolicy
source§fn eq(&self, other: &BatchPolicy) -> bool
fn eq(&self, other: &BatchPolicy) -> bool
self
and other
values to be equal, and is used
by ==
.