Awskit_s3.TagS3 tag key/value pair.
val create : key:string -> value:string -> (t, Awskit.Error.t) Stdlib.resultValidate and create one S3 tag. Keys use up to 128 UTF-16 positions and values use up to 256 UTF-16 positions. Values may be empty. Keys and values allow letters, numbers, spaces, and + - = . _ : / @. Tag keys beginning with aws: are reserved for AWS and rejected.
val create_exn : key:string -> value:string -> tLike create, but raises Awskit.Error.Awskit_error carrying the structured validation error on validation failure.
val key : t -> stringReturn the tag key.
val value : t -> stringReturn the tag value.
val pp : Stdlib.Format.formatter -> t -> unitPretty-print the tag.
module Set : sig ... end