import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; import type { GetDashboardUrlRequest, GetDashboardUrlResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetDashboardUrlCommand}. */ export interface GetDashboardUrlCommandInput extends GetDashboardUrlRequest { } /** * @public * * The output of {@link GetDashboardUrlCommand}. */ export interface GetDashboardUrlCommandOutput extends GetDashboardUrlResponse, __MetadataBearer { } declare const GetDashboardUrlCommand_base: { new (input: GetDashboardUrlCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetDashboardUrlCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Retrieves the URL for the Spark monitoring dashboard for a Glue resource.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, GetDashboardUrlCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, GetDashboardUrlCommand } = require("@aws-sdk/client-glue"); // CommonJS import * // import type { GlueClientConfig } from "@aws-sdk/client-glue"; * const config = {}; // type is GlueClientConfig * const client = new GlueClient(config); * const input = { // GetDashboardUrlRequest * ResourceId: "STRING_VALUE", // required * ResourceType: "JOB" || "SESSION", // required * RequestOrigin: "STRING_VALUE", * }; * const command = new GetDashboardUrlCommand(input); * const response = await client.send(command); * // { // GetDashboardUrlResponse * // Url: "STRING_VALUE", // required * // }; * * ``` * * @param GetDashboardUrlCommandInput - {@link GetDashboardUrlCommandInput} * @returns {@link GetDashboardUrlCommandOutput} * @see {@link GetDashboardUrlCommandInput} for command's `input` shape. * @see {@link GetDashboardUrlCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Access to a resource was denied.

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

A specified entity does not exist

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

An internal service error occurred.

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

The input provided was not valid.

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

The operation is not available in the region.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class GetDashboardUrlCommand extends GetDashboardUrlCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetDashboardUrlRequest; output: GetDashboardUrlResponse; }; sdk: { input: GetDashboardUrlCommandInput; output: GetDashboardUrlCommandOutput; }; }; }