[][src]Struct rusoto_robomaker::CreateDeploymentJobResponse

pub struct CreateDeploymentJobResponse {
    pub arn: Option<String>,
    pub created_at: Option<f64>,
    pub deployment_application_configs: Option<Vec<DeploymentApplicationConfig>>,
    pub deployment_config: Option<DeploymentConfig>,
    pub failure_code: Option<String>,
    pub failure_reason: Option<String>,
    pub fleet: Option<String>,
    pub status: Option<String>,
    pub tags: Option<HashMap<String, String>>,
}

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the deployment job.

created_at: Option<f64>

The time, in milliseconds since the epoch, when the fleet was created.

deployment_application_configs: Option<Vec<DeploymentApplicationConfig>>

The deployment application configuration.

deployment_config: Option<DeploymentConfig>

The deployment configuration.

failure_code: Option<String>

The failure code of the simulation job if it failed:

BadPermissionError

AWS Greengrass requires a service-level role permission to access other services. The role must include the AWSGreengrassResourceAccessRolePolicy managed policy.

ExtractingBundleFailure

The robot application could not be extracted from the bundle.

FailureThresholdBreached

The percentage of robots that could not be updated exceeded the percentage set for the deployment.

GreengrassDeploymentFailed

The robot application could not be deployed to the robot.

GreengrassGroupVersionDoesNotExist

The AWS Greengrass group or version associated with a robot is missing.

InternalServerError

An internal error has occurred. Retry your request, but if the problem persists, contact us with details.

MissingRobotApplicationArchitecture

The robot application does not have a source that matches the architecture of the robot.

MissingRobotDeploymentResource

One or more of the resources specified for the robot application are missing. For example, does the robot application have the correct launch package and launch file?

PostLaunchFileFailure

The post-launch script failed.

PreLaunchFileFailure

The pre-launch script failed.

ResourceNotFound

One or more deployment resources are missing. For example, do robot application source bundles still exist?

RobotDeploymentNoResponse

There is no response from the robot. It might not be powered on or connected to the internet.

failure_reason: Option<String>

The failure reason of the deployment job if it failed.

fleet: Option<String>

The target fleet for the deployment job.

status: Option<String>

The status of the deployment job.

tags: Option<HashMap<String, String>>

The list of all tags added to the deployment job.

Trait Implementations

impl Clone for CreateDeploymentJobResponse[src]

impl Debug for CreateDeploymentJobResponse[src]

impl Default for CreateDeploymentJobResponse[src]

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

impl PartialEq<CreateDeploymentJobResponse> for CreateDeploymentJobResponse[src]

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