[][src]Struct rusoto_robomaker::DeploymentConfig

pub struct DeploymentConfig {
    pub concurrent_deployment_percentage: Option<i64>,
    pub download_condition_file: Option<S3Object>,
    pub failure_threshold_percentage: Option<i64>,
    pub robot_deployment_timeout_in_seconds: Option<i64>,
}

Information about a deployment configuration.

Fields

concurrent_deployment_percentage: Option<i64>

The percentage of robots receiving the deployment at the same time.

download_condition_file: Option<S3Object>

The download condition file.

failure_threshold_percentage: Option<i64>

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.

Trait Implementations

impl Clone for DeploymentConfig[src]

impl Debug for DeploymentConfig[src]

impl Default for DeploymentConfig[src]

impl<'de> Deserialize<'de> for DeploymentConfig[src]

impl PartialEq<DeploymentConfig> for DeploymentConfig[src]

impl Serialize for DeploymentConfig[src]

impl StructuralPartialEq for DeploymentConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.