pub struct DescribeLocationSmbResponse {
pub agent_arns: Option<Vec<String>>,
pub creation_time: Option<f64>,
pub domain: Option<String>,
pub location_arn: Option<String>,
pub location_uri: Option<String>,
pub mount_options: Option<SmbMountOptions>,
pub user: Option<String>,
}
Expand description
DescribeLocationSmbResponse
Fields§
§agent_arns: Option<Vec<String>>
The Amazon Resource Name (ARN) of the source SMB file system location that is created.
creation_time: Option<f64>
The time that the SMB location was created.
domain: Option<String>
The name of the Windows domain that the SMB server belongs to.
location_arn: Option<String>
The Amazon resource Name (ARN) of the SMB location that was described.
location_uri: Option<String>
The URL of the source SBM location that was described.
mount_options: Option<SmbMountOptions>
The mount options that are available for DataSync to use to access an SMB location.
user: Option<String>
The user who can mount the share, has the permissions to access files and folders in the SMB share.
Trait Implementations§
Source§impl Clone for DescribeLocationSmbResponse
impl Clone for DescribeLocationSmbResponse
Source§fn clone(&self) -> DescribeLocationSmbResponse
fn clone(&self) -> DescribeLocationSmbResponse
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DescribeLocationSmbResponse
impl Debug for DescribeLocationSmbResponse
Source§impl Default for DescribeLocationSmbResponse
impl Default for DescribeLocationSmbResponse
Source§fn default() -> DescribeLocationSmbResponse
fn default() -> DescribeLocationSmbResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeLocationSmbResponse
impl<'de> Deserialize<'de> for DescribeLocationSmbResponse
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
impl StructuralPartialEq for DescribeLocationSmbResponse
Auto Trait Implementations§
impl Freeze for DescribeLocationSmbResponse
impl RefUnwindSafe for DescribeLocationSmbResponse
impl Send for DescribeLocationSmbResponse
impl Sync for DescribeLocationSmbResponse
impl Unpin for DescribeLocationSmbResponse
impl UnwindSafe for DescribeLocationSmbResponse
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