Interface UpgradeStepItem.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<UpgradeStepItem.Builder,UpgradeStepItem>
,SdkBuilder<UpgradeStepItem.Builder,UpgradeStepItem>
,SdkPojo
- Enclosing class:
- UpgradeStepItem
public static interface UpgradeStepItem.Builder extends SdkPojo, CopyableBuilder<UpgradeStepItem.Builder,UpgradeStepItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpgradeStepItem.Builder
issues(String... issues)
A list of strings containing detailed information about the errors encountered in a particular step.UpgradeStepItem.Builder
issues(Collection<String> issues)
A list of strings containing detailed information about the errors encountered in a particular step.UpgradeStepItem.Builder
progressPercent(Double progressPercent)
The Floating point value representing progress percentage of a particular step.UpgradeStepItem.Builder
upgradeStep(String upgradeStep)
Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through: PreUpgradeCheck Snapshot UpgradeUpgradeStepItem.Builder
upgradeStep(UpgradeStep upgradeStep)
Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through: PreUpgradeCheck Snapshot UpgradeUpgradeStepItem.Builder
upgradeStepStatus(String upgradeStepStatus)
The status of a particular step during an upgrade.UpgradeStepItem.Builder
upgradeStepStatus(UpgradeStatus upgradeStepStatus)
The status of a particular step during an upgrade.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
upgradeStep
UpgradeStepItem.Builder upgradeStep(String upgradeStep)
Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through:
- PreUpgradeCheck
- Snapshot
- Upgrade
- Parameters:
upgradeStep
- Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through:- PreUpgradeCheck
- Snapshot
- Upgrade
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
UpgradeStep
,UpgradeStep
-
upgradeStep
UpgradeStepItem.Builder upgradeStep(UpgradeStep upgradeStep)
Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through:
- PreUpgradeCheck
- Snapshot
- Upgrade
- Parameters:
upgradeStep
- Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through:- PreUpgradeCheck
- Snapshot
- Upgrade
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
UpgradeStep
,UpgradeStep
-
upgradeStepStatus
UpgradeStepItem.Builder upgradeStepStatus(String upgradeStepStatus)
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
- Parameters:
upgradeStepStatus
- 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
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
UpgradeStatus
,UpgradeStatus
-
upgradeStepStatus
UpgradeStepItem.Builder upgradeStepStatus(UpgradeStatus upgradeStepStatus)
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
- Parameters:
upgradeStepStatus
- 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
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
UpgradeStatus
,UpgradeStatus
-
issues
UpgradeStepItem.Builder issues(Collection<String> issues)
A list of strings containing detailed information about the errors encountered in a particular step.
- Parameters:
issues
- A list of strings containing detailed information about the errors encountered in a particular step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
issues
UpgradeStepItem.Builder issues(String... issues)
A list of strings containing detailed information about the errors encountered in a particular step.
- Parameters:
issues
- A list of strings containing detailed information about the errors encountered in a particular step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
progressPercent
UpgradeStepItem.Builder progressPercent(Double progressPercent)
The Floating point value representing progress percentage of a particular step.
- Parameters:
progressPercent
- The Floating point value representing progress percentage of a particular step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-