amazonka-fsx-2.0: Amazon FSx 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.FSx.Types.TieringPolicy

Description

 
Synopsis

Documentation

data TieringPolicy Source #

Describes the data tiering policy for an ONTAP volume. When enabled, Amazon FSx for ONTAP's intelligent tiering automatically transitions a volume's data between the file system's primary storage and capacity pool storage based on your access patterns.

Valid tiering policies are the following:

  • SNAPSHOT_ONLY - (Default value) moves cold snapshots to the capacity pool storage tier.
  • AUTO - moves cold user data and snapshots to the capacity pool storage tier based on your access patterns.
  • ALL - moves all user data blocks in both the active file system and Snapshot copies to the storage pool tier.
  • NONE - keeps a volume's data in the primary storage tier, preventing it from being moved to the capacity pool tier.

See: newTieringPolicy smart constructor.

Constructors

TieringPolicy' 

Fields

  • coolingPeriod :: Maybe Natural

    Specifies the number of days that user data in a volume must remain inactive before it is considered "cold" and moved to the capacity pool. Used with the AUTO and SNAPSHOT_ONLY tiering policies. Enter a whole number between 2 and 183. Default values are 31 days for AUTO and 2 days for SNAPSHOT_ONLY.

  • name :: Maybe TieringPolicyName

    Specifies the tiering policy used to transition data. Default value is SNAPSHOT_ONLY.

    • SNAPSHOT_ONLY - moves cold snapshots to the capacity pool storage tier.
    • AUTO - moves cold user data and snapshots to the capacity pool storage tier based on your access patterns.
    • ALL - moves all user data blocks in both the active file system and Snapshot copies to the storage pool tier.
    • NONE - keeps a volume's data in the primary storage tier, preventing it from being moved to the capacity pool tier.

Instances

Instances details
FromJSON TieringPolicy Source # 
Instance details

Defined in Amazonka.FSx.Types.TieringPolicy

ToJSON TieringPolicy Source # 
Instance details

Defined in Amazonka.FSx.Types.TieringPolicy

Generic TieringPolicy Source # 
Instance details

Defined in Amazonka.FSx.Types.TieringPolicy

Associated Types

type Rep TieringPolicy :: Type -> Type #

Read TieringPolicy Source # 
Instance details

Defined in Amazonka.FSx.Types.TieringPolicy

Show TieringPolicy Source # 
Instance details

Defined in Amazonka.FSx.Types.TieringPolicy

NFData TieringPolicy Source # 
Instance details

Defined in Amazonka.FSx.Types.TieringPolicy

Methods

rnf :: TieringPolicy -> () #

Eq TieringPolicy Source # 
Instance details

Defined in Amazonka.FSx.Types.TieringPolicy

Hashable TieringPolicy Source # 
Instance details

Defined in Amazonka.FSx.Types.TieringPolicy

type Rep TieringPolicy Source # 
Instance details

Defined in Amazonka.FSx.Types.TieringPolicy

type Rep TieringPolicy = D1 ('MetaData "TieringPolicy" "Amazonka.FSx.Types.TieringPolicy" "amazonka-fsx-2.0-6W1DYEEbHPkD4DJvTvpQG4" 'False) (C1 ('MetaCons "TieringPolicy'" 'PrefixI 'True) (S1 ('MetaSel ('Just "coolingPeriod") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TieringPolicyName))))

newTieringPolicy :: TieringPolicy Source #

Create a value of TieringPolicy 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:coolingPeriod:TieringPolicy', tieringPolicy_coolingPeriod - Specifies the number of days that user data in a volume must remain inactive before it is considered "cold" and moved to the capacity pool. Used with the AUTO and SNAPSHOT_ONLY tiering policies. Enter a whole number between 2 and 183. Default values are 31 days for AUTO and 2 days for SNAPSHOT_ONLY.

$sel:name:TieringPolicy', tieringPolicy_name - Specifies the tiering policy used to transition data. Default value is SNAPSHOT_ONLY.

  • SNAPSHOT_ONLY - moves cold snapshots to the capacity pool storage tier.
  • AUTO - moves cold user data and snapshots to the capacity pool storage tier based on your access patterns.
  • ALL - moves all user data blocks in both the active file system and Snapshot copies to the storage pool tier.
  • NONE - keeps a volume's data in the primary storage tier, preventing it from being moved to the capacity pool tier.

tieringPolicy_coolingPeriod :: Lens' TieringPolicy (Maybe Natural) Source #

Specifies the number of days that user data in a volume must remain inactive before it is considered "cold" and moved to the capacity pool. Used with the AUTO and SNAPSHOT_ONLY tiering policies. Enter a whole number between 2 and 183. Default values are 31 days for AUTO and 2 days for SNAPSHOT_ONLY.

tieringPolicy_name :: Lens' TieringPolicy (Maybe TieringPolicyName) Source #

Specifies the tiering policy used to transition data. Default value is SNAPSHOT_ONLY.

  • SNAPSHOT_ONLY - moves cold snapshots to the capacity pool storage tier.
  • AUTO - moves cold user data and snapshots to the capacity pool storage tier based on your access patterns.
  • ALL - moves all user data blocks in both the active file system and Snapshot copies to the storage pool tier.
  • NONE - keeps a volume's data in the primary storage tier, preventing it from being moved to the capacity pool tier.