Module Object.Tagging

type options = {
  1. expected_bucket_owner : Account_id.t option;
}

Object tagging request options.

type result = {
  1. tags : Tag.Set.t;
  2. response : Awskit.Response.t;
}

Object tag set returned by GetObjectTagging.

val default_options : options
val options : ?expected_bucket_owner:Account_id.t -> unit -> (options, Awskit.Error.t) Stdlib.result

Build object tagging request options.

val options_exn : ?expected_bucket_owner:Account_id.t -> unit -> options

Like options, but raises on validation failure.