Module Values.TieringConfigurationSource

This contains metadata about a tiering configuration.

Sourcetype nonrec t = {
  1. tieringConfigurationName : TieringConfigurationName.t option;
    (*

    The unique name of the tiering configuration. This cannot be changed after creation, and it must consist of only alphanumeric characters and underscores.

    *)
  2. tieringConfigurationArn : ARN.t option;
    (*

    An Amazon Resource Name (ARN) that uniquely identifies the tiering configuration.

    *)
  3. backupVaultName : BackupVaultNameOrWildcard.t option;
    (*

    The name of the backup vault where the tiering configuration applies. Use * to apply to all backup vaults.

    *)
  4. resourceSelection : ResourceSelections.t option;
    (*

    An array of resource selection objects that specify which resources are included in the tiering configuration and their tiering settings.

    *)
  5. creatorRequestId : CreatorRequestId.t option;
    (*

    This is a unique string that identifies the request and allows failed requests to be retried without the risk of running the operation twice.

    *)
  6. creationTime : string option;
    (*

    The date and time a tiering configuration was created, in Unix format and Coordinated Universal Time (UTC). The value of CreationTime is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087AM.

    *)
  7. lastUpdatedTime : string option;
    (*

    The date and time a tiering configuration was updated, in Unix format and Coordinated Universal Time (UTC). The value of LastUpdatedTime is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087AM.

    *)
}
Sourceval make : ?tieringConfigurationName:??? -> ?tieringConfigurationArn:??? -> ?backupVaultName:??? -> ?resourceSelection:??? -> ?creatorRequestId:??? -> ?creationTime:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of TieringDownSettingsInDays.t | `List of [> `String of ARN.t ] list | `String of ResourceType.t ]) list ] list | `String of TieringConfigurationName.t | `Timestamp of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t