Class: Aws::MWAA::Types::UpdateError

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mwaa/types.rb

Overview

Describes the error(s) encountered with the last update of the environment.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_codeString

The error code that corresponds to the error with the last update.

Returns:

  • (String)


1748
1749
1750
1751
1752
1753
# File 'lib/aws-sdk-mwaa/types.rb', line 1748

class UpdateError < Struct.new(
  :error_code,
  :error_message)
  SENSITIVE = []
  include Aws::Structure
end

#error_messageString

The error message that corresponds to the error code.

Returns:

  • (String)


1748
1749
1750
1751
1752
1753
# File 'lib/aws-sdk-mwaa/types.rb', line 1748

class UpdateError < Struct.new(
  :error_code,
  :error_message)
  SENSITIVE = []
  include Aws::Structure
end