DescribeNFSFileShares
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.
Request Syntax
{
"FileShareARNList": [ "string
" ]
}
Request Parameters
For information about the parameters that are common to all actions, see Common Parameters.
The request accepts the following data in JSON format.
-
An array containing the Amazon Resource Name (ARN) of each file share to be described.
Type: Array of strings
Array Members: Minimum number of 1 item. Maximum number of 10 items.
Length Constraints: Minimum length of 50. Maximum length of 500.
Required: Yes
Response Syntax
{
"NFSFileShareInfoList": [
{
"AuditDestinationARN": "string",
"BucketRegion": "string",
"CacheAttributes": {
"CacheStaleTimeoutInSeconds": number
},
"ClientList": [ "string" ],
"DefaultStorageClass": "string",
"EncryptionType": "string",
"FileShareARN": "string",
"FileShareId": "string",
"FileShareName": "string",
"FileShareStatus": "string",
"GatewayARN": "string",
"GuessMIMETypeEnabled": boolean,
"KMSEncrypted": boolean,
"KMSKey": "string",
"LocationARN": "string",
"NFSFileShareDefaults": {
"DirectoryMode": "string",
"FileMode": "string",
"GroupId": number,
"OwnerId": number
},
"NotificationPolicy": "string",
"ObjectACL": "string",
"Path": "string",
"ReadOnly": boolean,
"RequesterPays": boolean,
"Role": "string",
"Squash": "string",
"Tags": [
{
"Key": "string",
"Value": "string"
}
],
"VPCEndpointDNSName": "string"
}
]
}
Response Elements
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
-
An array containing a description for each requested file share.
Type: Array of NFSFileShareInfo objects
Errors
For information about the errors that are common to all actions, see Common Errors.
- InternalServerError
-
An internal server error has occurred during the request. For more information, see the error and message fields.
HTTP Status Code: 400
- InvalidGatewayRequestException
-
An exception occurred because an invalid gateway request was issued to the service. For more information, see the error and message fields.
HTTP Status Code: 400
Examples
Describe an NFS file share
In the following request, you get the description for a single file share identified by its Amazon Resource Name (ARN).
Sample Request
{
"FileShareARNList": [
"arn:aws:storagegateway:us-east-2:204469490176:share/share-XXXXXX"
]
}
Sample Response
{
"NFSFileShareInfoList": [
{
"DefaultStorageClass": "S3_INTELLIGENT_TIERING",
"FileShareARN": "arn:aws:storagegateway:us-east-2:111122223333:share/share-XXXXXXXX",
"FileShareId": "share-XXXXXXXX",
"FileShareStatus": "AVAILABLE",
"GatewayARN": "arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-YYYYYYYY",
"GuessMIMETypeEnabled": "true",
"KMSEncrypted": "true",
"KMSKey": "arn:aws:kms:us-east-1:11111111:key/b72aaa2a-2222-99tt-12345690qwe",
"LocationARN": "arn:aws:s3:::amzn-s3-demo-bucket",
"NFSFileShareDefaults": {
"DirectoryMode": "0777",
"FileMode": "0777",
"GroupId": "500",
"OwnerId": "500"
},
"ObjectACL": "bucket-owner-full-control",
"ReadOnly": "false",
"Path": "/my-path-alpha",
"RequesterPays": "false",
"Role": "arn:aws:iam::111122223333:role/my-role"
}
]
}
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: