Values.ResourceSelectionSourceThis 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).
type nonrec t = {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.
*)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.
*)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.
*)}val make :
resources:ResourceArns.t ->
tieringDownSettingsInDays:TieringDownSettingsInDays.t ->
resourceType:ResourceType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of TieringDownSettingsInDays.t
| `List of [> `String of ARN.t ] list
| `String of ResourceType.t ])
list ]