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

Kinesis Video Streams has throttled the request because you have exceeded a limit. Try making the call later. For information about limits, see Kinesis Video Streams Limits.

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

A specified parameter exceeds its restrictions, is not supported, or can't be * used.

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

The codec private data in at least one of the tracks of the video stream is not valid * for this operation.

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

One or more frames in the requested clip could not be parsed based on the specified * codec.

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

No codec private data was found in at least one of tracks of the video stream.

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

* GetImages was requested for a stream that does not retain data (that is, has * a DataRetentionInHours of 0).

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

Status Code: 403, The caller is not authorized to perform an operation on the given * stream, or the token has expired.

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

* GetImages will throw this error when Kinesis Video Streams can't find the stream * that you specified.

*

* GetHLSStreamingSessionURL and GetDASHStreamingSessionURL throw * this error if a session with a PlaybackMode of ON_DEMAND or * LIVE_REPLAYis requested for a stream that has no fragments within the * requested time range, or if a session with a PlaybackMode of * LIVE is requested for a stream that has no fragments within the last 30 * seconds.

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

The type of the media (for example, h.264 or h.265 video or ACC or G.711 audio) could * not be determined from the codec IDs of the tracks in the first fragment for a playback * session. The codec ID for track 1 should be V_MPEG/ISO/AVC and, optionally, * the codec ID for track 2 should be A_AAC.

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