Module Values.RegistryOutputSource

Sourcetype nonrec t = {
  1. description : string option;
    (*

    The description of the registry.

    *)
  2. registryArn : string option;
    (*

    The ARN of the registry.

    *)
  3. registryName : string option;
    (*

    The name of the registry.

    *)
  4. tags : Tags.t option;
    (*

    Tags associated with the registry.

    *)
}
Sourceval make : ?description:??? -> ?registryArn:??? -> ?registryName:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) list | `String of string ]) 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