Module Values.PipeSource

An object that represents a pipe. Amazon EventBridgePipes connect event sources to targets and reduces the need for specialized knowledge and integration code.

Sourcetype nonrec t = {
  1. name : PipeName.t option;
    (*

    The name of the pipe.

    *)
  2. arn : PipeArn.t option;
    (*

    The ARN 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. stateReason : PipeStateReason.t option;
    (*

    The reason the pipe is in its current state.

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

    The time the pipe was created.

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

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

    *)
  8. source : ArnOrUrl.t option;
    (*

    The ARN of the source resource.

    *)
  9. target : Arn.t option;
    (*

    The ARN of the target resource.

    *)
  10. enrichment : OptionalArn.t option;
    (*

    The ARN of the enrichment resource.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?desiredState:??? -> ?currentState:??? -> ?stateReason:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?source:??? -> ?target:??? -> ?enrichment:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PipeName.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