Struct aws_sdk_storagegateway::operation::update_smb_security_strategy::UpdateSmbSecurityStrategyInput
source · #[non_exhaustive]pub struct UpdateSmbSecurityStrategyInput { /* private fields */ }Implementations§
source§impl UpdateSmbSecurityStrategyInput
impl UpdateSmbSecurityStrategyInput
sourcepub fn gateway_arn(&self) -> Option<&str>
pub fn gateway_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and Amazon Web Services Region.
sourcepub fn smb_security_strategy(&self) -> Option<&SmbSecurityStrategy>
pub fn smb_security_strategy(&self) -> Option<&SmbSecurityStrategy>
Specifies the type of security strategy.
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. Supported only in S3 File Gateway.
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.
source§impl UpdateSmbSecurityStrategyInput
impl UpdateSmbSecurityStrategyInput
sourcepub fn builder() -> UpdateSmbSecurityStrategyInputBuilder
pub fn builder() -> UpdateSmbSecurityStrategyInputBuilder
Creates a new builder-style object to manufacture UpdateSmbSecurityStrategyInput.
source§impl UpdateSmbSecurityStrategyInput
impl UpdateSmbSecurityStrategyInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateSMBSecurityStrategy, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateSMBSecurityStrategy, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateSMBSecurityStrategy>
Trait Implementations§
source§impl Clone for UpdateSmbSecurityStrategyInput
impl Clone for UpdateSmbSecurityStrategyInput
source§fn clone(&self) -> UpdateSmbSecurityStrategyInput
fn clone(&self) -> UpdateSmbSecurityStrategyInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<UpdateSmbSecurityStrategyInput> for UpdateSmbSecurityStrategyInput
impl PartialEq<UpdateSmbSecurityStrategyInput> for UpdateSmbSecurityStrategyInput
source§fn eq(&self, other: &UpdateSmbSecurityStrategyInput) -> bool
fn eq(&self, other: &UpdateSmbSecurityStrategyInput) -> bool
self and other values to be equal, and is used
by ==.