import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeProfileRequest, DescribeProfileResponse } from "../models/models_0"; import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeProfileCommand}. */ export interface DescribeProfileCommandInput extends DescribeProfileRequest { } /** * @public * * The output of {@link DescribeProfileCommand}. */ export interface DescribeProfileCommandOutput extends DescribeProfileResponse, __MetadataBearer { } declare const DescribeProfileCommand_base: { new (input: DescribeProfileCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DescribeProfileCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Returns the details of the profile that's specified by the ProfileId.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { TransferClient, DescribeProfileCommand } from "@aws-sdk/client-transfer"; // ES Modules import * // const { TransferClient, DescribeProfileCommand } = require("@aws-sdk/client-transfer"); // CommonJS import * // import type { TransferClientConfig } from "@aws-sdk/client-transfer"; * const config = {}; // type is TransferClientConfig * const client = new TransferClient(config); * const input = { // DescribeProfileRequest * ProfileId: "STRING_VALUE", // required * }; * const command = new DescribeProfileCommand(input); * const response = await client.send(command); * // { // DescribeProfileResponse * // Profile: { // DescribedProfile * // Arn: "STRING_VALUE", // required * // ProfileId: "STRING_VALUE", * // ProfileType: "LOCAL" || "PARTNER", * // As2Id: "STRING_VALUE", * // CertificateIds: [ // CertificateIds * // "STRING_VALUE", * // ], * // Tags: [ // Tags * // { // Tag * // Key: "STRING_VALUE", // required * // Value: "STRING_VALUE", // required * // }, * // ], * // }, * // }; * * ``` * * @param DescribeProfileCommandInput - {@link DescribeProfileCommandInput} * @returns {@link DescribeProfileCommandOutput} * @see {@link DescribeProfileCommandInput} for command's `input` shape. * @see {@link DescribeProfileCommandOutput} for command's `response` shape. * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape. * * @throws {@link InternalServiceError} (server fault) *

This exception is thrown when an error occurs in the Transfer Family service.

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

This exception is thrown when the client submits a malformed request.

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

This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family service.

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

The request has failed because the Amazon Web ServicesTransfer Family service is not available.

* * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* * * @public */ export declare class DescribeProfileCommand extends DescribeProfileCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeProfileRequest; output: DescribeProfileResponse; }; sdk: { input: DescribeProfileCommandInput; output: DescribeProfileCommandOutput; }; }; }