import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { CostAndUsageReportServiceServiceException as __BaseException } from "./CostAndUsageReportServiceServiceException"; /** *

An error on the server occurred during the processing of your request. Try again later.

* @public */ export declare class InternalErrorException extends __BaseException { readonly name: "InternalErrorException"; readonly $fault: "server"; /** *

A message to show the detail of the exception.

* @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The input fails to satisfy the constraints specified by an Amazon Web Services service.

* @public */ export declare class ValidationException extends __BaseException { readonly name: "ValidationException"; readonly $fault: "client"; /** *

A message to show the detail of the exception.

* @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The specified report (ReportName) in the request doesn't exist.

* @public */ export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; /** *

A message to show the detail of the exception.

* @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

A report with the specified name already exists in the account. Specify a different report name.

* @public */ export declare class DuplicateReportNameException extends __BaseException { readonly name: "DuplicateReportNameException"; readonly $fault: "client"; /** *

A message to show the detail of the exception.

* @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

This account already has five reports defined. To define a new report, you must delete an existing report.

* @public */ export declare class ReportLimitReachedException extends __BaseException { readonly name: "ReportLimitReachedException"; readonly $fault: "client"; /** *

A message to show the detail of the exception.

* @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }