Module Values.GetEBSVolumeRecommendationsRequestSource

Returns Amazon Elastic Block Store (Amazon EBS) volume recommendations. Compute Optimizer generates recommendations for Amazon EBS volumes that meet a specific set of requirements. For more information, see the Supported resources and requirements in the Compute Optimizer User Guide.

Sourcetype nonrec t = {
  1. volumeArns : VolumeArns.t option;
    (*

    The Amazon Resource Name (ARN) of the volumes for which to return recommendations.

    *)
  2. nextToken : NextToken.t option;
    (*

    The token to advance to the next page of volume recommendations.

    *)
  3. maxResults : MaxResults.t option;
    (*

    The maximum number of volume recommendations to return with a single request. To retrieve the remaining results, make another request with the returned nextToken value.

    *)
  4. filters : EBSFilters.t option;
    (*

    An array of objects to specify a filter that returns a more specific list of volume recommendations.

    *)
  5. accountIds : AccountIds.t option;
    (*

    The ID of the Amazon Web Services account for which to return volume recommendations. If your account is the management account of an organization, use this parameter to specify the member account for which you want to return volume recommendations. Only one account ID can be specified per request.

    *)
}
Sourceval make : ?volumeArns:??? -> ?nextToken:??? -> ?maxResults:??? -> ?filters:??? -> ?accountIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `String of VolumeArn.t | `Structure of (string * [> `Enum of string | `List of [> `String of FilterValue.t ] list ]) list ] list | `String of NextToken.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