removeTagsFromVault
inline suspend fun GlacierClient.removeTagsFromVault(crossinline block: RemoveTagsFromVaultRequest.Builder.() -> Unit): RemoveTagsFromVaultResponse
This operation removes one or more tags from the set of tags attached to a vault. For more information about tags, see Tagging Amazon S3 Glacier Resources. This operation is idempotent. The operation will be successful, even if there are no tags attached to the vault.
Samples
fun main() {
//sampleStart
// The example removes two tags from the vault named examplevault.
glacierClient.removeTagsFromVault {
accountId = "-"
vaultName = "examplevault"
tagKeys = listOf<String>(
"examplekey1",
"examplekey2"
)
}
//sampleEnd
}