import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import type { ValidationExceptionReason } from "./enums"; import { IoTFleetWiseServiceException as __BaseException } from "./IoTFleetWiseServiceException"; import type { InvalidNetworkInterface, InvalidSignal, InvalidSignalDecoder, Node, ValidationExceptionField } from "./models_0"; /** *

You don't have sufficient permission to perform this action.

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

The request couldn't be completed because the server temporarily failed.

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

The number of seconds to wait before retrying the command.

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

A service quota was exceeded.

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

The identifier of the resource that was exceeded.

* @public */ resourceId: string | undefined; /** *

The type of resource that was exceeded.

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

The resource wasn't found.

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

The identifier of the resource that wasn't found.

* @public */ resourceId: string | undefined; /** *

The type of resource that wasn't found.

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

The request couldn't be completed due to throttling.

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

The quota identifier of the applied throttling rules for this request.

* @public */ quotaCode?: string | undefined; /** *

The code for the service that couldn't be completed due to throttling.

* @public */ serviceCode?: string | undefined; /** *

The number of seconds to wait before retrying the command.

* @public */ retryAfterSeconds?: number | 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"; /** *

The reason the input failed to satisfy the constraints specified by an Amazon Web Services * service.

* @public */ reason?: ValidationExceptionReason | undefined; /** *

The list of fields that fail to satisfy the constraints specified by an Amazon Web Services * service.

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

The request has conflicting operations. This can occur if you're trying to perform * more than one operation on the same resource at the same time.

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

The resource on which there are conflicting operations.

* @public */ resource: string | undefined; /** *

The type of resource on which there are conflicting operations..

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

The request couldn't be completed because it contains signal decoders with one or more * validation errors.

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

The request couldn't be completed because of invalid signals in the request.

* @public */ invalidSignals?: InvalidSignalDecoder[] | undefined; /** *

The request couldn't be completed because of invalid network interfaces in the * request.

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

The request couldn't be completed because it contains signals that aren't * valid.

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

The signals which caused the exception.

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

The specified node type doesn't match the expected node type for a node. You can * specify the node type as branch, sensor, actuator, or attribute.

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

The specified node type isn't valid.

* @public */ invalidNodes?: Node[] | undefined; /** *

The reason the node validation failed.

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