public static interface UpgradeHistory.Builder extends SdkPojo, CopyableBuilder<UpgradeHistory.Builder,UpgradeHistory>
Modifier and Type | Method and Description |
---|---|
UpgradeHistory.Builder |
startTimestamp(Instant startTimestamp)
UTC Timestamp at which the Upgrade API call was made in "yyyy-MM-ddTHH:mm:ssZ" format.
|
UpgradeHistory.Builder |
stepsList(Collection<UpgradeStepItem> stepsList)
A list of
UpgradeStepItem s representing information about each step performed as pard
of a specific Upgrade or Upgrade Eligibility Check. |
UpgradeHistory.Builder |
stepsList(Consumer<UpgradeStepItem.Builder>... stepsList)
A list of
UpgradeStepItem s representing information about each step performed as pard
of a specific Upgrade or Upgrade Eligibility Check. |
UpgradeHistory.Builder |
stepsList(UpgradeStepItem... stepsList)
A list of
UpgradeStepItem s representing information about each step performed as pard
of a specific Upgrade or Upgrade Eligibility Check. |
UpgradeHistory.Builder |
upgradeName(String upgradeName)
A string that describes the update briefly
|
UpgradeHistory.Builder |
upgradeStatus(String upgradeStatus)
The overall status of the update.
|
UpgradeHistory.Builder |
upgradeStatus(UpgradeStatus upgradeStatus)
The overall status of the update.
|
copy
applyMutation, build
UpgradeHistory.Builder upgradeName(String upgradeName)
A string that describes the update briefly
upgradeName
- A string that describes the update brieflyUpgradeHistory.Builder startTimestamp(Instant startTimestamp)
UTC Timestamp at which the Upgrade API call was made in "yyyy-MM-ddTHH:mm:ssZ" format.
startTimestamp
- UTC Timestamp at which the Upgrade API call was made in "yyyy-MM-ddTHH:mm:ssZ" format.UpgradeHistory.Builder upgradeStatus(String upgradeStatus)
The overall status of the update. The status can take one of the following values:
upgradeStatus
- The overall status of the update. The status can take one of the following values:
UpgradeStatus
,
UpgradeStatus
UpgradeHistory.Builder upgradeStatus(UpgradeStatus upgradeStatus)
The overall status of the update. The status can take one of the following values:
upgradeStatus
- The overall status of the update. The status can take one of the following values:
UpgradeStatus
,
UpgradeStatus
UpgradeHistory.Builder stepsList(Collection<UpgradeStepItem> stepsList)
A list of UpgradeStepItem
s representing information about each step performed as pard
of a specific Upgrade or Upgrade Eligibility Check.
stepsList
- A list of UpgradeStepItem
s representing information about each step performed
as pard of a specific Upgrade or Upgrade Eligibility Check.UpgradeHistory.Builder stepsList(UpgradeStepItem... stepsList)
A list of UpgradeStepItem
s representing information about each step performed as pard
of a specific Upgrade or Upgrade Eligibility Check.
stepsList
- A list of UpgradeStepItem
s representing information about each step performed
as pard of a specific Upgrade or Upgrade Eligibility Check.UpgradeHistory.Builder stepsList(Consumer<UpgradeStepItem.Builder>... stepsList)
A list of UpgradeStepItem
s representing information about each step performed as pard
of a specific Upgrade or Upgrade Eligibility Check.
List.Builder
avoiding the need
to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and
its result is passed to #stepsList(List)
.stepsList
- a consumer that will call methods on List.Builder
#stepsList(List)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.