import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import type { DescribeThemeForStackRequest, DescribeThemeForStackResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeThemeForStackCommand}. */ export interface DescribeThemeForStackCommandInput extends DescribeThemeForStackRequest { } /** * @public * * The output of {@link DescribeThemeForStackCommand}. */ export interface DescribeThemeForStackCommandOutput extends DescribeThemeForStackResult, __MetadataBearer { } declare const DescribeThemeForStackCommand_base: { new (input: DescribeThemeForStackCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DescribeThemeForStackCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Retrieves a list that describes the theme for a specified stack. A theme is custom branding that customizes the appearance of the streaming application catalog page.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { AppStreamClient, DescribeThemeForStackCommand } from "@aws-sdk/client-appstream"; // ES Modules import * // const { AppStreamClient, DescribeThemeForStackCommand } = require("@aws-sdk/client-appstream"); // CommonJS import * // import type { AppStreamClientConfig } from "@aws-sdk/client-appstream"; * const config = {}; // type is AppStreamClientConfig * const client = new AppStreamClient(config); * const input = { // DescribeThemeForStackRequest * StackName: "STRING_VALUE", // required * }; * const command = new DescribeThemeForStackCommand(input); * const response = await client.send(command); * // { // DescribeThemeForStackResult * // Theme: { // Theme * // StackName: "STRING_VALUE", * // State: "ENABLED" || "DISABLED", * // ThemeTitleText: "STRING_VALUE", * // ThemeStyling: "LIGHT_BLUE" || "BLUE" || "PINK" || "RED", * // ThemeFooterLinks: [ // ThemeFooterLinks * // { // ThemeFooterLink * // DisplayName: "STRING_VALUE", * // FooterLinkURL: "STRING_VALUE", * // }, * // ], * // ThemeOrganizationLogoURL: "STRING_VALUE", * // ThemeFaviconURL: "STRING_VALUE", * // CreatedTime: new Date("TIMESTAMP"), * // }, * // }; * * ``` * * @param DescribeThemeForStackCommandInput - {@link DescribeThemeForStackCommandInput} * @returns {@link DescribeThemeForStackCommandOutput} * @see {@link DescribeThemeForStackCommandInput} for command's `input` shape. * @see {@link DescribeThemeForStackCommandOutput} for command's `response` shape. * @see {@link AppStreamClientResolvedConfig | config} for AppStreamClient's `config` shape. * * @throws {@link OperationNotPermittedException} (client fault) *

The attempted operation is not permitted.

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

The specified resource was not found.

* * @throws {@link AppStreamServiceException} *

Base exception class for all service exceptions from AppStream service.

* * * @public */ export declare class DescribeThemeForStackCommand extends DescribeThemeForStackCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeThemeForStackRequest; output: DescribeThemeForStackResult; }; sdk: { input: DescribeThemeForStackCommandInput; output: DescribeThemeForStackCommandOutput; }; }; }