Tag

data class Tag(val key: String, val value: String)

Represents a single tag attached to a target object or bucket in an S3 store.

Author

Elizabeth Paige Harper https://github.com/Foxcapades

Since

v0.1.0

Parameters

key

Tag key. Must be less than or equal to 128 characters in length.

value

Tag value. Must be less than or equal to 256 characters in length.

Throws

If the key is greater than 128 characters in length, or the value is greater than 256 characters in length.

Constructors

Link copied to clipboard
fun Tag(key: String, value: String)

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val key: String
Link copied to clipboard