import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeS3AccessPointAttachmentsRequest, DescribeS3AccessPointAttachmentsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeS3AccessPointAttachmentsCommand}. */ export interface DescribeS3AccessPointAttachmentsCommandInput extends DescribeS3AccessPointAttachmentsRequest { } /** * @public * * The output of {@link DescribeS3AccessPointAttachmentsCommand}. */ export interface DescribeS3AccessPointAttachmentsCommandOutput extends DescribeS3AccessPointAttachmentsResponse, __MetadataBearer { } declare const DescribeS3AccessPointAttachmentsCommand_base: { new (input: DescribeS3AccessPointAttachmentsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeS3AccessPointAttachmentsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Describes one or more S3 access points attached to Amazon FSx volumes.

*

The requester requires the following permission to perform this action:

* * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { FSxClient, DescribeS3AccessPointAttachmentsCommand } from "@aws-sdk/client-fsx"; // ES Modules import * // const { FSxClient, DescribeS3AccessPointAttachmentsCommand } = require("@aws-sdk/client-fsx"); // CommonJS import * // import type { FSxClientConfig } from "@aws-sdk/client-fsx"; * const config = {}; // type is FSxClientConfig * const client = new FSxClient(config); * const input = { // DescribeS3AccessPointAttachmentsRequest * Names: [ // S3AccessPointAttachmentNames * "STRING_VALUE", * ], * Filters: [ // S3AccessPointAttachmentsFilters * { // S3AccessPointAttachmentsFilter * Name: "file-system-id" || "volume-id" || "type", * Values: [ // S3AccessPointAttachmentsFilterValues * "STRING_VALUE", * ], * }, * ], * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new DescribeS3AccessPointAttachmentsCommand(input); * const response = await client.send(command); * // { // DescribeS3AccessPointAttachmentsResponse * // S3AccessPointAttachments: [ // S3AccessPointAttachments * // { // S3AccessPointAttachment * // Lifecycle: "AVAILABLE" || "CREATING" || "DELETING" || "UPDATING" || "FAILED" || "MISCONFIGURED", * // LifecycleTransitionReason: { // LifecycleTransitionReason * // Message: "STRING_VALUE", * // }, * // CreationTime: new Date("TIMESTAMP"), * // Name: "STRING_VALUE", * // Type: "OPENZFS" || "ONTAP", * // OpenZFSConfiguration: { // S3AccessPointOpenZFSConfiguration * // VolumeId: "STRING_VALUE", * // FileSystemIdentity: { // OpenZFSFileSystemIdentity * // Type: "POSIX", // required * // PosixUser: { // OpenZFSPosixFileSystemUser * // Uid: Number("long"), // required * // Gid: Number("long"), // required * // SecondaryGids: [ // FileSystemSecondaryGIDs * // Number("long"), * // ], * // }, * // }, * // }, * // OntapConfiguration: { // S3AccessPointOntapConfiguration * // VolumeId: "STRING_VALUE", * // FileSystemIdentity: { // OntapFileSystemIdentity * // Type: "UNIX" || "WINDOWS", // required * // UnixUser: { // OntapUnixFileSystemUser * // Name: "STRING_VALUE", // required * // }, * // WindowsUser: { // OntapWindowsFileSystemUser * // Name: "STRING_VALUE", // required * // }, * // }, * // }, * // S3AccessPoint: { // S3AccessPoint * // ResourceARN: "STRING_VALUE", * // Alias: "STRING_VALUE", * // VpcConfiguration: { // S3AccessPointVpcConfiguration * // VpcId: "STRING_VALUE", * // }, * // }, * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeS3AccessPointAttachmentsCommandInput - {@link DescribeS3AccessPointAttachmentsCommandInput} * @returns {@link DescribeS3AccessPointAttachmentsCommandOutput} * @see {@link DescribeS3AccessPointAttachmentsCommandInput} for command's `input` shape. * @see {@link DescribeS3AccessPointAttachmentsCommandOutput} for command's `response` shape. * @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape. * * @throws {@link BadRequest} (client fault) *

A generic error indicating a failure with a client request.

* * @throws {@link InternalServerError} (server fault) *

A generic error indicating a server-side failure.

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

The access point specified was not found.

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

The requested operation is not supported for this resource or API.

* * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* * * @public */ export declare class DescribeS3AccessPointAttachmentsCommand extends DescribeS3AccessPointAttachmentsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeS3AccessPointAttachmentsRequest; output: DescribeS3AccessPointAttachmentsResponse; }; sdk: { input: DescribeS3AccessPointAttachmentsCommandInput; output: DescribeS3AccessPointAttachmentsCommandOutput; }; }; }