Module Values.PipelineDescriptionSource

Contains pipeline metadata.

Sourcetype nonrec t = {
  1. pipelineId : Id.t option;
    (*

    The pipeline identifier that was assigned by AWS Data Pipeline. This is a string of the form df-297EG78HU43EEXAMPLE.

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

    The name of the pipeline.

    *)
  3. fields : FieldList.t option;
    (*

    A list of read-only fields that contain metadata about the pipeline: @userId, @accountId, and @pipelineState.

    *)
  4. description : String_.t option;
    (*

    Description of the pipeline.

    *)
  5. tags : TagList.t option;
    (*

    A list of tags to associated with a pipeline. Tags let you control access to pipelines. For more information, see Controlling User Access to Pipelines in the AWS Data Pipeline Developer Guide.

    *)
}
Sourceval make : ?pipelineId:??? -> ?name:??? -> ?fields:??? -> ?description:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of FieldNameString.t ]) list ] list | `String of Id.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