Struct rusoto_storagegateway::UpdateNFSFileShareInput[][src]

pub struct UpdateNFSFileShareInput {
    pub client_list: Option<Vec<String>>,
    pub default_storage_class: Option<String>,
    pub file_share_arn: String,
    pub guess_mime_type_enabled: Option<bool>,
    pub kms_encrypted: Option<bool>,
    pub kms_key: Option<String>,
    pub nfs_file_share_defaults: Option<NFSFileShareDefaults>,
    pub object_acl: Option<String>,
    pub read_only: Option<bool>,
    pub requester_pays: Option<bool>,
    pub squash: Option<String>,
}

UpdateNFSFileShareInput

Fields

The list of clients that are allowed to access the file gateway. The list must contain either valid IP addresses or valid CIDR blocks.

The default storage class for objects put into an Amazon S3 bucket by a file gateway. Possible values are S3_STANDARD or S3_STANDARD_IA. If this field is not populated, the default value S3_STANDARD is used. Optional.

The Amazon Resource Name (ARN) of the file share to be updated.

Enables guessing of the MIME type for uploaded objects based on file extensions. Set this value to true to enable MIME type guessing, and otherwise to false. The default value is true.

True to use Amazon S3 server side encryption with your own AWS KMS key, or false to use a key managed by Amazon S3. Optional.

The KMS key used for Amazon S3 server side encryption. This value can only be set when KmsEncrypted is true. Optional.

The default values for the file share. Optional.

Sets the access control list permission for objects in the S3 bucket that a file gateway puts objects into. The default value is "private".

Sets the write status of a file share. This value is true if the write status is read-only, and otherwise false.

Sets who pays the cost of the request and the data download from the Amazon S3 bucket. Set this value to true if you want the requester to pay instead of the bucket owner, and otherwise to false.

The user mapped to anonymous user. Valid options are the following:

  • "RootSquash" - Only root is mapped to anonymous user.

  • "NoSquash" - No one is mapped to anonymous user

  • "AllSquash" - Everyone is mapped to anonymous user.

Trait Implementations

impl Default for UpdateNFSFileShareInput
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateNFSFileShareInput
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateNFSFileShareInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateNFSFileShareInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations