import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeServiceActionInput, DescribeServiceActionOutput } from "../models/models_0"; import type { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeServiceActionCommand}. */ export interface DescribeServiceActionCommandInput extends DescribeServiceActionInput { } /** * @public * * The output of {@link DescribeServiceActionCommand}. */ export interface DescribeServiceActionCommandOutput extends DescribeServiceActionOutput, __MetadataBearer { } declare const DescribeServiceActionCommand_base: { new (input: DescribeServiceActionCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DescribeServiceActionCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Describes a self-service action.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ServiceCatalogClient, DescribeServiceActionCommand } from "@aws-sdk/client-service-catalog"; // ES Modules import * // const { ServiceCatalogClient, DescribeServiceActionCommand } = require("@aws-sdk/client-service-catalog"); // CommonJS import * // import type { ServiceCatalogClientConfig } from "@aws-sdk/client-service-catalog"; * const config = {}; // type is ServiceCatalogClientConfig * const client = new ServiceCatalogClient(config); * const input = { // DescribeServiceActionInput * Id: "STRING_VALUE", // required * AcceptLanguage: "STRING_VALUE", * }; * const command = new DescribeServiceActionCommand(input); * const response = await client.send(command); * // { // DescribeServiceActionOutput * // ServiceActionDetail: { // ServiceActionDetail * // ServiceActionSummary: { // ServiceActionSummary * // Id: "STRING_VALUE", * // Name: "STRING_VALUE", * // Description: "STRING_VALUE", * // DefinitionType: "SSM_AUTOMATION", * // }, * // Definition: { // ServiceActionDefinitionMap * // "": "STRING_VALUE", * // }, * // }, * // }; * * ``` * * @param DescribeServiceActionCommandInput - {@link DescribeServiceActionCommandInput} * @returns {@link DescribeServiceActionCommandOutput} * @see {@link DescribeServiceActionCommandInput} for command's `input` shape. * @see {@link DescribeServiceActionCommandOutput} for command's `response` shape. * @see {@link ServiceCatalogClientResolvedConfig | config} for ServiceCatalogClient's `config` shape. * * @throws {@link ResourceNotFoundException} (client fault) *

The specified resource was not found.

* * @throws {@link ServiceCatalogServiceException} *

Base exception class for all service exceptions from ServiceCatalog service.

* * * @public */ export declare class DescribeServiceActionCommand extends DescribeServiceActionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeServiceActionInput; output: DescribeServiceActionOutput; }; sdk: { input: DescribeServiceActionCommandInput; output: DescribeServiceActionCommandOutput; }; }; }