Class: Aws::CodeDeploy::Types::Diagnostics
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::Diagnostics
- Defined in:
- gems/aws-sdk-codedeploy/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.
1951 1952 1953 1954 1955 1956 1957 1958 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 1951 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.
1951 1952 1953 1954 1955 1956 1957 1958 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 1951 class Diagnostics < Struct.new( :error_code, :script_name, :message, :log_tail) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
The message associated with the error.
1951 1952 1953 1954 1955 1956 1957 1958 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 1951 class Diagnostics < Struct.new( :error_code, :script_name, :message, :log_tail) SENSITIVE = [] include Aws::Structure end |
#script_name ⇒ String
The name of the script.
1951 1952 1953 1954 1955 1956 1957 1958 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 1951 class Diagnostics < Struct.new( :error_code, :script_name, :message, :log_tail) SENSITIVE = [] include Aws::Structure end |