Module Values_2.SearchEmailAddressesResponseSource

Searches email address in an instance, with optional filtering.

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

    If there are additional results, this is the token for the next set of results.

    *)
  2. emailAddresses : Values_1.EmailAddressList.t option;
    (*

    List of email addresses matching SearchFilter and SearchCriteria

    *)
  3. approximateTotalCount : Values_0.ApproximateTotalCount.t option;
    (*

    The total number of email addresses which matched your search query.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of Values_0.AccessDeniedException.t
  2. | `InternalServiceException of Values_0.InternalServiceException.t
  3. | `InvalidParameterException of Values_0.InvalidParameterException.t
  4. | `InvalidRequestException of Values_0.InvalidRequestException.t
  5. | `ResourceNotFoundException of Values_0.ResourceNotFoundException.t
  6. | `ThrottlingException of Values_0.ThrottlingException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?nextToken:??? -> ?emailAddresses:??? -> ?approximateTotalCount:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of Values_0.AccessDeniedException.t | `InternalServiceException of Values_0.InternalServiceException.t | `InvalidParameterException of Values_0.InvalidParameterException.t | `InvalidRequestException of Values_0.InvalidRequestException.t | `ResourceNotFoundException of Values_0.ResourceNotFoundException.t | `ThrottlingException of Values_0.ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of Values_0.AccessDeniedException.t | `InternalServiceException of Values_0.InternalServiceException.t | `InvalidParameterException of Values_0.InvalidParameterException.t | `InvalidRequestException of Values_0.InvalidRequestException.t | `ResourceNotFoundException of Values_0.ResourceNotFoundException.t | `ThrottlingException of Values_0.ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.EmailAddressId.t ]) list ] list | `Long of Values_0.ApproximateTotalCount.t | `String of Values_1.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