@aws-sdk/client-appflow 3.934.0 → 3.936.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,127 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { AppflowServiceException as __BaseException } from "./AppflowServiceException";
3
+ /**
4
+ * <p>AppFlow/Requester has invalid or missing permissions.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
+ }
15
+ /**
16
+ * <p> An internal service error occurred during the processing of your request. Try again
17
+ * later. </p>
18
+ * @public
19
+ */
20
+ export declare class InternalServerException extends __BaseException {
21
+ readonly name: "InternalServerException";
22
+ readonly $fault: "server";
23
+ /**
24
+ * @internal
25
+ */
26
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
27
+ }
28
+ /**
29
+ * <p> The resource specified in the request (such as the source or destination connector
30
+ * profile) is not found. </p>
31
+ * @public
32
+ */
33
+ export declare class ResourceNotFoundException extends __BaseException {
34
+ readonly name: "ResourceNotFoundException";
35
+ readonly $fault: "client";
36
+ /**
37
+ * @internal
38
+ */
39
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
40
+ }
41
+ /**
42
+ * <p>API calls have exceeded the maximum allowed API request rate per account and per Region.
43
+ * </p>
44
+ * @public
45
+ */
46
+ export declare class ThrottlingException extends __BaseException {
47
+ readonly name: "ThrottlingException";
48
+ readonly $fault: "client";
49
+ /**
50
+ * @internal
51
+ */
52
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
53
+ }
54
+ /**
55
+ * <p> The request has invalid or missing parameters. </p>
56
+ * @public
57
+ */
58
+ export declare class ValidationException extends __BaseException {
59
+ readonly name: "ValidationException";
60
+ readonly $fault: "client";
61
+ /**
62
+ * @internal
63
+ */
64
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
65
+ }
66
+ /**
67
+ * <p> There was a conflict when processing the request (for example, a flow with the given name
68
+ * already exists within the account. Check for conflicting resource names and try again. </p>
69
+ * @public
70
+ */
71
+ export declare class ConflictException extends __BaseException {
72
+ readonly name: "ConflictException";
73
+ readonly $fault: "client";
74
+ /**
75
+ * @internal
76
+ */
77
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
78
+ }
79
+ /**
80
+ * <p> An error occurred when authenticating with the connector endpoint. </p>
81
+ * @public
82
+ */
83
+ export declare class ConnectorAuthenticationException extends __BaseException {
84
+ readonly name: "ConnectorAuthenticationException";
85
+ readonly $fault: "client";
86
+ /**
87
+ * @internal
88
+ */
89
+ constructor(opts: __ExceptionOptionType<ConnectorAuthenticationException, __BaseException>);
90
+ }
91
+ /**
92
+ * <p> An error occurred when retrieving data from the connector endpoint. </p>
93
+ * @public
94
+ */
95
+ export declare class ConnectorServerException extends __BaseException {
96
+ readonly name: "ConnectorServerException";
97
+ readonly $fault: "client";
98
+ /**
99
+ * @internal
100
+ */
101
+ constructor(opts: __ExceptionOptionType<ConnectorServerException, __BaseException>);
102
+ }
103
+ /**
104
+ * <p> The request would cause a service quota (such as the number of flows) to be exceeded.
105
+ * </p>
106
+ * @public
107
+ */
108
+ export declare class ServiceQuotaExceededException extends __BaseException {
109
+ readonly name: "ServiceQuotaExceededException";
110
+ readonly $fault: "client";
111
+ /**
112
+ * @internal
113
+ */
114
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
115
+ }
116
+ /**
117
+ * <p> The requested operation is not supported for the current flow. </p>
118
+ * @public
119
+ */
120
+ export declare class UnsupportedOperationException extends __BaseException {
121
+ readonly name: "UnsupportedOperationException";
122
+ readonly $fault: "client";
123
+ /**
124
+ * @internal
125
+ */
126
+ constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
127
+ }