Struct aws_sdk_robomaker::types::DeploymentConfig
source · #[non_exhaustive]pub struct DeploymentConfig {
pub concurrent_deployment_percentage: Option<i32>,
pub failure_threshold_percentage: Option<i32>,
pub robot_deployment_timeout_in_seconds: Option<i64>,
pub download_condition_file: Option<S3Object>,
}Expand description
Information about a deployment configuration.
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.concurrent_deployment_percentage: Option<i32>The percentage of robots receiving the deployment at the same time.
failure_threshold_percentage: Option<i32>The percentage of deployments that need to fail before stopping deployment.
robot_deployment_timeout_in_seconds: Option<i64>The amount of time, in seconds, to wait for deployment to a single robot to complete. Choose a time between 1 minute and 7 days. The default is 5 hours.
download_condition_file: Option<S3Object>The download condition file.
Implementations§
source§impl DeploymentConfig
impl DeploymentConfig
sourcepub fn concurrent_deployment_percentage(&self) -> Option<i32>
pub fn concurrent_deployment_percentage(&self) -> Option<i32>
The percentage of robots receiving the deployment at the same time.
sourcepub fn failure_threshold_percentage(&self) -> Option<i32>
pub fn failure_threshold_percentage(&self) -> Option<i32>
The percentage of deployments that need to fail before stopping deployment.
sourcepub fn robot_deployment_timeout_in_seconds(&self) -> Option<i64>
pub fn robot_deployment_timeout_in_seconds(&self) -> Option<i64>
The amount of time, in seconds, to wait for deployment to a single robot to complete. Choose a time between 1 minute and 7 days. The default is 5 hours.
sourcepub fn download_condition_file(&self) -> Option<&S3Object>
pub fn download_condition_file(&self) -> Option<&S3Object>
The download condition file.
source§impl DeploymentConfig
impl DeploymentConfig
sourcepub fn builder() -> DeploymentConfigBuilder
pub fn builder() -> DeploymentConfigBuilder
Creates a new builder-style object to manufacture DeploymentConfig.
Trait Implementations§
source§impl Clone for DeploymentConfig
impl Clone for DeploymentConfig
source§fn clone(&self) -> DeploymentConfig
fn clone(&self) -> DeploymentConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeploymentConfig
impl Debug for DeploymentConfig
source§impl PartialEq for DeploymentConfig
impl PartialEq for DeploymentConfig
source§fn eq(&self, other: &DeploymentConfig) -> bool
fn eq(&self, other: &DeploymentConfig) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeploymentConfig
Auto Trait Implementations§
impl Freeze for DeploymentConfig
impl RefUnwindSafe for DeploymentConfig
impl Send for DeploymentConfig
impl Sync for DeploymentConfig
impl Unpin for DeploymentConfig
impl UnwindSafe for DeploymentConfig
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