Module Values.FlowDefinitionSource

The properties of the flow, such as its source, destination, trigger type, and so on.

Sourcetype nonrec t = {
  1. flowArn : FlowArn.t option;
    (*

    The flow's Amazon Resource Name (ARN).

    *)
  2. description : FlowDescription.t option;
    (*

    A user-entered description of the flow.

    *)
  3. flowName : FlowName.t option;
    (*

    The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.

    *)
  4. flowStatus : FlowStatus.t option;
    (*

    Indicates the current status of the flow.

    *)
  5. sourceConnectorType : ConnectorType.t option;
    (*

    Specifies the source connector type, such as Salesforce, Amazon S3, Amplitude, and so on.

    *)
  6. sourceConnectorLabel : ConnectorLabel.t option;
    (*

    The label of the source connector in the flow.

    *)
  7. destinationConnectorType : ConnectorType.t option;
    (*

    Specifies the destination connector type, such as Salesforce, Amazon S3, Amplitude, and so on.

    *)
  8. destinationConnectorLabel : ConnectorLabel.t option;
    (*

    The label of the destination connector in the flow.

    *)
  9. triggerType : TriggerType.t option;
    (*

    Specifies the type of flow trigger. This can be OnDemand, Scheduled, or Event.

    *)
  10. createdAt : Date.t option;
    (*

    Specifies when the flow was created.

    *)
  11. lastUpdatedAt : Date.t option;
    (*

    Specifies when the flow was last updated.

    *)
  12. createdBy : CreatedBy.t option;
    (*

    The ARN of the user who created the flow.

    *)
  13. lastUpdatedBy : UpdatedBy.t option;
    (*

    Specifies the account user name that most recently updated the flow.

    *)
  14. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for your flow.

    *)
  15. lastRunExecutionDetails : ExecutionDetails.t option;
    (*

    Describes the details of the most recent flow run.

    *)
}
Sourceval make : ?flowArn:??? -> ?description:??? -> ?flowName:??? -> ?flowStatus:??? -> ?sourceConnectorType:??? -> ?sourceConnectorLabel:??? -> ?destinationConnectorType:??? -> ?destinationConnectorLabel:??? -> ?triggerType:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?createdBy:??? -> ?lastUpdatedBy:??? -> ?tags:??? -> ?lastRunExecutionDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of FlowArn.t | `Structure of (string * [> `Enum of string | `String of MostRecentExecutionMessage.t | `Timestamp of Date.t ]) list | `Timestamp of Date.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