Struct rusoto_storagegateway::NFSFileShareInfo[][src]

pub struct NFSFileShareInfo {
    pub client_list: Option<Vec<String>>,
    pub default_storage_class: Option<String>,
    pub file_share_arn: Option<String>,
    pub file_share_id: Option<String>,
    pub file_share_status: Option<String>,
    pub gateway_arn: Option<String>,
    pub guess_mime_type_enabled: Option<bool>,
    pub kms_encrypted: Option<bool>,
    pub kms_key: Option<String>,
    pub location_arn: Option<String>,
    pub nfs_file_share_defaults: Option<NFSFileShareDefaults>,
    pub object_acl: Option<String>,
    pub path: Option<String>,
    pub read_only: Option<bool>,
    pub requester_pays: Option<bool>,
    pub role: Option<String>,
    pub squash: Option<String>,
}

The Unix file permissions and ownership information assigned, by default, to native S3 objects when file gateway discovers them in S3 buckets. This operation is only supported in file gateways.

Fields

The default storage class for objects put into an Amazon S3 bucket by 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.

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 KMS key, or false to use a key managed by Amazon S3. Optional.

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.

Trait Implementations

impl Default for NFSFileShareInfo
[src]

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

impl Debug for NFSFileShareInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for NFSFileShareInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for NFSFileShareInfo
[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