Module Values.StartPipeResponseSource

Start an existing pipe.

Sourcetype nonrec t = {
  1. arn : PipeArn.t option;
    (*

    The ARN of the pipe.

    *)
  2. name : PipeName.t option;
    (*

    The name of the pipe.

    *)
  3. desiredState : RequestedPipeState.t option;
    (*

    The state the pipe should be in.

    *)
  4. currentState : PipeState.t option;
    (*

    The state the pipe is in.

    *)
  5. creationTime : Timestamp.t option;
    (*

    The time the pipe was created.

    *)
  6. lastModifiedTime : Timestamp.t option;
    (*

    When the pipe was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

    *)
}
Sourcetype nonrec error = [
  1. | `ConflictException of ConflictException.t
  2. | `InternalException of InternalException.t
  3. | `NotFoundException of NotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?name:??? -> ?desiredState:??? -> ?currentState:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConflictException of ConflictException.t | `InternalException of InternalException.t | `NotFoundException of NotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConflictException of ConflictException.t | `InternalException of InternalException.t | `NotFoundException of NotFoundException.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 PipeArn.t | `Timestamp of Timestamp.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