Class: Aws::CodeDeploy::Types::Diagnostics
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::Diagnostics
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Diagnostic information about executable scripts that are part of a deployment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_code ⇒ String
The associated error code:.
-
#log_tail ⇒ String
The last portion of the diagnostic log.
-
#message ⇒ String
The message associated with the error.
-
#script_name ⇒ String
The name of the script.
Instance Attribute Details
#error_code ⇒ 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.
2032 2033 2034 2035 2036 2037 2038 2039 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 2032 class Diagnostics < Struct.new( :error_code, :script_name, :message, :log_tail) SENSITIVE = [] include Aws::Structure end |
#log_tail ⇒ String
The last portion of the diagnostic log.
If available, CodeDeploy returns up to the last 4 KB of the diagnostic log.
2032 2033 2034 2035 2036 2037 2038 2039 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 2032 class Diagnostics < Struct.new( :error_code, :script_name, :message, :log_tail) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
The message associated with the error.
2032 2033 2034 2035 2036 2037 2038 2039 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 2032 class Diagnostics < Struct.new( :error_code, :script_name, :message, :log_tail) SENSITIVE = [] include Aws::Structure end |
#script_name ⇒ String
The name of the script.
2032 2033 2034 2035 2036 2037 2038 2039 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 2032 class Diagnostics < Struct.new( :error_code, :script_name, :message, :log_tail) SENSITIVE = [] include Aws::Structure end |