(mut self, token: impl Into<String>)
| 164 | } |
| 165 | |
| 166 | pub fn session_token(mut self, token: impl Into<String>) -> Self { |
| 167 | self.session_token = Some(token.into()); |
| 168 | self |
| 169 | } |
| 170 | |
| 171 | pub fn force_path_style(mut self, enabled: bool) -> Self { |
| 172 | self.force_path_style = enabled; |
no outgoing calls