Module Values_2.UpdateViewMetadataRequestSource

Updates the view metadata. Note that either Name or Description must be provided.

Sourcetype nonrec t = {
  1. instanceId : Values_1.ViewsInstanceId.t;
    (*

    The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.

    *)
  2. viewId : Values_1.ViewId.t;
    (*

    The identifier of the view. Both ViewArn and ViewId can be used.

    *)
  3. name : Values_1.ViewName.t option;
    (*

    The name of the view.

    *)
  4. description : Values_1.ViewDescription.t option;
    (*

    The description of the view.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> instanceId:Values_1.ViewsInstanceId.t -> viewId:Values_1.ViewId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_1.ViewsInstanceId.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