listAll

abstract fun listAll(): ObjectList

Fetches a list of all the objects in this container.

Return

An ObjectList instance containing 0 or more entries for each key/path found in this container.

Throws

If this bucket or the bucket in which this object container resides no longer exists.

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


abstract fun listAll(action: ObjectListAllParams.() -> Unit): ObjectList

Fetches a list of all the objects in this container.

Return

An ObjectList instance containing 0 or more entries for each key/path found in this container.

Parameters

action

Action used to configure the backing S3 operation.

Throws

If this bucket or the bucket in which this object container resides no longer exists.

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


abstract fun listAll(params: ObjectListAllParams): ObjectList

Fetches a list of all the objects in this container.

Return

An ObjectList instance containing 0 or more entries for each key/path found in this container.

Parameters

params

Parameters for the backing S3 operation.

Throws

If this bucket or the bucket in which this object container resides no longer exists.

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