import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeSMBFileSharesInput, DescribeSMBFileSharesOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeSMBFileSharesCommand}. */ export interface DescribeSMBFileSharesCommandInput extends DescribeSMBFileSharesInput { } /** * @public * * The output of {@link DescribeSMBFileSharesCommand}. */ export interface DescribeSMBFileSharesCommandOutput extends DescribeSMBFileSharesOutput, __MetadataBearer { } declare const DescribeSMBFileSharesCommand_base: { new (input: DescribeSMBFileSharesCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeSMBFileSharesCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Gets a description for one or more Server Message Block (SMB) file shares from a S3 File * Gateway. This operation is only supported for S3 File Gateways.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { StorageGatewayClient, DescribeSMBFileSharesCommand } from "@aws-sdk/client-storage-gateway"; // ES Modules import * // const { StorageGatewayClient, DescribeSMBFileSharesCommand } = require("@aws-sdk/client-storage-gateway"); // CommonJS import * // import type { StorageGatewayClientConfig } from "@aws-sdk/client-storage-gateway"; * const config = {}; // type is StorageGatewayClientConfig * const client = new StorageGatewayClient(config); * const input = { // DescribeSMBFileSharesInput * FileShareARNList: [ // FileShareARNList // required * "STRING_VALUE", * ], * }; * const command = new DescribeSMBFileSharesCommand(input); * const response = await client.send(command); * // { // DescribeSMBFileSharesOutput * // SMBFileShareInfoList: [ // SMBFileShareInfoList * // { // SMBFileShareInfo * // FileShareARN: "STRING_VALUE", * // FileShareId: "STRING_VALUE", * // FileShareStatus: "STRING_VALUE", * // GatewayARN: "STRING_VALUE", * // EncryptionType: "SseS3" || "SseKms" || "DsseKms", * // KMSEncrypted: true || false, * // KMSKey: "STRING_VALUE", * // Path: "STRING_VALUE", * // Role: "STRING_VALUE", * // LocationARN: "STRING_VALUE", * // DefaultStorageClass: "STRING_VALUE", * // ObjectACL: "private" || "public-read" || "public-read-write" || "authenticated-read" || "bucket-owner-read" || "bucket-owner-full-control" || "aws-exec-read", * // ReadOnly: true || false, * // GuessMIMETypeEnabled: true || false, * // RequesterPays: true || false, * // SMBACLEnabled: true || false, * // AccessBasedEnumeration: true || false, * // AdminUserList: [ // UserList * // "STRING_VALUE", * // ], * // ValidUserList: [ * // "STRING_VALUE", * // ], * // InvalidUserList: [ * // "STRING_VALUE", * // ], * // AuditDestinationARN: "STRING_VALUE", * // Authentication: "STRING_VALUE", * // CaseSensitivity: "ClientSpecified" || "CaseSensitive", * // Tags: [ // Tags * // { // Tag * // Key: "STRING_VALUE", // required * // Value: "STRING_VALUE", // required * // }, * // ], * // FileShareName: "STRING_VALUE", * // CacheAttributes: { // CacheAttributes * // CacheStaleTimeoutInSeconds: Number("int"), * // }, * // NotificationPolicy: "STRING_VALUE", * // VPCEndpointDNSName: "STRING_VALUE", * // BucketRegion: "STRING_VALUE", * // OplocksEnabled: true || false, * // }, * // ], * // }; * * ``` * * @param DescribeSMBFileSharesCommandInput - {@link DescribeSMBFileSharesCommandInput} * @returns {@link DescribeSMBFileSharesCommandOutput} * @see {@link DescribeSMBFileSharesCommandInput} for command's `input` shape. * @see {@link DescribeSMBFileSharesCommandOutput} for command's `response` shape. * @see {@link StorageGatewayClientResolvedConfig | config} for StorageGatewayClient's `config` shape. * * @throws {@link InternalServerError} (server fault) *

An internal server error has occurred during the request. For more information, see the * error and message fields.

* * @throws {@link InvalidGatewayRequestException} (client fault) *

An exception occurred because an invalid gateway request was issued to the service. For * more information, see the error and message fields.

* * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* * * @public */ export declare class DescribeSMBFileSharesCommand extends DescribeSMBFileSharesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeSMBFileSharesInput; output: DescribeSMBFileSharesOutput; }; sdk: { input: DescribeSMBFileSharesCommandInput; output: DescribeSMBFileSharesCommandOutput; }; }; }