Skip to content

Commit

Permalink
Make PresignedPostResponse fields public (#713)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksloan authored Apr 6, 2024
1 parent 3518371 commit d8423bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Soto/Extensions/S3/S3+presignedPost.swift
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ extension S3 {
/// An encodable struct that represents the URL and form fields to use in a
/// presigned POST request to S3
public struct PresignedPostResponse: Encodable {
let url: URL
let fields: [String: String]
public let url: URL
public let fields: [String: String]
}

/// Builds the url and the form fields used for a presigned s3 post
Expand Down

0 comments on commit d8423bc

Please sign in to comment.