Struct rusoto_storagegateway::CreateNFSFileShareInput [] [src]

pub struct CreateNFSFileShareInput {
    pub client_list: Option<Vec<String>>,
    pub client_token: String,
    pub default_storage_class: Option<String>,
    pub gateway_arn: String,
    pub guess_mime_type_enabled: Option<bool>,
    pub kms_encrypted: Option<bool>,
    pub kms_key: Option<String>,
    pub location_arn: String,
    pub nfs_file_share_defaults: Option<NFSFileShareDefaults>,
    pub read_only: Option<bool>,
    pub role: String,
    pub squash: Option<String>,
}

CreateNFSFileShareInput

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.

A unique string value that you supply that is used by file gateway to ensure idempotent file share creation.

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.

The Amazon Resource Name (ARN) of the file gateway on which you want to create a file share.

Enables guessing of the MIME type for uploaded objects based on file extensions: "true" to enable MIME type guessing, and otherwise "false".

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 ARN of the backed storage used for storing file data.

File share default values. Optional.

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

The ARN of the AWS Identity and Access Management (IAM) role that a file gateway assumes when it accesses the underlying storage.

Maps a user 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 CreateNFSFileShareInput
[src]

[src]

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

impl Debug for CreateNFSFileShareInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateNFSFileShareInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations