Module Values.IdleRecommendationSource

Describes an Idle resource recommendation.

Sourcetype nonrec t = {
  1. resourceArn : ResourceArn.t option;
    (*

    The ARN of the current idle resource.

    *)
  2. resourceId : ResourceId.t option;
    (*

    The unique identifier for the resource.

    *)
  3. resourceType : IdleRecommendationResourceType.t option;
    (*

    The type of resource that is idle.

    *)
  4. accountId : AccountId.t option;
    (*

    The Amazon Web Services account ID of the idle resource.

    *)
  5. finding : IdleFinding.t option;
    (*

    The finding classification of an idle resource.

    *)
  6. findingDescription : IdleFindingDescription.t option;
    (*

    A summary of the findings for the resource.

    *)
  7. savingsOpportunity : IdleSavingsOpportunity.t option;
    (*

    The savings opportunity for the idle resource.

    *)
  8. savingsOpportunityAfterDiscounts : IdleSavingsOpportunityAfterDiscounts.t option;
    (*

    The savings opportunity for the idle resource after any applying discounts.

    *)
  9. utilizationMetrics : IdleUtilizationMetrics.t option;
    (*

    An array of objects that describe the utilization metrics of the idle resource.

    *)
  10. lookBackPeriodInDays : LookBackPeriodInDays.t option;
    (*

    The number of days the idle resource utilization metrics were analyzed.

    *)
  11. lastRefreshTimestamp : LastRefreshTimestamp.t option;
    (*

    The timestamp of when the idle resource recommendation was last generated.

    *)
  12. tags : Tags.t option;
    (*

    A list of tags assigned to your idle resource recommendations.

    *)
}
Sourceval make : ?resourceArn:??? -> ?resourceId:??? -> ?resourceType:??? -> ?accountId:??? -> ?finding:??? -> ?findingDescription:??? -> ?savingsOpportunity:??? -> ?savingsOpportunityAfterDiscounts:??? -> ?utilizationMetrics:??? -> ?lookBackPeriodInDays:??? -> ?lastRefreshTimestamp:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of LookBackPeriodInDays.t | `Enum of string | `List of [> `Structure of (string * [> `Double of MetricValue.t | `Enum of string | `String of TagKey.t ]) list ] list | `String of ResourceArn.t | `Structure of (string * [> `Double of SavingsOpportunityPercentage.t | `Structure of (string * [> `Double of Value.t | `Enum of string ]) list ]) list | `Timestamp of LastRefreshTimestamp.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