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

Exception thrown as a result of concurrent modifications to an application. This error can * be the result of attempting to modify an application without using the current application * ID.

* @public */ export declare class ConcurrentModificationException extends __BaseException { readonly name: "ConcurrentModificationException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The user-provided application configuration is not valid.

* @public */ export declare class InvalidApplicationConfigurationException extends __BaseException { readonly name: "InvalidApplicationConfigurationException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The specified input parameter value is not valid.

* @public */ export declare class InvalidArgumentException extends __BaseException { readonly name: "InvalidArgumentException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The request JSON is not valid for the operation.

* @public */ export declare class InvalidRequestException extends __BaseException { readonly name: "InvalidRequestException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The application is not available for this operation.

* @public */ export declare class ResourceInUseException extends __BaseException { readonly name: "ResourceInUseException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Specified application can't be found.

* @public */ export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The user-provided application code (query) is not valid. This can be a simple syntax * error.

* @public */ export declare class CodeValidationException extends __BaseException { readonly name: "CodeValidationException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The number of allowed resources has been exceeded.

* @public */ export declare class LimitExceededException extends __BaseException { readonly name: "LimitExceededException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Application created with too many tags, or too many tags added to an application. Note that the maximum * number of application tags includes system tags. The maximum number of user-defined application tags is 50.

* @public */ export declare class TooManyTagsException extends __BaseException { readonly name: "TooManyTagsException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The request was rejected because a specified parameter is not supported or a specified resource is not valid for this * operation.

* @public */ export declare class UnsupportedOperationException extends __BaseException { readonly name: "UnsupportedOperationException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Discovery failed to get a record from the streaming source because of the Kinesis * Streams ProvisionedThroughputExceededException. For more information, see GetRecords in the Amazon Kinesis Streams API Reference.

* @public */ export declare class ResourceProvisionedThroughputExceededException extends __BaseException { readonly name: "ResourceProvisionedThroughputExceededException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The service cannot complete the request.

* @public */ export declare class ServiceUnavailableException extends __BaseException { readonly name: "ServiceUnavailableException"; readonly $fault: "server"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The data format is not valid. Kinesis Data Analytics cannot detect the schema for * the given streaming source.

* @public */ export declare class UnableToDetectSchemaException extends __BaseException { readonly name: "UnableToDetectSchemaException"; readonly $fault: "client"; Message?: string | undefined; /** *

Raw stream data that was sampled to infer the schema.

* @public */ RawInputRecords?: string[] | undefined; /** *

Stream data that was modified by the processor specified in the InputProcessingConfiguration parameter.

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