Module Values.ConnectionFunctionSummarySource

A connection function summary.

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

    The connection function name.

    *)
  2. id : ResourceId.t option;
    (*

    The connection function ID.

    *)
  3. connectionFunctionConfig : FunctionConfig.t option;
  4. connectionFunctionArn : String_.t option;
    (*

    The connection function Amazon Resource Name (ARN).

    *)
  5. status : String_.t option;
    (*

    The connection function status.

    *)
  6. stage : FunctionStage.t option;
    (*

    The connection function stage.

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

    The connection function created time.

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

    The connection function last modified time.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?connectionFunctionConfig:??? -> ?connectionFunctionArn:??? -> ?status:??? -> ?stage:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FunctionName.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `String of KeyValueStoreARN.t ]) list ] list ]) list ]) list | `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