Module Values.RuntimeVersionConfigSource

The ARN of the runtime and any errors that occured.

Sourcetype nonrec t = {
  1. runtimeVersionArn : RuntimeVersionArn.t option;
    (*

    The ARN of the runtime version you want the function to use.

    *)
  2. error : RuntimeVersionError.t option;
    (*

    Error response when Lambda is unable to retrieve the runtime version for a function.

    *)
}
Sourceval make : ?runtimeVersionArn:??? -> ?error:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RuntimeVersionArn.t | `Structure of (string * [> `String of String_.t ]) list ]) 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