(mut self, region: impl Into<String>)
| 159 | } |
| 160 | |
| 161 | pub fn region(mut self, region: impl Into<String>) -> Self { |
| 162 | self.region = Some(region.into()); |
| 163 | self |
| 164 | } |
| 165 | |
| 166 | pub fn session_token(mut self, token: impl Into<String>) -> Self { |
| 167 | self.session_token = Some(token.into()); |
no outgoing calls