Module Values.InputConfigurationSource

Information about the configuration of an input.

Sourcetype nonrec t = {
  1. inputName : InputName.t option;
    (*

    The name of the input.

    *)
  2. inputDescription : InputDescription.t option;
    (*

    A brief description of the input.

    *)
  3. inputArn : InputArn.t option;
    (*

    The ARN of the input.

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

    The time the input was created.

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

    The last time the input was updated.

    *)
  6. status : InputStatus.t option;
    (*

    The status of the input.

    *)
}
Sourceval make : ?inputName:??? -> ?inputDescription:??? -> ?inputArn:??? -> ?creationTime:??? -> ?lastUpdateTime:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of InputName.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