Module Values.TieringConfigurationInputForCreateSource

This contains metadata about a tiering configuration for create operations.

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

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

    *)
  2. backupVaultName : BackupVaultNameOrWildcard.t;
    (*

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

    *)
  3. resourceSelection : ResourceSelections.t;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : tieringConfigurationName:TieringConfigurationName.t -> backupVaultName:BackupVaultNameOrWildcard.t -> resourceSelection:ResourceSelections.t -> 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 ]) 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