[][src]Struct rusoto_datasync::DescribeLocationSmbResponse

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>,
}

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

impl Clone for DescribeLocationSmbResponse[src]

impl Debug for DescribeLocationSmbResponse[src]

impl Default for DescribeLocationSmbResponse[src]

impl<'de> Deserialize<'de> for DescribeLocationSmbResponse[src]

impl PartialEq<DescribeLocationSmbResponse> for DescribeLocationSmbResponse[src]

impl StructuralPartialEq for DescribeLocationSmbResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.