Module Values.DescribeProjectsRequestSource

Gets information about your Rekognition projects. This operation requires permissions to perform the rekognition:DescribeProjects action.

Sourcetype nonrec t = {
  1. nextToken : ExtendedPaginationToken.t option;
    (*

    If the previous response was incomplete (because there is more results to retrieve), Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.

    *)
  2. maxResults : ProjectsPageSize.t option;
    (*

    The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.

    *)
  3. projectNames : ProjectNames.t option;
    (*

    A list of the projects that you want Rekognition to describe. If you don't specify a value, the response includes descriptions for all the projects in your AWS account.

    *)
  4. features : CustomizationFeatures.t option;
    (*

    Specifies the type of customization to filter projects by. If no value is specified, CUSTOM_LABELS is used as a default.

    *)
}
Sourceval make : ?nextToken:??? -> ?maxResults:??? -> ?projectNames:??? -> ?features:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ProjectsPageSize.t | `List of [> `Enum of string | `String of ProjectName.t ] list | `String of ExtendedPaginationToken.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