Struct aws_sdk_robomaker::types::builders::DeploymentConfigBuilder
source · #[non_exhaustive]pub struct DeploymentConfigBuilder { /* private fields */ }Expand description
A builder for DeploymentConfig.
Implementations§
source§impl DeploymentConfigBuilder
impl DeploymentConfigBuilder
sourcepub fn concurrent_deployment_percentage(self, input: i32) -> Self
pub fn concurrent_deployment_percentage(self, input: i32) -> Self
The percentage of robots receiving the deployment at the same time.
sourcepub fn set_concurrent_deployment_percentage(self, input: Option<i32>) -> Self
pub fn set_concurrent_deployment_percentage(self, input: Option<i32>) -> Self
The percentage of robots receiving the deployment at the same time.
sourcepub fn get_concurrent_deployment_percentage(&self) -> &Option<i32>
pub fn get_concurrent_deployment_percentage(&self) -> &Option<i32>
The percentage of robots receiving the deployment at the same time.
sourcepub fn failure_threshold_percentage(self, input: i32) -> Self
pub fn failure_threshold_percentage(self, input: i32) -> Self
The percentage of deployments that need to fail before stopping deployment.
sourcepub fn set_failure_threshold_percentage(self, input: Option<i32>) -> Self
pub fn set_failure_threshold_percentage(self, input: Option<i32>) -> Self
The percentage of deployments that need to fail before stopping deployment.
sourcepub fn get_failure_threshold_percentage(&self) -> &Option<i32>
pub fn get_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, input: i64) -> Self
pub fn robot_deployment_timeout_in_seconds(self, input: i64) -> Self
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 set_robot_deployment_timeout_in_seconds(self, input: Option<i64>) -> Self
pub fn set_robot_deployment_timeout_in_seconds(self, input: Option<i64>) -> Self
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 get_robot_deployment_timeout_in_seconds(&self) -> &Option<i64>
pub fn get_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, input: S3Object) -> Self
pub fn download_condition_file(self, input: S3Object) -> Self
The download condition file.
sourcepub fn set_download_condition_file(self, input: Option<S3Object>) -> Self
pub fn set_download_condition_file(self, input: Option<S3Object>) -> Self
The download condition file.
sourcepub fn get_download_condition_file(&self) -> &Option<S3Object>
pub fn get_download_condition_file(&self) -> &Option<S3Object>
The download condition file.
sourcepub fn build(self) -> DeploymentConfig
pub fn build(self) -> DeploymentConfig
Consumes the builder and constructs a DeploymentConfig.
Trait Implementations§
source§impl Clone for DeploymentConfigBuilder
impl Clone for DeploymentConfigBuilder
source§fn clone(&self) -> DeploymentConfigBuilder
fn clone(&self) -> DeploymentConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeploymentConfigBuilder
impl Debug for DeploymentConfigBuilder
source§impl Default for DeploymentConfigBuilder
impl Default for DeploymentConfigBuilder
source§fn default() -> DeploymentConfigBuilder
fn default() -> DeploymentConfigBuilder
source§impl PartialEq for DeploymentConfigBuilder
impl PartialEq for DeploymentConfigBuilder
source§fn eq(&self, other: &DeploymentConfigBuilder) -> bool
fn eq(&self, other: &DeploymentConfigBuilder) -> bool
self and other values to be equal, and is used
by ==.