/** *

Describes a file share.

*/ export interface _FileShareInfo { /** *

The type of the file share.

*/ FileShareType?: "NFS" | "SMB" | string; /** *

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

*/ FileShareARN?: string; /** *

The ID of the file share.

*/ FileShareId?: string; /** *

The status of the file share. Possible values are CREATING, UPDATING, AVAILABLE and DELETING.

*/ FileShareStatus?: string; /** *

The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region.

*/ GatewayARN?: string; } export declare type _UnmarshalledFileShareInfo = _FileShareInfo;