[][src]Struct rusoto_robomaker::SyncDeploymentJobResponse

pub struct SyncDeploymentJobResponse {
    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>,
}

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the synchronization request.

created_at: Option<f64>

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

deployment_application_configs: Option<Vec<DeploymentApplicationConfig>>

Information about the deployment application configurations.

deployment_config: Option<DeploymentConfig>

Information about the deployment configuration.

failure_code: Option<String>

The failure code if the job fails:

InternalServiceError

Internal service error.

RobotApplicationCrash

Robot application exited abnormally.

SimulationApplicationCrash

Simulation application exited abnormally.

BadPermissionsRobotApplication

Robot application bundle could not be downloaded.

BadPermissionsSimulationApplication

Simulation application bundle could not be downloaded.

BadPermissionsS3Output

Unable to publish outputs to customer-provided S3 bucket.

BadPermissionsCloudwatchLogs

Unable to publish logs to customer-provided CloudWatch Logs resource.

SubnetIpLimitExceeded

Subnet IP limit exceeded.

ENILimitExceeded

ENI limit exceeded.

BadPermissionsUserCredentials

Unable to use the Role provided.

InvalidBundleRobotApplication

Robot bundle cannot be extracted (invalid format, bundling error, or other issue).

InvalidBundleSimulationApplication

Simulation bundle cannot be extracted (invalid format, bundling error, or other issue).

RobotApplicationVersionMismatchedEtag

Etag for RobotApplication does not match value during version creation.

SimulationApplicationVersionMismatchedEtag

Etag for SimulationApplication does not match value during version creation.

failure_reason: Option<String>

The failure reason if the job fails.

fleet: Option<String>

The Amazon Resource Name (ARN) of the fleet.

status: Option<String>

The status of the synchronization job.

Trait Implementations

impl Clone for SyncDeploymentJobResponse[src]

impl Debug for SyncDeploymentJobResponse[src]

impl Default for SyncDeploymentJobResponse[src]

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

impl PartialEq<SyncDeploymentJobResponse> for SyncDeploymentJobResponse[src]

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