[][src]Struct rusoto_robomaker::DeploymentLaunchConfig

pub struct DeploymentLaunchConfig {
    pub environment_variables: Option<HashMap<String, String>>,
    pub launch_file: String,
    pub package_name: String,
    pub post_launch_file: Option<String>,
    pub pre_launch_file: Option<String>,
}

Configuration information for a deployment launch.

Fields

environment_variables: Option<HashMap<String, String>>

An array of key/value pairs specifying environment variables for the robot application

launch_file: String

The launch file name.

package_name: String

The package name.

post_launch_file: Option<String>

The deployment post-launch file. This file will be executed after the launch file.

pre_launch_file: Option<String>

The deployment pre-launch file. This file will be executed prior to the launch file.

Trait Implementations

impl Clone for DeploymentLaunchConfig[src]

impl Debug for DeploymentLaunchConfig[src]

impl Default for DeploymentLaunchConfig[src]

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

impl PartialEq<DeploymentLaunchConfig> for DeploymentLaunchConfig[src]

impl Serialize for DeploymentLaunchConfig[src]

impl StructuralPartialEq for DeploymentLaunchConfig[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.