Module Values.GetLicenseRecommendationsRequestSource

Returns license recommendations for Amazon EC2 instances that run on a specific license. Compute Optimizer generates recommendations for licenses 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. resourceArns : ResourceArns.t option;
    (*

    The ARN that identifies the Amazon EC2 instance. The following is the format of the ARN: arn:aws:ec2:region:aws_account_id:instance/instance-id

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

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

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

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

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

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

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

    The ID of the Amazon Web Services account for which to return license 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 license recommendations. Only one account ID can be specified per request.

    *)
}
Sourceval make : ?resourceArns:??? -> ?nextToken:??? -> ?maxResults:??? -> ?filters:??? -> ?accountIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `String of ResourceArn.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