Class: Aws::ElasticsearchService::Types::GetUpgradeStatusResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::GetUpgradeStatusResponse
- Defined in:
- gems/aws-sdk-elasticsearchservice/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
2699 2700 2701 2702 2703 2704 2705 |
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 2699 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
2699 2700 2701 2702 2703 2704 2705 |
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 2699 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
2699 2700 2701 2702 2703 2704 2705 |
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 2699 class GetUpgradeStatusResponse < Struct.new( :upgrade_step, :step_status, :upgrade_name) SENSITIVE = [] include Aws::Structure end |