Structuresoto-core 7.4.0SotoCore
AWSBase64Data
Holds request or response data that is encoded as base64 during transit
struct AWSBase64Data
Holds request or response data that is encoded as base64 during transit
struct AWSBase64Data
import SotoCore
protocol Decodable
A type that can decode itself from an external representation.
protocol Encodable
A type that can encode itself to an external representation.
protocol Equatable
A type that can be compared for value equality.
protocol Sendable
init(from decoder: Decoder) throws
Codable decode
static func base64(_ base64String: String) -> AWSBase64Data
construct AWSBase64Data
from base64 encoded data
static func data(_ data: some Collection<UInt8>) -> AWSBase64Data
construct AWSBase64Data
from raw data
var base64count: Int { get }
size of base64 data
func decoded() -> [UInt8]?
return blob as Data
func encode(to encoder: Encoder) throws
Codable encode
static func != (lhs: Self, rhs: Self) -> Bool
Returns a Boolean value indicating whether two values are not equal.