delete

abstract fun delete(vararg keys: String)
abstract fun delete(keys: Iterable<String>)

Deletes the target tags from this S3Bucket.

Parameters

keys

Keys of the target tags to delete.

Throws

If any of the given keys violate the rules outlined in the Tag documentation.

If this S3Bucket does not exist.

If an implementation specific exception is thrown. The implementation specific exception will be set to the thrown exception's 'cause' value.


abstract fun delete(action: TargetedBucketTagDeleteParams.() -> Unit)

Deletes the target tags from this S3Bucket.

Parameters

action

Action used to configure this operation.

Throws

If this S3Bucket does not exist.

If an implementation specific exception is thrown. The implementation specific exception will be set to the thrown exception's 'cause' value.


Deletes the target tags from this S3Bucket.

Parameters

params

Parameters used to configure this operation.

Throws

If this S3Bucket does not exist.

If an implementation specific exception is thrown. The implementation specific exception will be set to the thrown exception's 'cause' value.