Module Values.DependencySource

A structure that contains information about a dependency for a canary.

Sourcetype nonrec t = {
  1. type_ : DependencyType.t option;
    (*

    The type of dependency. Valid value is LambdaLayer.

    *)
  2. reference : String_.t;
    (*

    The dependency reference. For Lambda layers, this is the ARN of the Lambda layer. For more information about Lambda ARN format, see Lambda.

    *)
}
Sourceval context_ : string
Sourceval make : ?type_:??? -> reference:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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