pub type SdkResult<T, E = SdkError> = Result<T, E>;
enum SdkResult<T, E = SdkError> { Ok(T), Err(E), }
Contains the success value
Contains the error value