Skip to content

Describe Nfs File Shares

storagegateway_describe_nfs_file_shares R Documentation

Gets a description for one or more Network File System (NFS) file shares from an S3 File Gateway

Description

Gets a description for one or more Network File System (NFS) file shares from an S3 File Gateway. This operation is only supported for S3 File Gateways.

Usage

storagegateway_describe_nfs_file_shares(FileShareARNList)

Arguments

FileShareARNList

[required] An array containing the Amazon Resource Name (ARN) of each file share to be described.

Value

A list with the following syntax:

list(
  NFSFileShareInfoList = list(
    list(
      NFSFileShareDefaults = list(
        FileMode = "string",
        DirectoryMode = "string",
        GroupId = 123,
        OwnerId = 123
      ),
      FileShareARN = "string",
      FileShareId = "string",
      FileShareStatus = "string",
      GatewayARN = "string",
      KMSEncrypted = TRUE|FALSE,
      KMSKey = "string",
      Path = "string",
      Role = "string",
      LocationARN = "string",
      DefaultStorageClass = "string",
      ObjectACL = "private"|"public-read"|"public-read-write"|"authenticated-read"|"bucket-owner-read"|"bucket-owner-full-control"|"aws-exec-read",
      ClientList = list(
        "string"
      ),
      Squash = "string",
      ReadOnly = TRUE|FALSE,
      GuessMIMETypeEnabled = TRUE|FALSE,
      RequesterPays = TRUE|FALSE,
      Tags = list(
        list(
          Key = "string",
          Value = "string"
        )
      ),
      FileShareName = "string",
      CacheAttributes = list(
        CacheStaleTimeoutInSeconds = 123
      ),
      NotificationPolicy = "string",
      VPCEndpointDNSName = "string",
      BucketRegion = "string",
      AuditDestinationARN = "string"
    )
  )
)

Request syntax

svc$describe_nfs_file_shares(
  FileShareARNList = list(
    "string"
  )
)