Module Values.DescribeConnectorOperationResponseSource

Returns information about the specified connector's operations.

Sourcetype nonrec t = {
  1. connectorArn : string option;
    (*

    The Amazon Resource Name (ARN) of the connector.

    *)
  2. connectorOperationArn : string option;
    (*

    The Amazon Resource Name (ARN) of the connector operation.

    *)
  3. connectorOperationState : ConnectorOperationState.t option;
    (*

    The state of the connector operation.

    *)
  4. connectorOperationType : ConnectorOperationType.t option;
    (*

    The type of connector operation performed.

    *)
  5. operationSteps : ConnectorOperationStep.t list option;
    (*

    The array of operation steps taken.

    *)
  6. originWorkerSetting : WorkerSetting.t option;
    (*

    The origin worker setting.

    *)
  7. originConnectorConfiguration : ConnectorConfiguration.t option;
    (*

    The origin connector configuration.

    *)
  8. targetWorkerSetting : WorkerSetting.t option;
    (*

    The target worker setting.

    *)
  9. targetConnectorConfiguration : ConnectorConfiguration.t option;
    (*

    The target connector configuration.

    *)
  10. errorInfo : StateDescription.t option;
  11. creationTime : string option;
    (*

    The time when the operation was created.

    *)
  12. endTime : string option;
    (*

    The time when the operation ended.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ForbiddenException of ForbiddenException.t
  3. | `InternalServerErrorException of InternalServerErrorException.t
  4. | `NotFoundException of NotFoundException.t
  5. | `ServiceUnavailableException of ServiceUnavailableException.t
  6. | `TooManyRequestsException of TooManyRequestsException.t
  7. | `UnauthorizedException of UnauthorizedException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?connectorArn:??? -> ?connectorOperationArn:??? -> ?connectorOperationState:??? -> ?connectorOperationType:??? -> ?operationSteps:??? -> ?originWorkerSetting:??? -> ?originConnectorConfiguration:??? -> ?targetWorkerSetting:??? -> ?targetConnectorConfiguration:??? -> ?errorInfo:??? -> ?creationTime:??? -> ?endTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `TooManyRequestsException of TooManyRequestsException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `TooManyRequestsException of TooManyRequestsException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string ]) list ] list | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Structure of (string * [> `String of string | `Structure of (string * [> `Structure of (string * [> `Integer of int | `Structure of (string * [> `Integer of int ]) list ]) list ]) list ]) list | `Timestamp of string ]) 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