pub struct ReadClientConfigurationResponse {
pub access_key: Option<String>,
pub endpoint: Option<String>,
pub iam_endpoint: Option<String>,
pub sts_endpoint: Option<String>,
pub sts_region: Option<String>,
pub iam_server_id_header_value: Option<String>,
pub allowed_sts_header_values: Option<String>,
pub max_retries: Option<i64>,
}
Expand description
Response from executing ReadClientConfigurationRequest
Fields§
§access_key: Option<String>
§endpoint: Option<String>
§iam_endpoint: Option<String>
§sts_endpoint: Option<String>
§sts_region: Option<String>
§iam_server_id_header_value: Option<String>
§allowed_sts_header_values: Option<String>
§max_retries: Option<i64>
Trait Implementations§
source§impl<'de> Deserialize<'de> for ReadClientConfigurationResponse
impl<'de> Deserialize<'de> for ReadClientConfigurationResponse
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ReadClientConfigurationResponse
impl RefUnwindSafe for ReadClientConfigurationResponse
impl Send for ReadClientConfigurationResponse
impl Sync for ReadClientConfigurationResponse
impl Unpin for ReadClientConfigurationResponse
impl UnwindSafe for ReadClientConfigurationResponse
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more