[][src]Struct rusoto_storagegateway::DescribeSMBSettingsOutput

pub struct DescribeSMBSettingsOutput {
    pub active_directory_status: Option<String>,
    pub domain_name: Option<String>,
    pub gateway_arn: Option<String>,
    pub smb_guest_password_set: Option<bool>,
    pub smb_security_strategy: Option<String>,
}

Fields

active_directory_status: Option<String>

Indicates the status of a gateway that is a member of the Active Directory domain.

  • ACCESSDENIED: Indicates that the JoinDomain operation failed due to an authentication error.

  • DETACHED: Indicates that gateway is not joined to a domain.

  • JOINED: Indicates that the gateway has successfully joined a domain.

  • JOINING: Indicates that a JoinDomain operation is in progress.

  • NETWORKERROR: Indicates that JoinDomain operation failed due to a network or connectivity error.

  • TIMEOUT: Indicates that the JoinDomain operation failed because the operation didn't complete within the allotted time.

  • UNKNOWN_ERROR: Indicates that the JoinDomain operation failed due to another type of error.

domain_name: Option<String>

The name of the domain that the gateway is joined to.

gateway_arn: Option<String>smb_guest_password_set: Option<bool>

This value is true if a password for the guest user smbguest is set, otherwise false.

Valid Values: true | false

smb_security_strategy: Option<String>

The type of security strategy that was specified for file gateway.

  • ClientSpecified: If you use this option, requests are established based on what is negotiated by the client. This option is recommended when you want to maximize compatibility across different clients in your environment.

  • MandatorySigning: If you use this option, file gateway only allows connections from SMBv2 or SMBv3 clients that have signing enabled. This option works with SMB clients on Microsoft Windows Vista, Windows Server 2008 or newer.

  • MandatoryEncryption: If you use this option, file gateway only allows connections from SMBv3 clients that have encryption enabled. This option is highly recommended for environments that handle sensitive data. This option works with SMB clients on Microsoft Windows 8, Windows Server 2012 or newer.

Trait Implementations

impl Clone for DescribeSMBSettingsOutput[src]

impl Debug for DescribeSMBSettingsOutput[src]

impl Default for DescribeSMBSettingsOutput[src]

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

impl PartialEq<DescribeSMBSettingsOutput> for DescribeSMBSettingsOutput[src]

impl StructuralPartialEq for DescribeSMBSettingsOutput[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> 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.