amazonka-opensearch-2.0: Amazon OpenSearch Service SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.OpenSearch.Types.UpgradeHistory

Description

 
Synopsis

Documentation

data UpgradeHistory Source #

History of the last 10 upgrades and upgrade eligibility checks for an Amazon OpenSearch Service domain.

See: newUpgradeHistory smart constructor.

Constructors

UpgradeHistory' 

Fields

Instances

Instances details
FromJSON UpgradeHistory Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.UpgradeHistory

Generic UpgradeHistory Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.UpgradeHistory

Associated Types

type Rep UpgradeHistory :: Type -> Type #

Read UpgradeHistory Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.UpgradeHistory

Show UpgradeHistory Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.UpgradeHistory

NFData UpgradeHistory Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.UpgradeHistory

Methods

rnf :: UpgradeHistory -> () #

Eq UpgradeHistory Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.UpgradeHistory

Hashable UpgradeHistory Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.UpgradeHistory

type Rep UpgradeHistory Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.UpgradeHistory

type Rep UpgradeHistory = D1 ('MetaData "UpgradeHistory" "Amazonka.OpenSearch.Types.UpgradeHistory" "amazonka-opensearch-2.0-GNoaWlqGXH04P8GBIHM78L" 'False) (C1 ('MetaCons "UpgradeHistory'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "startTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "stepsList") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [UpgradeStepItem]))) :*: (S1 ('MetaSel ('Just "upgradeName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "upgradeStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe UpgradeStatus)))))

newUpgradeHistory :: UpgradeHistory Source #

Create a value of UpgradeHistory with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:startTimestamp:UpgradeHistory', upgradeHistory_startTimestamp - UTC timestamp at which the upgrade API call was made, in the format yyyy-MM-ddTHH:mm:ssZ.

$sel:stepsList:UpgradeHistory', upgradeHistory_stepsList - A list of each step performed as part of a specific upgrade or upgrade eligibility check.

$sel:upgradeName:UpgradeHistory', upgradeHistory_upgradeName - A string that describes the upgrade.

$sel:upgradeStatus:UpgradeHistory', upgradeHistory_upgradeStatus - The current status of the upgrade. The status can take one of the following values:

  • In Progress
  • Succeeded
  • Succeeded with Issues
  • Failed

upgradeHistory_startTimestamp :: Lens' UpgradeHistory (Maybe UTCTime) Source #

UTC timestamp at which the upgrade API call was made, in the format yyyy-MM-ddTHH:mm:ssZ.

upgradeHistory_stepsList :: Lens' UpgradeHistory (Maybe [UpgradeStepItem]) Source #

A list of each step performed as part of a specific upgrade or upgrade eligibility check.

upgradeHistory_upgradeName :: Lens' UpgradeHistory (Maybe Text) Source #

A string that describes the upgrade.

upgradeHistory_upgradeStatus :: Lens' UpgradeHistory (Maybe UpgradeStatus) Source #

The current status of the upgrade. The status can take one of the following values:

  • In Progress
  • Succeeded
  • Succeeded with Issues
  • Failed