Module Values.ResourceSelectionSource

This contains metadata about resource selection for tiering configurations. You can specify up to 5 different resource selections per tiering configuration. Data moved to lower-cost tier remains there until deletion (one-way transition).

Sourcetype nonrec t = {
  1. resources : ResourceArns.t;
    (*

    An array of strings that either contains ARNs of the associated resources or contains a wildcard * to specify all resources. You can specify up to 100 specific resources per tiering configuration.

    *)
  2. tieringDownSettingsInDays : TieringDownSettingsInDays.t;
    (*

    The number of days after creation within a backup vault that an object can transition to the low cost warm storage tier. Must be a positive integer between 60 and 36500 days.

    *)
  3. resourceType : ResourceType.t;
    (*

    The type of Amazon Web Services resource; for example, S3 for Amazon S3. For tiering configurations, this is currently limited to S3.

    *)
}
Sourceval context_ : string
Sourceval make : resources:ResourceArns.t -> tieringDownSettingsInDays:TieringDownSettingsInDays.t -> resourceType:ResourceType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of TieringDownSettingsInDays.t | `List of [> `String of ARN.t ] list | `String of ResourceType.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