MCPcopy
hub / github.com/minio/minio-go / Header

Method Header

api-select.go:366–372  ·  api-select.go::SelectObjectOptions.Header

Header returns the http.Header representation of the SelectObject options.

()

Source from the content-addressed store, hash-verified

364
365// Header returns the http.Header representation of the SelectObject options.
366func (o SelectObjectOptions) Header() http.Header {
367 headers := make(http.Header)
368 if o.ServerSideEncryption != nil && o.ServerSideEncryption.Type() == encrypt.SSEC {
369 o.ServerSideEncryption.Marshal(headers)
370 }
371 return headers
372}
373
374// SelectObjectType - is the parameter which defines what type of object the
375// operation is being performed on.

Calls 2

TypeMethod · 0.65
MarshalMethod · 0.65