Class: Aws::MWAA::Types::LastUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::MWAA::Types::LastUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mwaa/types.rb
Overview
Describes the status of the last update on the environment, and any errors that were encountered.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_at ⇒ Time
The day and time of the last update on the environment.
-
#error ⇒ Types::UpdateError
The error that was encountered during the last update of the environment.
-
#source ⇒ String
The source of the last update to the environment.
-
#status ⇒ String
The status of the last update on the environment.
Instance Attribute Details
#created_at ⇒ Time
The day and time of the last update on the environment.
1012 1013 1014 1015 1016 1017 1018 1019 |
# File 'lib/aws-sdk-mwaa/types.rb', line 1012 class LastUpdate < Struct.new( :status, :created_at, :error, :source) SENSITIVE = [] include Aws::Structure end |
#error ⇒ Types::UpdateError
The error that was encountered during the last update of the environment.
1012 1013 1014 1015 1016 1017 1018 1019 |
# File 'lib/aws-sdk-mwaa/types.rb', line 1012 class LastUpdate < Struct.new( :status, :created_at, :error, :source) SENSITIVE = [] include Aws::Structure end |
#source ⇒ String
The source of the last update to the environment. Includes internal processes by Amazon MWAA, such as an environment maintenance update.
1012 1013 1014 1015 1016 1017 1018 1019 |
# File 'lib/aws-sdk-mwaa/types.rb', line 1012 class LastUpdate < Struct.new( :status, :created_at, :error, :source) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the last update on the environment.
1012 1013 1014 1015 1016 1017 1018 1019 |
# File 'lib/aws-sdk-mwaa/types.rb', line 1012 class LastUpdate < Struct.new( :status, :created_at, :error, :source) SENSITIVE = [] include Aws::Structure end |