GetObjectPlainArgs

data class GetObjectPlainArgs(val bucket: String, val key: String, val range: String? = null, val tags: Map<String, String>? = null, val versionId: String? = null) : ConvertibleToJava<GetObjectPlainArgs>

A collection of arguments for invoking getObject.

Constructors

Link copied to clipboard
constructor(bucket: String, key: String, range: String? = null, tags: Map<String, String>? = null, versionId: String? = null)

Properties

Link copied to clipboard

Name of the bucket to read the object from. Alternatively, an S3 access point ARN can be specified

Link copied to clipboard
val key: String

Full path to the object inside the bucket

Link copied to clipboard
val range: String? = null
Link copied to clipboard
val tags: Map<String, String>? = null

Map of tags assigned to the object.

Link copied to clipboard
val versionId: String? = null

Specific version ID of the object returned (defaults to latest version)

Functions

Link copied to clipboard
open override fun toJava(): GetObjectPlainArgs