Module Values_1.RegistryIdSource

A wrapper structure that may contain the registry name and Amazon Resource Name (ARN).

Sourcetype nonrec t = {
  1. registryName : Values_0.SchemaRegistryNameString.t option;
    (*

    Name of the registry. Used only for lookup. One of RegistryArn or RegistryName has to be provided.

    *)
  2. registryArn : Values_0.GlueResourceArn.t option;
    (*

    Arn of the registry to be updated. One of RegistryArn or RegistryName has to be provided.

    *)
}
Sourceval make : ?registryName:??? -> ?registryArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.SchemaRegistryNameString.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