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

Finds the default parameters for a specific self-service action on a specific provisioned product and returns a map of the results to the user.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ServiceCatalogClient, DescribeServiceActionExecutionParametersCommand } from "@aws-sdk/client-service-catalog"; // ES Modules import * // const { ServiceCatalogClient, DescribeServiceActionExecutionParametersCommand } = 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 = { // DescribeServiceActionExecutionParametersInput * ProvisionedProductId: "STRING_VALUE", // required * ServiceActionId: "STRING_VALUE", // required * AcceptLanguage: "STRING_VALUE", * }; * const command = new DescribeServiceActionExecutionParametersCommand(input); * const response = await client.send(command); * // { // DescribeServiceActionExecutionParametersOutput * // ServiceActionParameters: [ // ExecutionParameters * // { // ExecutionParameter * // Name: "STRING_VALUE", * // Type: "STRING_VALUE", * // DefaultValues: [ // ExecutionParameterValueList * // "STRING_VALUE", * // ], * // }, * // ], * // }; * * ``` * * @param DescribeServiceActionExecutionParametersCommandInput - {@link DescribeServiceActionExecutionParametersCommandInput} * @returns {@link DescribeServiceActionExecutionParametersCommandOutput} * @see {@link DescribeServiceActionExecutionParametersCommandInput} for command's `input` shape. * @see {@link DescribeServiceActionExecutionParametersCommandOutput} for command's `response` shape. * @see {@link ServiceCatalogClientResolvedConfig | config} for ServiceCatalogClient's `config` shape. * * @throws {@link InvalidParametersException} (client fault) *

One or more parameters provided to the operation are not valid.

* * @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 DescribeServiceActionExecutionParametersCommand extends DescribeServiceActionExecutionParametersCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeServiceActionExecutionParametersInput; output: DescribeServiceActionExecutionParametersOutput; }; sdk: { input: DescribeServiceActionExecutionParametersCommandInput; output: DescribeServiceActionExecutionParametersCommandOutput; }; }; }