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.
4290 4291 4292 4293 4294 4295 4296 4297 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4290 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.
4290 4291 4292 4293 4294 4295 4296 4297 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4290 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
4290 4291 4292 4293 4294 4295 4296 4297 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4290 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
4290 4291 4292 4293 4294 4295 4296 4297 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4290 class UpgradeStepItem < Struct.new( :upgrade_step, :upgrade_step_status, :issues, :progress_percent) SENSITIVE = [] include Aws::Structure end |