Struct aws_sdk_storagegateway::operation::update_smb_security_strategy::builders::UpdateSMBSecurityStrategyFluentBuilder
source · pub struct UpdateSMBSecurityStrategyFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateSMBSecurityStrategy.
Updates the SMB security strategy on a file gateway. This action is only supported in file gateways.
This API is called Security level in the User Guide.
A higher security level can affect performance of the gateway.
Implementations§
source§impl UpdateSMBSecurityStrategyFluentBuilder
impl UpdateSMBSecurityStrategyFluentBuilder
sourcepub async fn send(
self
) -> Result<UpdateSmbSecurityStrategyOutput, SdkError<UpdateSMBSecurityStrategyError>>
pub async fn send( self ) -> Result<UpdateSmbSecurityStrategyOutput, SdkError<UpdateSMBSecurityStrategyError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateSMBSecurityStrategy, AwsResponseRetryClassifier>, SdkError<UpdateSMBSecurityStrategyError>>
pub async fn customize( self ) -> Result<CustomizableOperation<UpdateSMBSecurityStrategy, AwsResponseRetryClassifier>, SdkError<UpdateSMBSecurityStrategyError>>
Consumes this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub fn gateway_arn(self, input: impl Into<String>) -> Self
pub fn gateway_arn(self, input: impl Into<String>) -> Self
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 set_gateway_arn(self, input: Option<String>) -> Self
pub fn set_gateway_arn(self, input: Option<String>) -> Self
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, input: SmbSecurityStrategy) -> Self
pub fn smb_security_strategy(self, input: SmbSecurityStrategy) -> Self
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.
sourcepub fn set_smb_security_strategy(
self,
input: Option<SmbSecurityStrategy>
) -> Self
pub fn set_smb_security_strategy( self, input: Option<SmbSecurityStrategy> ) -> Self
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.
Trait Implementations§
source§impl Clone for UpdateSMBSecurityStrategyFluentBuilder
impl Clone for UpdateSMBSecurityStrategyFluentBuilder
source§fn clone(&self) -> UpdateSMBSecurityStrategyFluentBuilder
fn clone(&self) -> UpdateSMBSecurityStrategyFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more