import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeAssetBundleExportJobRequest, DescribeAssetBundleExportJobResponse } from "../models/models_3"; import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeAssetBundleExportJobCommand}. */ export interface DescribeAssetBundleExportJobCommandInput extends DescribeAssetBundleExportJobRequest { } /** * @public * * The output of {@link DescribeAssetBundleExportJobCommand}. */ export interface DescribeAssetBundleExportJobCommandOutput extends DescribeAssetBundleExportJobResponse, __MetadataBearer { } declare const DescribeAssetBundleExportJobCommand_base: { new (input: DescribeAssetBundleExportJobCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DescribeAssetBundleExportJobCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Describes an existing export job.

*

Poll job descriptions after a job starts to know the status of the job. When a job * succeeds, a URL is provided to download the exported assets' data from. Download URLs * are valid for five minutes after they are generated. You can call the * DescribeAssetBundleExportJob API for a new download URL as needed.

*

Job descriptions are available for 14 days after the job starts.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { QuickSightClient, DescribeAssetBundleExportJobCommand } from "@aws-sdk/client-quicksight"; // ES Modules import * // const { QuickSightClient, DescribeAssetBundleExportJobCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import * // import type { QuickSightClientConfig } from "@aws-sdk/client-quicksight"; * const config = {}; // type is QuickSightClientConfig * const client = new QuickSightClient(config); * const input = { // DescribeAssetBundleExportJobRequest * AwsAccountId: "STRING_VALUE", // required * AssetBundleExportJobId: "STRING_VALUE", // required * }; * const command = new DescribeAssetBundleExportJobCommand(input); * const response = await client.send(command); * // { // DescribeAssetBundleExportJobResponse * // JobStatus: "QUEUED_FOR_IMMEDIATE_EXECUTION" || "IN_PROGRESS" || "SUCCESSFUL" || "FAILED", * // DownloadUrl: "STRING_VALUE", * // Errors: [ // AssetBundleExportJobErrorList * // { // AssetBundleExportJobError * // Arn: "STRING_VALUE", * // Type: "STRING_VALUE", * // Message: "STRING_VALUE", * // }, * // ], * // Arn: "STRING_VALUE", * // CreatedTime: new Date("TIMESTAMP"), * // AssetBundleExportJobId: "STRING_VALUE", * // AwsAccountId: "STRING_VALUE", * // ResourceArns: [ // AssetBundleResourceArns * // "STRING_VALUE", * // ], * // IncludeAllDependencies: true || false, * // ExportFormat: "CLOUDFORMATION_JSON" || "QUICKSIGHT_JSON", * // CloudFormationOverridePropertyConfiguration: { // AssetBundleCloudFormationOverridePropertyConfiguration * // ResourceIdOverrideConfiguration: { // AssetBundleExportJobResourceIdOverrideConfiguration * // PrefixForAllResources: true || false, * // }, * // VPCConnections: [ // AssetBundleExportJobVPCConnectionOverridePropertiesList * // { // AssetBundleExportJobVPCConnectionOverrideProperties * // Arn: "STRING_VALUE", // required * // Properties: [ // AssetBundleExportJobVPCConnectionPropertyToOverrideList // required * // "Name" || "DnsResolvers" || "RoleArn", * // ], * // }, * // ], * // RefreshSchedules: [ // AssetBundleExportJobRefreshScheduleOverridePropertiesList * // { // AssetBundleExportJobRefreshScheduleOverrideProperties * // Arn: "STRING_VALUE", // required * // Properties: [ // AssetBundleExportJobRefreshSchedulePropertyToOverrideList // required * // "StartAfterDateTime", * // ], * // }, * // ], * // DataSources: [ // AssetBundleExportJobDataSourceOverridePropertiesList * // { // AssetBundleExportJobDataSourceOverrideProperties * // Arn: "STRING_VALUE", // required * // Properties: [ // AssetBundleExportJobDataSourcePropertyToOverrideList // required * // "Name" || "DisableSsl" || "SecretArn" || "Username" || "Password" || "Domain" || "WorkGroup" || "Host" || "Port" || "Database" || "DataSetName" || "Catalog" || "InstanceId" || "ClusterId" || "ManifestFileLocation" || "Warehouse" || "RoleArn" || "ProductType", * // ], * // }, * // ], * // DataSets: [ // AssetBundleExportJobDataSetOverridePropertiesList * // { // AssetBundleExportJobDataSetOverrideProperties * // Arn: "STRING_VALUE", // required * // Properties: [ // AssetBundleExportJobDataSetPropertyToOverrideList // required * // "Name" || "RefreshFailureEmailAlertStatus", * // ], * // }, * // ], * // Themes: [ // AssetBundleExportJobThemeOverridePropertiesList * // { // AssetBundleExportJobThemeOverrideProperties * // Arn: "STRING_VALUE", // required * // Properties: [ // AssetBundleExportJobThemePropertyToOverrideList // required * // "Name", * // ], * // }, * // ], * // Analyses: [ // AssetBundleExportJobAnalysisOverridePropertiesList * // { // AssetBundleExportJobAnalysisOverrideProperties * // Arn: "STRING_VALUE", // required * // Properties: [ // AssetBundleExportJobAnalysisPropertyToOverrideList // required * // "Name", * // ], * // }, * // ], * // Dashboards: [ // AssetBundleExportJobDashboardOverridePropertiesList * // { // AssetBundleExportJobDashboardOverrideProperties * // Arn: "STRING_VALUE", // required * // Properties: [ // AssetBundleExportJobDashboardPropertyToOverrideList // required * // "Name", * // ], * // }, * // ], * // Folders: [ // AssetBundleExportJobFolderOverridePropertiesList * // { // AssetBundleExportJobFolderOverrideProperties * // Arn: "STRING_VALUE", // required * // Properties: [ // AssetBundleExportJobFolderPropertyToOverrideList // required * // "Name" || "ParentFolderArn", * // ], * // }, * // ], * // }, * // RequestId: "STRING_VALUE", * // Status: Number("int"), * // IncludePermissions: true || false, * // IncludeTags: true || false, * // ValidationStrategy: { // AssetBundleExportJobValidationStrategy * // StrictModeForAllResources: true || false, * // }, * // Warnings: [ // AssetBundleExportJobWarningList * // { // AssetBundleExportJobWarning * // Arn: "STRING_VALUE", * // Message: "STRING_VALUE", * // }, * // ], * // IncludeFolderMemberships: true || false, * // IncludeFolderMembers: "RECURSE" || "ONE_LEVEL" || "NONE", * // }; * * ``` * * @param DescribeAssetBundleExportJobCommandInput - {@link DescribeAssetBundleExportJobCommandInput} * @returns {@link DescribeAssetBundleExportJobCommandOutput} * @see {@link DescribeAssetBundleExportJobCommandInput} for command's `input` shape. * @see {@link DescribeAssetBundleExportJobCommandOutput} for command's `response` shape. * @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape. * * @throws {@link ResourceNotFoundException} (client fault) *

One or more resources can't be found.

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

Access is throttled.

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

This error indicates that you are calling an operation on an Amazon Quick Suite * subscription where the edition doesn't include support for that operation. Amazon * Quick Suite currently has Standard Edition and Enterprise Edition. Not every operation and * capability is available in every edition.

* * @throws {@link QuickSightServiceException} *

Base exception class for all service exceptions from QuickSight service.

* * * @public */ export declare class DescribeAssetBundleExportJobCommand extends DescribeAssetBundleExportJobCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeAssetBundleExportJobRequest; output: DescribeAssetBundleExportJobResponse; }; sdk: { input: DescribeAssetBundleExportJobCommandInput; output: DescribeAssetBundleExportJobCommandOutput; }; }; }