[][src]Struct rusoto_codedeploy::Diagnostics

pub struct Diagnostics {
    pub error_code: Option<String>,
    pub log_tail: Option<String>,
    pub message: Option<String>,
    pub script_name: Option<String>,
}

Diagnostic information about executable scripts that are part of a deployment.

Fields

error_code: Option<String>

The associated error code:

  • Success: The specified script ran.

  • ScriptMissing: The specified script was not found in the specified location.

  • ScriptNotExecutable: The specified script is not a recognized executable file type.

  • ScriptTimedOut: The specified script did not finish running in the specified time period.

  • ScriptFailed: The specified script failed to run as expected.

  • UnknownError: The specified script did not run for an unknown reason.

log_tail: Option<String>

The last portion of the diagnostic log.

If available, AWS CodeDeploy returns up to the last 4 KB of the diagnostic log.

message: Option<String>

The message associated with the error.

script_name: Option<String>

The name of the script.

Trait Implementations

impl Clone for Diagnostics[src]

impl Default for Diagnostics[src]

impl PartialEq<Diagnostics> for Diagnostics[src]

impl Debug for Diagnostics[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self