Class: Aws::ElasticsearchService::Types::GetUpgradeStatusResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::GetUpgradeStatusResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Container for response returned by ‘ GetUpgradeStatus ` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#step_status ⇒ String
One of 4 statuses that a step can go through returned as part of the ‘ GetUpgradeStatusResponse ` object.
-
#upgrade_name ⇒ String
A string that describes the update briefly.
-
#upgrade_step ⇒ String
Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through: * PreUpgradeCheck * Snapshot * Upgrade.
Instance Attribute Details
#step_status ⇒ String
One of 4 statuses that a step can go through returned as part of the ‘ GetUpgradeStatusResponse ` object. The status can take one of the following values: * In Progress
-
Succeeded
-
Succeeded with Issues
-
Failed
2574 2575 2576 2577 2578 2579 2580 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2574 class GetUpgradeStatusResponse < Struct.new( :upgrade_step, :step_status, :upgrade_name) SENSITIVE = [] include Aws::Structure end |
#upgrade_name ⇒ String
A string that describes the update briefly
2574 2575 2576 2577 2578 2579 2580 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2574 class GetUpgradeStatusResponse < Struct.new( :upgrade_step, :step_status, :upgrade_name) SENSITIVE = [] include Aws::Structure end |
#upgrade_step ⇒ String
Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through: * PreUpgradeCheck
-
Snapshot
-
Upgrade
2574 2575 2576 2577 2578 2579 2580 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2574 class GetUpgradeStatusResponse < Struct.new( :upgrade_step, :step_status, :upgrade_name) SENSITIVE = [] include Aws::Structure end |