Aws::S3::Presigned::FieldCollection
Inherits Enumerable / Reference / Object
Holds a collection of PostFields.
fields = FieldCollection.new
fields.to_a # => [] of PostField
field["test"] = "test"
field.push(PostField.new("Hi", "Hi"))
Constructors
new
SourceInstance methods
[](key)
Access a key, by name, from the field collection. Returns the key if found, otherwise returns nil.