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 ==.impl StructuralPartialEq for BatchPolicy
Auto Trait Implementations§
impl Freeze for BatchPolicy
impl RefUnwindSafe for BatchPolicy
impl Send for BatchPolicy
impl Sync for BatchPolicy
impl Unpin for BatchPolicy
impl UnwindSafe for BatchPolicy
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> 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