pub struct GetAccountSettingsCommandOutput {
pub account_id: Option<String>,
pub address: Option<Box<CustomerFullAddress>>,
pub company_name: Option<String>,
pub email: Option<String>,
pub general_settings: Option<Box<AccountGeneralSettings>>,
pub object_version_settings: Option<Box<AccountObjectVersionSettingsOutput>>,
pub phone: Option<String>,
pub secret_management: Option<Box<SmInfo>>,
pub secure_remote_access: Option<Box<SraInfo>>,
pub system_access_creds_settings: Option<Box<SystemAccessCredsSettings>>,
}Fields§
§account_id: Option<String>§address: Option<Box<CustomerFullAddress>>§company_name: Option<String>§email: Option<String>§general_settings: Option<Box<AccountGeneralSettings>>§object_version_settings: Option<Box<AccountObjectVersionSettingsOutput>>§phone: Option<String>§secret_management: Option<Box<SmInfo>>§secure_remote_access: Option<Box<SraInfo>>§system_access_creds_settings: Option<Box<SystemAccessCredsSettings>>Implementations§
Trait Implementations§
Source§impl Clone for GetAccountSettingsCommandOutput
impl Clone for GetAccountSettingsCommandOutput
Source§fn clone(&self) -> GetAccountSettingsCommandOutput
fn clone(&self) -> GetAccountSettingsCommandOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GetAccountSettingsCommandOutput
impl Default for GetAccountSettingsCommandOutput
Source§fn default() -> GetAccountSettingsCommandOutput
fn default() -> GetAccountSettingsCommandOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetAccountSettingsCommandOutput
impl<'de> Deserialize<'de> for GetAccountSettingsCommandOutput
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
Source§impl PartialEq for GetAccountSettingsCommandOutput
impl PartialEq for GetAccountSettingsCommandOutput
Source§fn eq(&self, other: &GetAccountSettingsCommandOutput) -> bool
fn eq(&self, other: &GetAccountSettingsCommandOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetAccountSettingsCommandOutput
Auto Trait Implementations§
impl Freeze for GetAccountSettingsCommandOutput
impl RefUnwindSafe for GetAccountSettingsCommandOutput
impl Send for GetAccountSettingsCommandOutput
impl Sync for GetAccountSettingsCommandOutput
impl Unpin for GetAccountSettingsCommandOutput
impl UnsafeUnpin for GetAccountSettingsCommandOutput
impl UnwindSafe for GetAccountSettingsCommandOutput
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