Module Values.StartVerificationResponseSource

Initiates a new verification process for a partner account. This operation begins the verification workflow for either business registration or individual registrant identity verification as required by AWS Partner Central.

Sourcetype nonrec t = {
  1. verificationType : VerificationType.t option;
    (*

    The type of verification that was started based on the provided verification details.

    *)
  2. verificationStatus : VerificationStatus.t option;
    (*

    The initial status of the verification process after it has been started. Typically this will be pending or in-progress.

    *)
  3. verificationStatusReason : VerificationStatusReason.t option;
    (*

    Additional information about the initial verification status, including any immediate feedback about the submitted verification details.

    *)
  4. verificationResponseDetails : VerificationResponseDetails.t option;
    (*

    Initial response details specific to the type of verification started, which may include next steps or additional requirements.

    *)
  5. startedAt : DateTime.t option;
    (*

    The timestamp when the verification process was successfully initiated.

    *)
  6. completedAt : DateTime.t option;
    (*

    The timestamp when the verification process was completed. This field is typically null for newly started verifications unless they complete immediately.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?verificationType:??? -> ?verificationStatus:??? -> ?verificationStatusReason:??? -> ?verificationResponseDetails:??? -> ?startedAt:??? -> ?completedAt:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of VerificationStatusReason.t | `Structure of (string * [> `Structure of (string * [> `String of CompletionUrl.t | `Structure of (string * [> `String of LegalName.t ]) list | `Timestamp of DateTime.t ]) list ]) list | `Timestamp of DateTime.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