Class: Aws::ElasticsearchService::Types::UpgradeStepItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::UpgradeStepItem
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Represents a single step of the Upgrade or Upgrade Eligibility Check workflow.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#issues ⇒ Array<String>
A list of strings containing detailed information about the errors encountered in a particular step.
-
#progress_percent ⇒ Float
The Floating point value representing progress percentage of a particular step.
-
#upgrade_step ⇒ String
Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through: * PreUpgradeCheck * Snapshot * Upgrade.
-
#upgrade_step_status ⇒ String
The status of a particular step during an upgrade.
Instance Attribute Details
#issues ⇒ Array<String>
A list of strings containing detailed information about the errors encountered in a particular step.
4450 4451 4452 4453 4454 4455 4456 4457 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4450 class UpgradeStepItem < Struct.new( :upgrade_step, :upgrade_step_status, :issues, :progress_percent) SENSITIVE = [] include Aws::Structure end |
#progress_percent ⇒ Float
The Floating point value representing progress percentage of a particular step.
4450 4451 4452 4453 4454 4455 4456 4457 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4450 class UpgradeStepItem < Struct.new( :upgrade_step, :upgrade_step_status, :issues, :progress_percent) 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
4450 4451 4452 4453 4454 4455 4456 4457 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4450 class UpgradeStepItem < Struct.new( :upgrade_step, :upgrade_step_status, :issues, :progress_percent) SENSITIVE = [] include Aws::Structure end |
#upgrade_step_status ⇒ String
The status of a particular step during an upgrade. The status can take one of the following values: * In Progress
-
Succeeded
-
Succeeded with Issues
-
Failed
4450 4451 4452 4453 4454 4455 4456 4457 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4450 class UpgradeStepItem < Struct.new( :upgrade_step, :upgrade_step_status, :issues, :progress_percent) SENSITIVE = [] include Aws::Structure end |