Struct rusoto_codedeploy::Diagnostics [] [src]

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

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.

The last portion of the diagnostic log.

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

The message associated with the error.

The name of the script.

Trait Implementations

impl Default for Diagnostics
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for Diagnostics
[src]

[src]

Formats the value using the given formatter.

impl Clone for Diagnostics
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more