keys ( bucket -- seq )
Amazon S3

Prev:delete-bucket ( bucket -- )
Next:get-object ( bucket key -- response data )


Vocabulary
s3

Inputs
bucketa string


Outputs
seqa sequence of key objects


Word description
Returns a sequence of key objects. Each object in the sequence has information about the keys contained within the bucket.

Examples
USING: s3 ; "testbucket" keys .
{ }


Definition