@aws-sdk/client-partnercentral-selling 3.692.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.
Files changed (155) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +357 -0
  3. package/dist-cjs/PartnerCentralSelling.js +39 -0
  4. package/dist-cjs/PartnerCentralSellingClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/AssignOpportunityCommand.js +27 -0
  8. package/dist-cjs/commands/AssociateOpportunityCommand.js +26 -0
  9. package/dist-cjs/commands/CreateOpportunityCommand.js +27 -0
  10. package/dist-cjs/commands/DisassociateOpportunityCommand.js +26 -0
  11. package/dist-cjs/commands/GetAwsOpportunitySummaryCommand.js +27 -0
  12. package/dist-cjs/commands/GetEngagementInvitationCommand.js +27 -0
  13. package/dist-cjs/commands/GetOpportunityCommand.js +27 -0
  14. package/dist-cjs/commands/ListEngagementInvitationsCommand.js +27 -0
  15. package/dist-cjs/commands/ListOpportunitiesCommand.js +27 -0
  16. package/dist-cjs/commands/ListSolutionsCommand.js +26 -0
  17. package/dist-cjs/commands/RejectEngagementInvitationCommand.js +26 -0
  18. package/dist-cjs/commands/StartEngagementByAcceptingInvitationTaskCommand.js +26 -0
  19. package/dist-cjs/commands/StartEngagementFromOpportunityTaskCommand.js +26 -0
  20. package/dist-cjs/commands/UpdateOpportunityCommand.js +27 -0
  21. package/dist-cjs/commands/index.js +17 -0
  22. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  24. package/dist-cjs/endpoint/ruleset.js +7 -0
  25. package/dist-cjs/extensionConfiguration.js +2 -0
  26. package/dist-cjs/index.js +11 -0
  27. package/dist-cjs/models/PartnerCentralSellingServiceException.js +12 -0
  28. package/dist-cjs/models/index.js +4 -0
  29. package/dist-cjs/models/models_0.js +1097 -0
  30. package/dist-cjs/pagination/Interfaces.js +2 -0
  31. package/dist-cjs/pagination/ListEngagementInvitationsPaginator.js +7 -0
  32. package/dist-cjs/pagination/ListOpportunitiesPaginator.js +7 -0
  33. package/dist-cjs/pagination/ListSolutionsPaginator.js +7 -0
  34. package/dist-cjs/pagination/index.js +7 -0
  35. package/dist-cjs/protocols/Aws_json1_0.js +732 -0
  36. package/dist-cjs/runtimeConfig.browser.js +39 -0
  37. package/dist-cjs/runtimeConfig.js +50 -0
  38. package/dist-cjs/runtimeConfig.native.js +15 -0
  39. package/dist-cjs/runtimeConfig.shared.js +34 -0
  40. package/dist-cjs/runtimeExtensions.js +25 -0
  41. package/dist-es/PartnerCentralSelling.js +35 -0
  42. package/dist-es/PartnerCentralSellingClient.js +46 -0
  43. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  44. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  45. package/dist-es/commands/AssignOpportunityCommand.js +23 -0
  46. package/dist-es/commands/AssociateOpportunityCommand.js +22 -0
  47. package/dist-es/commands/CreateOpportunityCommand.js +23 -0
  48. package/dist-es/commands/DisassociateOpportunityCommand.js +22 -0
  49. package/dist-es/commands/GetAwsOpportunitySummaryCommand.js +23 -0
  50. package/dist-es/commands/GetEngagementInvitationCommand.js +23 -0
  51. package/dist-es/commands/GetOpportunityCommand.js +23 -0
  52. package/dist-es/commands/ListEngagementInvitationsCommand.js +23 -0
  53. package/dist-es/commands/ListOpportunitiesCommand.js +23 -0
  54. package/dist-es/commands/ListSolutionsCommand.js +22 -0
  55. package/dist-es/commands/RejectEngagementInvitationCommand.js +22 -0
  56. package/dist-es/commands/StartEngagementByAcceptingInvitationTaskCommand.js +22 -0
  57. package/dist-es/commands/StartEngagementFromOpportunityTaskCommand.js +22 -0
  58. package/dist-es/commands/UpdateOpportunityCommand.js +23 -0
  59. package/dist-es/commands/index.js +14 -0
  60. package/dist-es/endpoint/EndpointParameters.js +14 -0
  61. package/dist-es/endpoint/endpointResolver.js +14 -0
  62. package/dist-es/endpoint/ruleset.js +4 -0
  63. package/dist-es/extensionConfiguration.js +1 -0
  64. package/dist-es/index.js +6 -0
  65. package/dist-es/models/PartnerCentralSellingServiceException.js +8 -0
  66. package/dist-es/models/index.js +1 -0
  67. package/dist-es/models/models_0.js +1055 -0
  68. package/dist-es/pagination/Interfaces.js +1 -0
  69. package/dist-es/pagination/ListEngagementInvitationsPaginator.js +4 -0
  70. package/dist-es/pagination/ListOpportunitiesPaginator.js +4 -0
  71. package/dist-es/pagination/ListSolutionsPaginator.js +4 -0
  72. package/dist-es/pagination/index.js +4 -0
  73. package/dist-es/protocols/Aws_json1_0.js +701 -0
  74. package/dist-es/runtimeConfig.browser.js +34 -0
  75. package/dist-es/runtimeConfig.js +45 -0
  76. package/dist-es/runtimeConfig.native.js +11 -0
  77. package/dist-es/runtimeConfig.shared.js +30 -0
  78. package/dist-es/runtimeExtensions.js +21 -0
  79. package/dist-types/PartnerCentralSelling.d.ts +147 -0
  80. package/dist-types/PartnerCentralSellingClient.d.ts +222 -0
  81. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  82. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  83. package/dist-types/commands/AssignOpportunityCommand.d.ts +117 -0
  84. package/dist-types/commands/AssociateOpportunityCommand.d.ts +145 -0
  85. package/dist-types/commands/CreateOpportunityCommand.d.ts +244 -0
  86. package/dist-types/commands/DisassociateOpportunityCommand.d.ts +115 -0
  87. package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +167 -0
  88. package/dist-types/commands/GetEngagementInvitationCommand.d.ts +156 -0
  89. package/dist-types/commands/GetOpportunityCommand.d.ts +227 -0
  90. package/dist-types/commands/ListEngagementInvitationsCommand.d.ts +134 -0
  91. package/dist-types/commands/ListOpportunitiesCommand.d.ts +197 -0
  92. package/dist-types/commands/ListSolutionsCommand.d.ts +123 -0
  93. package/dist-types/commands/RejectEngagementInvitationCommand.d.ts +104 -0
  94. package/dist-types/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +127 -0
  95. package/dist-types/commands/StartEngagementFromOpportunityTaskCommand.d.ts +130 -0
  96. package/dist-types/commands/UpdateOpportunityCommand.d.ts +214 -0
  97. package/dist-types/commands/index.d.ts +14 -0
  98. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  99. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  100. package/dist-types/endpoint/ruleset.d.ts +2 -0
  101. package/dist-types/extensionConfiguration.d.ts +9 -0
  102. package/dist-types/index.d.ts +53 -0
  103. package/dist-types/models/PartnerCentralSellingServiceException.d.ts +14 -0
  104. package/dist-types/models/index.d.ts +1 -0
  105. package/dist-types/models/models_0.d.ts +4383 -0
  106. package/dist-types/pagination/Interfaces.d.ts +8 -0
  107. package/dist-types/pagination/ListEngagementInvitationsPaginator.d.ts +7 -0
  108. package/dist-types/pagination/ListOpportunitiesPaginator.d.ts +7 -0
  109. package/dist-types/pagination/ListSolutionsPaginator.d.ts +7 -0
  110. package/dist-types/pagination/index.d.ts +4 -0
  111. package/dist-types/protocols/Aws_json1_0.d.ts +128 -0
  112. package/dist-types/runtimeConfig.browser.d.ts +48 -0
  113. package/dist-types/runtimeConfig.d.ts +48 -0
  114. package/dist-types/runtimeConfig.native.d.ts +47 -0
  115. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  116. package/dist-types/runtimeExtensions.d.ts +17 -0
  117. package/dist-types/ts3.4/PartnerCentralSelling.d.ts +257 -0
  118. package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +205 -0
  119. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  120. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  121. package/dist-types/ts3.4/commands/AssignOpportunityCommand.d.ts +46 -0
  122. package/dist-types/ts3.4/commands/AssociateOpportunityCommand.d.ts +46 -0
  123. package/dist-types/ts3.4/commands/CreateOpportunityCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/DisassociateOpportunityCommand.d.ts +47 -0
  125. package/dist-types/ts3.4/commands/GetAwsOpportunitySummaryCommand.d.ts +51 -0
  126. package/dist-types/ts3.4/commands/GetEngagementInvitationCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/GetOpportunityCommand.d.ts +50 -0
  128. package/dist-types/ts3.4/commands/ListEngagementInvitationsCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/ListOpportunitiesCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/ListSolutionsCommand.d.ts +50 -0
  131. package/dist-types/ts3.4/commands/RejectEngagementInvitationCommand.d.ts +47 -0
  132. package/dist-types/ts3.4/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/StartEngagementFromOpportunityTaskCommand.d.ts +51 -0
  134. package/dist-types/ts3.4/commands/UpdateOpportunityCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/index.d.ts +14 -0
  136. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  137. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  138. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  139. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  140. package/dist-types/ts3.4/index.d.ts +9 -0
  141. package/dist-types/ts3.4/models/PartnerCentralSellingServiceException.d.ts +9 -0
  142. package/dist-types/ts3.4/models/index.d.ts +1 -0
  143. package/dist-types/ts3.4/models/models_0.d.ts +1419 -0
  144. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  145. package/dist-types/ts3.4/pagination/ListEngagementInvitationsPaginator.d.ts +11 -0
  146. package/dist-types/ts3.4/pagination/ListOpportunitiesPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/ListSolutionsPaginator.d.ts +11 -0
  148. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  149. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +173 -0
  150. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
  151. package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
  152. package/dist-types/ts3.4/runtimeConfig.native.d.ts +89 -0
  153. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  154. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  155. package/package.json +103 -0
@@ -0,0 +1,1419 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { PartnerCentralSellingServiceException as __BaseException } from "./PartnerCentralSellingServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message?: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export declare const CountryCode: {
12
+ readonly AD: "AD";
13
+ readonly AE: "AE";
14
+ readonly AF: "AF";
15
+ readonly AG: "AG";
16
+ readonly AI: "AI";
17
+ readonly AL: "AL";
18
+ readonly AM: "AM";
19
+ readonly AN: "AN";
20
+ readonly AO: "AO";
21
+ readonly AQ: "AQ";
22
+ readonly AR: "AR";
23
+ readonly AS: "AS";
24
+ readonly AT: "AT";
25
+ readonly AU: "AU";
26
+ readonly AW: "AW";
27
+ readonly AX: "AX";
28
+ readonly AZ: "AZ";
29
+ readonly BA: "BA";
30
+ readonly BB: "BB";
31
+ readonly BD: "BD";
32
+ readonly BE: "BE";
33
+ readonly BF: "BF";
34
+ readonly BG: "BG";
35
+ readonly BH: "BH";
36
+ readonly BI: "BI";
37
+ readonly BJ: "BJ";
38
+ readonly BL: "BL";
39
+ readonly BM: "BM";
40
+ readonly BN: "BN";
41
+ readonly BO: "BO";
42
+ readonly BQ: "BQ";
43
+ readonly BR: "BR";
44
+ readonly BS: "BS";
45
+ readonly BT: "BT";
46
+ readonly BV: "BV";
47
+ readonly BW: "BW";
48
+ readonly BY: "BY";
49
+ readonly BZ: "BZ";
50
+ readonly CA: "CA";
51
+ readonly CC: "CC";
52
+ readonly CD: "CD";
53
+ readonly CF: "CF";
54
+ readonly CG: "CG";
55
+ readonly CH: "CH";
56
+ readonly CI: "CI";
57
+ readonly CK: "CK";
58
+ readonly CL: "CL";
59
+ readonly CM: "CM";
60
+ readonly CN: "CN";
61
+ readonly CO: "CO";
62
+ readonly CR: "CR";
63
+ readonly CU: "CU";
64
+ readonly CV: "CV";
65
+ readonly CW: "CW";
66
+ readonly CX: "CX";
67
+ readonly CY: "CY";
68
+ readonly CZ: "CZ";
69
+ readonly DE: "DE";
70
+ readonly DJ: "DJ";
71
+ readonly DK: "DK";
72
+ readonly DM: "DM";
73
+ readonly DO: "DO";
74
+ readonly DZ: "DZ";
75
+ readonly EC: "EC";
76
+ readonly EE: "EE";
77
+ readonly EG: "EG";
78
+ readonly EH: "EH";
79
+ readonly ER: "ER";
80
+ readonly ES: "ES";
81
+ readonly ET: "ET";
82
+ readonly FI: "FI";
83
+ readonly FJ: "FJ";
84
+ readonly FK: "FK";
85
+ readonly FM: "FM";
86
+ readonly FO: "FO";
87
+ readonly FR: "FR";
88
+ readonly GA: "GA";
89
+ readonly GB: "GB";
90
+ readonly GD: "GD";
91
+ readonly GE: "GE";
92
+ readonly GF: "GF";
93
+ readonly GG: "GG";
94
+ readonly GH: "GH";
95
+ readonly GI: "GI";
96
+ readonly GL: "GL";
97
+ readonly GM: "GM";
98
+ readonly GN: "GN";
99
+ readonly GP: "GP";
100
+ readonly GQ: "GQ";
101
+ readonly GR: "GR";
102
+ readonly GS: "GS";
103
+ readonly GT: "GT";
104
+ readonly GU: "GU";
105
+ readonly GW: "GW";
106
+ readonly GY: "GY";
107
+ readonly HK: "HK";
108
+ readonly HM: "HM";
109
+ readonly HN: "HN";
110
+ readonly HR: "HR";
111
+ readonly HT: "HT";
112
+ readonly HU: "HU";
113
+ readonly ID: "ID";
114
+ readonly IE: "IE";
115
+ readonly IL: "IL";
116
+ readonly IM: "IM";
117
+ readonly IN: "IN";
118
+ readonly IO: "IO";
119
+ readonly IQ: "IQ";
120
+ readonly IR: "IR";
121
+ readonly IS: "IS";
122
+ readonly IT: "IT";
123
+ readonly JE: "JE";
124
+ readonly JM: "JM";
125
+ readonly JO: "JO";
126
+ readonly JP: "JP";
127
+ readonly KE: "KE";
128
+ readonly KG: "KG";
129
+ readonly KH: "KH";
130
+ readonly KI: "KI";
131
+ readonly KM: "KM";
132
+ readonly KN: "KN";
133
+ readonly KR: "KR";
134
+ readonly KW: "KW";
135
+ readonly KY: "KY";
136
+ readonly KZ: "KZ";
137
+ readonly LA: "LA";
138
+ readonly LB: "LB";
139
+ readonly LC: "LC";
140
+ readonly LI: "LI";
141
+ readonly LK: "LK";
142
+ readonly LR: "LR";
143
+ readonly LS: "LS";
144
+ readonly LT: "LT";
145
+ readonly LU: "LU";
146
+ readonly LV: "LV";
147
+ readonly LY: "LY";
148
+ readonly MA: "MA";
149
+ readonly MC: "MC";
150
+ readonly MD: "MD";
151
+ readonly ME: "ME";
152
+ readonly MF: "MF";
153
+ readonly MG: "MG";
154
+ readonly MH: "MH";
155
+ readonly MK: "MK";
156
+ readonly ML: "ML";
157
+ readonly MM: "MM";
158
+ readonly MN: "MN";
159
+ readonly MO: "MO";
160
+ readonly MP: "MP";
161
+ readonly MQ: "MQ";
162
+ readonly MR: "MR";
163
+ readonly MS: "MS";
164
+ readonly MT: "MT";
165
+ readonly MU: "MU";
166
+ readonly MV: "MV";
167
+ readonly MW: "MW";
168
+ readonly MX: "MX";
169
+ readonly MY: "MY";
170
+ readonly MZ: "MZ";
171
+ readonly NA: "NA";
172
+ readonly NC: "NC";
173
+ readonly NE: "NE";
174
+ readonly NF: "NF";
175
+ readonly NG: "NG";
176
+ readonly NI: "NI";
177
+ readonly NL: "NL";
178
+ readonly NO: "NO";
179
+ readonly NP: "NP";
180
+ readonly NR: "NR";
181
+ readonly NU: "NU";
182
+ readonly NZ: "NZ";
183
+ readonly OM: "OM";
184
+ readonly PA: "PA";
185
+ readonly PE: "PE";
186
+ readonly PF: "PF";
187
+ readonly PG: "PG";
188
+ readonly PH: "PH";
189
+ readonly PK: "PK";
190
+ readonly PL: "PL";
191
+ readonly PM: "PM";
192
+ readonly PN: "PN";
193
+ readonly PR: "PR";
194
+ readonly PS: "PS";
195
+ readonly PT: "PT";
196
+ readonly PW: "PW";
197
+ readonly PY: "PY";
198
+ readonly QA: "QA";
199
+ readonly RE: "RE";
200
+ readonly RO: "RO";
201
+ readonly RS: "RS";
202
+ readonly RU: "RU";
203
+ readonly RW: "RW";
204
+ readonly SA: "SA";
205
+ readonly SB: "SB";
206
+ readonly SC: "SC";
207
+ readonly SD: "SD";
208
+ readonly SE: "SE";
209
+ readonly SG: "SG";
210
+ readonly SH: "SH";
211
+ readonly SI: "SI";
212
+ readonly SJ: "SJ";
213
+ readonly SK: "SK";
214
+ readonly SL: "SL";
215
+ readonly SM: "SM";
216
+ readonly SN: "SN";
217
+ readonly SO: "SO";
218
+ readonly SR: "SR";
219
+ readonly SS: "SS";
220
+ readonly ST: "ST";
221
+ readonly SV: "SV";
222
+ readonly SX: "SX";
223
+ readonly SY: "SY";
224
+ readonly SZ: "SZ";
225
+ readonly TC: "TC";
226
+ readonly TD: "TD";
227
+ readonly TF: "TF";
228
+ readonly TG: "TG";
229
+ readonly TH: "TH";
230
+ readonly TJ: "TJ";
231
+ readonly TK: "TK";
232
+ readonly TL: "TL";
233
+ readonly TM: "TM";
234
+ readonly TN: "TN";
235
+ readonly TO: "TO";
236
+ readonly TR: "TR";
237
+ readonly TT: "TT";
238
+ readonly TV: "TV";
239
+ readonly TW: "TW";
240
+ readonly TZ: "TZ";
241
+ readonly UA: "UA";
242
+ readonly UG: "UG";
243
+ readonly UM: "UM";
244
+ readonly US: "US";
245
+ readonly UY: "UY";
246
+ readonly UZ: "UZ";
247
+ readonly VA: "VA";
248
+ readonly VC: "VC";
249
+ readonly VE: "VE";
250
+ readonly VG: "VG";
251
+ readonly VI: "VI";
252
+ readonly VN: "VN";
253
+ readonly VU: "VU";
254
+ readonly WF: "WF";
255
+ readonly WS: "WS";
256
+ readonly YE: "YE";
257
+ readonly YT: "YT";
258
+ readonly ZA: "ZA";
259
+ readonly ZM: "ZM";
260
+ readonly ZW: "ZW";
261
+ };
262
+ export type CountryCode = (typeof CountryCode)[keyof typeof CountryCode];
263
+ export interface Address {
264
+ City?: string | undefined;
265
+ PostalCode?: string | undefined;
266
+ StateOrRegion?: string | undefined;
267
+ CountryCode?: CountryCode | undefined;
268
+ StreetAddress?: string | undefined;
269
+ }
270
+ export declare const Industry: {
271
+ readonly AEROSPACE_SATELLITE: "Aerospace";
272
+ readonly AGRICULTURE: "Agriculture";
273
+ readonly AUTOMOTIVE: "Automotive";
274
+ readonly COMPUTERS_ELECTRONICS: "Computers and Electronics";
275
+ readonly CONSUMER_GOODS: "Consumer Goods";
276
+ readonly EDUCATION: "Education";
277
+ readonly ENERGY_OIL_GAS: "Energy - Oil and Gas";
278
+ readonly ENERGY_POWER_UTILITIES: "Energy - Power and Utilities";
279
+ readonly FINANCIAL_SERVICES: "Financial Services";
280
+ readonly GAMING: "Gaming";
281
+ readonly GOVERNMENT: "Government";
282
+ readonly HEALTHCARE: "Healthcare";
283
+ readonly HOSPITALITY: "Hospitality";
284
+ readonly LIFE_SCIENCES: "Life Sciences";
285
+ readonly MANUFACTURING: "Manufacturing";
286
+ readonly MARKETING_ADVERTISING: "Marketing and Advertising";
287
+ readonly MEDIA_ENTERTAINMENT: "Media and Entertainment";
288
+ readonly MINING: "Mining";
289
+ readonly NON_PROFIT_ORGANIZATION: "Non-Profit Organization";
290
+ readonly OTHER: "Other";
291
+ readonly PROFESSIONAL_SERVICES: "Professional Services";
292
+ readonly REALESTATE_CONSTRUCTION: "Real Estate and Construction";
293
+ readonly RETAIL: "Retail";
294
+ readonly SOFTWARE_INTERNET: "Software and Internet";
295
+ readonly TELECOMMUNICATIONS: "Telecommunications";
296
+ readonly TRANSPORTATION_LOGISTICS: "Transportation and Logistics";
297
+ readonly TRAVEL: "Travel";
298
+ readonly WHOLESALE_DISTRIBUTION: "Wholesale and Distribution";
299
+ };
300
+ export type Industry = (typeof Industry)[keyof typeof Industry];
301
+ export interface Account {
302
+ Industry?: Industry | undefined;
303
+ OtherIndustry?: string | undefined;
304
+ CompanyName: string | undefined;
305
+ WebsiteUrl?: string | undefined;
306
+ AwsAccountId?: string | undefined;
307
+ Address?: Address | undefined;
308
+ Duns?: string | undefined;
309
+ }
310
+ export interface AccountReceiver {
311
+ Alias?: string | undefined;
312
+ AwsAccountId: string | undefined;
313
+ }
314
+ export interface AddressSummary {
315
+ City?: string | undefined;
316
+ PostalCode?: string | undefined;
317
+ StateOrRegion?: string | undefined;
318
+ CountryCode?: CountryCode | undefined;
319
+ }
320
+ export interface AccountSummary {
321
+ Industry?: Industry | undefined;
322
+ OtherIndustry?: string | undefined;
323
+ CompanyName: string | undefined;
324
+ WebsiteUrl?: string | undefined;
325
+ Address?: AddressSummary | undefined;
326
+ }
327
+ export interface AssigneeContact {
328
+ Email: string | undefined;
329
+ FirstName: string | undefined;
330
+ LastName: string | undefined;
331
+ BusinessTitle: string | undefined;
332
+ }
333
+ export interface AssignOpportunityRequest {
334
+ Catalog: string | undefined;
335
+ Identifier: string | undefined;
336
+ Assignee: AssigneeContact | undefined;
337
+ }
338
+ export declare class InternalServerException extends __BaseException {
339
+ readonly name: "InternalServerException";
340
+ readonly $fault: "server";
341
+ Message?: string | undefined;
342
+ constructor(
343
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
344
+ );
345
+ }
346
+ export declare class ResourceNotFoundException extends __BaseException {
347
+ readonly name: "ResourceNotFoundException";
348
+ readonly $fault: "client";
349
+ Message?: string | undefined;
350
+ constructor(
351
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
352
+ );
353
+ }
354
+ export declare class ThrottlingException extends __BaseException {
355
+ readonly name: "ThrottlingException";
356
+ readonly $fault: "client";
357
+ Message?: string | undefined;
358
+ constructor(
359
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
360
+ );
361
+ }
362
+ export declare const ValidationExceptionErrorCode: {
363
+ readonly ACTION_NOT_PERMITTED: "ACTION_NOT_PERMITTED";
364
+ readonly DUPLICATE_KEY_VALUE: "DUPLICATE_KEY_VALUE";
365
+ readonly INVALID_ENUM_VALUE: "INVALID_ENUM_VALUE";
366
+ readonly INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE";
367
+ readonly INVALID_STRING_FORMAT: "INVALID_STRING_FORMAT";
368
+ readonly INVALID_VALUE: "INVALID_VALUE";
369
+ readonly REQUIRED_FIELD_MISSING: "REQUIRED_FIELD_MISSING";
370
+ readonly TOO_MANY_VALUES: "TOO_MANY_VALUES";
371
+ readonly VALUE_OUT_OF_RANGE: "VALUE_OUT_OF_RANGE";
372
+ };
373
+ export type ValidationExceptionErrorCode =
374
+ (typeof ValidationExceptionErrorCode)[keyof typeof ValidationExceptionErrorCode];
375
+ export interface ValidationExceptionError {
376
+ FieldName?: string | undefined;
377
+ Message: string | undefined;
378
+ Code: ValidationExceptionErrorCode | undefined;
379
+ }
380
+ export declare const ValidationExceptionReason: {
381
+ readonly BUSINESS_VALIDATION_FAILED: "BUSINESS_VALIDATION_FAILED";
382
+ readonly REQUEST_VALIDATION_FAILED: "REQUEST_VALIDATION_FAILED";
383
+ };
384
+ export type ValidationExceptionReason =
385
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
386
+ export declare class ValidationException extends __BaseException {
387
+ readonly name: "ValidationException";
388
+ readonly $fault: "client";
389
+ Message: string | undefined;
390
+ Reason: ValidationExceptionReason | undefined;
391
+ ErrorList?: ValidationExceptionError[] | undefined;
392
+ constructor(
393
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
394
+ );
395
+ }
396
+ export declare const RelatedEntityType: {
397
+ readonly AWS_MARKETPLACE_OFFERS: "AwsMarketplaceOffers";
398
+ readonly AWS_PRODUCTS: "AwsProducts";
399
+ readonly SOLUTIONS: "Solutions";
400
+ };
401
+ export type RelatedEntityType =
402
+ (typeof RelatedEntityType)[keyof typeof RelatedEntityType];
403
+ export interface AssociateOpportunityRequest {
404
+ Catalog: string | undefined;
405
+ OpportunityIdentifier: string | undefined;
406
+ RelatedEntityType: RelatedEntityType | undefined;
407
+ RelatedEntityIdentifier: string | undefined;
408
+ }
409
+ export declare const AwsClosedLostReason: {
410
+ readonly ADMINISTRATIVE: "Administrative";
411
+ readonly BUSINESS_ASSOCIATE_AGREEMENT: "Business Associate Agreement";
412
+ readonly COMPANY_ACQUIRED_DISSOLVED: "Company Acquired/Dissolved";
413
+ readonly COMPETITIVE_OFFERING: "Competitive Offering";
414
+ readonly CUSTOMER_DATA_REQUIREMENT: "Customer Data Requirement";
415
+ readonly CUSTOMER_DEFICIENCY: "Customer Deficiency";
416
+ readonly CUSTOMER_EXPERIENCE: "Customer Experience";
417
+ readonly DELAY_CANCELLATION_OF_PROJECT: "Delay / Cancellation of Project";
418
+ readonly DUPLICATE: "Duplicate";
419
+ readonly DUPLICATE_OPPORTUNITY: "Duplicate Opportunity";
420
+ readonly EXECUTIVE_BLOCKER: "Executive Blocker";
421
+ readonly FAILED_VETTING: "Failed Vetting";
422
+ readonly FEATURE_LIMITATION: "Feature Limitation";
423
+ readonly FINANCIAL_COMMERCIAL: "Financial/Commercial";
424
+ readonly INSUFFICIENT_AMAZON_VALUE: "Insufficient Amazon Value";
425
+ readonly INSUFFICIENT_AWS_VALUE: "Insufficient AWS Value";
426
+ readonly INTERNATIONAL_CONSTRAINTS: "International Constraints";
427
+ readonly LEGAL_TAX_REGULATORY: "Legal / Tax / Regulatory";
428
+ readonly LEGAL_TERMS_AND_CONDITIONS: "Legal Terms and Conditions";
429
+ readonly LOST_TO_COMPETITOR: "Lost to Competitor";
430
+ readonly LOST_TO_COMPETITOR_GOOGLE: "Lost to Competitor - Google";
431
+ readonly LOST_TO_COMPETITOR_MICROSOFT: "Lost to Competitor - Microsoft";
432
+ readonly LOST_TO_COMPETITOR_OTHER: "Lost to Competitor - Other";
433
+ readonly LOST_TO_COMPETITOR_RACKSPACE: "Lost to Competitor - Rackspace";
434
+ readonly LOST_TO_COMPETITOR_SOFTLAYER: "Lost to Competitor - SoftLayer";
435
+ readonly LOST_TO_COMPETITOR_VMWARE: "Lost to Competitor - VMWare";
436
+ readonly NOT_COMMITTED_TO_AWS: "Not Committed to AWS";
437
+ readonly NO_CUSTOMER_REFERENCE: "No Customer Reference";
438
+ readonly NO_INTEGRATION_RESOURCES: "No Integration Resources";
439
+ readonly NO_OPPORTUNITY: "No Opportunity";
440
+ readonly NO_PERCEIVED_VALUE_OF_MP: "No Perceived Value of MP";
441
+ readonly NO_RESPONSE: "No Response";
442
+ readonly NO_UPDATE: "No Update";
443
+ readonly ON_PREMISES_DEPLOYMENT: "On Premises Deployment";
444
+ readonly OTHER: "Other";
445
+ readonly OTHER_DETAILS_IN_DESCRIPTION: "Other (Details in Description)";
446
+ readonly PARTNER_GAP: "Partner Gap";
447
+ readonly PAST_DUE: "Past Due";
448
+ readonly PEOPLE_RELATIONSHIP_GOVERNANCE: "People/Relationship/Governance";
449
+ readonly PLATFORM_TECHNOLOGY_LIMITATION: "Platform Technology Limitation";
450
+ readonly PREFERENCE_FOR_COMPETITOR: "Preference for Competitor";
451
+ readonly PRICE: "Price";
452
+ readonly PRODUCT_NOT_ON_AWS: "Product Not on AWS";
453
+ readonly PRODUCT_TECHNOLOGY: "Product/Technology";
454
+ readonly SECURITY_COMPLIANCE: "Security / Compliance";
455
+ readonly SELF_SERVICE: "Self-Service";
456
+ readonly TECHNICAL_LIMITATIONS: "Technical Limitations";
457
+ readonly TERM_SHEET_IMPASSE: "Term Sheet Impasse";
458
+ };
459
+ export type AwsClosedLostReason =
460
+ (typeof AwsClosedLostReason)[keyof typeof AwsClosedLostReason];
461
+ export declare const AwsFundingUsed: {
462
+ readonly NO: "No";
463
+ readonly YES: "Yes";
464
+ };
465
+ export type AwsFundingUsed =
466
+ (typeof AwsFundingUsed)[keyof typeof AwsFundingUsed];
467
+ export declare const AwsMemberBusinessTitle: {
468
+ readonly AWS_ACCOUNT_OWNER: "AWSAccountOwner";
469
+ readonly AWS_SALES_REP: "AWSSalesRep";
470
+ readonly ISVSM: "ISVSM";
471
+ readonly PDM: "PDM";
472
+ readonly PSM: "PSM";
473
+ readonly WWPSPDM: "WWPSPDM";
474
+ };
475
+ export type AwsMemberBusinessTitle =
476
+ (typeof AwsMemberBusinessTitle)[keyof typeof AwsMemberBusinessTitle];
477
+ export interface Contact {
478
+ Email?: string | undefined;
479
+ FirstName?: string | undefined;
480
+ LastName?: string | undefined;
481
+ BusinessTitle?: string | undefined;
482
+ Phone?: string | undefined;
483
+ }
484
+ export interface AwsOpportunityCustomer {
485
+ Contacts?: Contact[] | undefined;
486
+ }
487
+ export declare const EngagementScore: {
488
+ readonly HIGH: "High";
489
+ readonly LOW: "Low";
490
+ readonly MEDIUM: "Medium";
491
+ };
492
+ export type EngagementScore =
493
+ (typeof EngagementScore)[keyof typeof EngagementScore];
494
+ export interface AwsOpportunityInsights {
495
+ NextBestActions?: string | undefined;
496
+ EngagementScore?: EngagementScore | undefined;
497
+ }
498
+ export interface ProfileNextStepsHistory {
499
+ Value: string | undefined;
500
+ Time: Date | undefined;
501
+ }
502
+ export declare const AwsOpportunityStage: {
503
+ readonly BUILDING_INTEGRATION: "Building Integration";
504
+ readonly BUSINESS_VALIDATION: "Business Validation";
505
+ readonly CLOSED_INCOMPLETE: "Closed Incomplete";
506
+ readonly CLOSED_LOST: "Closed Lost";
507
+ readonly COMMITTED: "Committed";
508
+ readonly COMPLETED: "Completed";
509
+ readonly CONTRACT_NEGOTIATION: "Contract Negotiation";
510
+ readonly DEFERRED_TO_PARTNER: "Deferred to Partner";
511
+ readonly ENGAGED: "Engaged";
512
+ readonly EVALUATING: "Evaluating";
513
+ readonly IDENTIFIED: "Identified";
514
+ readonly IN_PROGRESS: "In Progress";
515
+ readonly LAUNCHED: "Launched";
516
+ readonly NOT_STARTED: "Not Started";
517
+ readonly ONBOARDING: "Onboarding";
518
+ readonly ON_HOLD: "On-hold";
519
+ readonly PROSPECT: "Prospect";
520
+ readonly QUALIFIED: "Qualified";
521
+ readonly QUALIFY: "Qualify";
522
+ readonly RESEARCH: "Research";
523
+ readonly SELLER_ENGAGED: "Seller Engaged";
524
+ readonly SELLER_REGISTERED: "Seller Registered";
525
+ readonly TECHNICAL_VALIDATION: "Technical Validation";
526
+ readonly TERM_SHEET_NEGOTIATION: "Term Sheet Negotiation";
527
+ };
528
+ export type AwsOpportunityStage =
529
+ (typeof AwsOpportunityStage)[keyof typeof AwsOpportunityStage];
530
+ export interface AwsOpportunityLifeCycle {
531
+ TargetCloseDate?: string | undefined;
532
+ ClosedLostReason?: AwsClosedLostReason | undefined;
533
+ Stage?: AwsOpportunityStage | undefined;
534
+ NextSteps?: string | undefined;
535
+ NextStepsHistory?: ProfileNextStepsHistory[] | undefined;
536
+ }
537
+ export declare const CurrencyCode: {
538
+ readonly AED: "AED";
539
+ readonly AFN: "AFN";
540
+ readonly ALL: "ALL";
541
+ readonly AMD: "AMD";
542
+ readonly ANG: "ANG";
543
+ readonly AOA: "AOA";
544
+ readonly ARS: "ARS";
545
+ readonly AUD: "AUD";
546
+ readonly AWG: "AWG";
547
+ readonly AZN: "AZN";
548
+ readonly BAM: "BAM";
549
+ readonly BBD: "BBD";
550
+ readonly BDT: "BDT";
551
+ readonly BGN: "BGN";
552
+ readonly BHD: "BHD";
553
+ readonly BIF: "BIF";
554
+ readonly BMD: "BMD";
555
+ readonly BND: "BND";
556
+ readonly BOB: "BOB";
557
+ readonly BOV: "BOV";
558
+ readonly BRL: "BRL";
559
+ readonly BSD: "BSD";
560
+ readonly BTN: "BTN";
561
+ readonly BWP: "BWP";
562
+ readonly BYN: "BYN";
563
+ readonly BZD: "BZD";
564
+ readonly CAD: "CAD";
565
+ readonly CDF: "CDF";
566
+ readonly CHE: "CHE";
567
+ readonly CHF: "CHF";
568
+ readonly CHW: "CHW";
569
+ readonly CLF: "CLF";
570
+ readonly CLP: "CLP";
571
+ readonly CNY: "CNY";
572
+ readonly COP: "COP";
573
+ readonly COU: "COU";
574
+ readonly CRC: "CRC";
575
+ readonly CUC: "CUC";
576
+ readonly CUP: "CUP";
577
+ readonly CVE: "CVE";
578
+ readonly CZK: "CZK";
579
+ readonly DJF: "DJF";
580
+ readonly DKK: "DKK";
581
+ readonly DOP: "DOP";
582
+ readonly DZD: "DZD";
583
+ readonly EGP: "EGP";
584
+ readonly ERN: "ERN";
585
+ readonly ETB: "ETB";
586
+ readonly EUR: "EUR";
587
+ readonly FJD: "FJD";
588
+ readonly FKP: "FKP";
589
+ readonly GBP: "GBP";
590
+ readonly GEL: "GEL";
591
+ readonly GHS: "GHS";
592
+ readonly GIP: "GIP";
593
+ readonly GMD: "GMD";
594
+ readonly GNF: "GNF";
595
+ readonly GTQ: "GTQ";
596
+ readonly GYD: "GYD";
597
+ readonly HKD: "HKD";
598
+ readonly HNL: "HNL";
599
+ readonly HRK: "HRK";
600
+ readonly HTG: "HTG";
601
+ readonly HUF: "HUF";
602
+ readonly IDR: "IDR";
603
+ readonly ILS: "ILS";
604
+ readonly INR: "INR";
605
+ readonly IQD: "IQD";
606
+ readonly IRR: "IRR";
607
+ readonly ISK: "ISK";
608
+ readonly JMD: "JMD";
609
+ readonly JOD: "JOD";
610
+ readonly JPY: "JPY";
611
+ readonly KES: "KES";
612
+ readonly KGS: "KGS";
613
+ readonly KHR: "KHR";
614
+ readonly KMF: "KMF";
615
+ readonly KPW: "KPW";
616
+ readonly KRW: "KRW";
617
+ readonly KWD: "KWD";
618
+ readonly KYD: "KYD";
619
+ readonly KZT: "KZT";
620
+ readonly LAK: "LAK";
621
+ readonly LBP: "LBP";
622
+ readonly LKR: "LKR";
623
+ readonly LRD: "LRD";
624
+ readonly LSL: "LSL";
625
+ readonly LYD: "LYD";
626
+ readonly MAD: "MAD";
627
+ readonly MDL: "MDL";
628
+ readonly MGA: "MGA";
629
+ readonly MKD: "MKD";
630
+ readonly MMK: "MMK";
631
+ readonly MNT: "MNT";
632
+ readonly MOP: "MOP";
633
+ readonly MRU: "MRU";
634
+ readonly MUR: "MUR";
635
+ readonly MVR: "MVR";
636
+ readonly MWK: "MWK";
637
+ readonly MXN: "MXN";
638
+ readonly MXV: "MXV";
639
+ readonly MYR: "MYR";
640
+ readonly MZN: "MZN";
641
+ readonly NAD: "NAD";
642
+ readonly NGN: "NGN";
643
+ readonly NIO: "NIO";
644
+ readonly NOK: "NOK";
645
+ readonly NPR: "NPR";
646
+ readonly NZD: "NZD";
647
+ readonly OMR: "OMR";
648
+ readonly PAB: "PAB";
649
+ readonly PEN: "PEN";
650
+ readonly PGK: "PGK";
651
+ readonly PHP: "PHP";
652
+ readonly PKR: "PKR";
653
+ readonly PLN: "PLN";
654
+ readonly PYG: "PYG";
655
+ readonly QAR: "QAR";
656
+ readonly RON: "RON";
657
+ readonly RSD: "RSD";
658
+ readonly RUB: "RUB";
659
+ readonly RWF: "RWF";
660
+ readonly SAR: "SAR";
661
+ readonly SBD: "SBD";
662
+ readonly SCR: "SCR";
663
+ readonly SDG: "SDG";
664
+ readonly SEK: "SEK";
665
+ readonly SGD: "SGD";
666
+ readonly SHP: "SHP";
667
+ readonly SLL: "SLL";
668
+ readonly SOS: "SOS";
669
+ readonly SRD: "SRD";
670
+ readonly SSP: "SSP";
671
+ readonly STN: "STN";
672
+ readonly SVC: "SVC";
673
+ readonly SYP: "SYP";
674
+ readonly SZL: "SZL";
675
+ readonly THB: "THB";
676
+ readonly TJS: "TJS";
677
+ readonly TMT: "TMT";
678
+ readonly TND: "TND";
679
+ readonly TOP: "TOP";
680
+ readonly TRY: "TRY";
681
+ readonly TTD: "TTD";
682
+ readonly TWD: "TWD";
683
+ readonly TZS: "TZS";
684
+ readonly UAH: "UAH";
685
+ readonly UGX: "UGX";
686
+ readonly USD: "USD";
687
+ readonly USN: "USN";
688
+ readonly UYI: "UYI";
689
+ readonly UYU: "UYU";
690
+ readonly UZS: "UZS";
691
+ readonly VEF: "VEF";
692
+ readonly VND: "VND";
693
+ readonly VUV: "VUV";
694
+ readonly WST: "WST";
695
+ readonly XAF: "XAF";
696
+ readonly XCD: "XCD";
697
+ readonly XDR: "XDR";
698
+ readonly XOF: "XOF";
699
+ readonly XPF: "XPF";
700
+ readonly XSU: "XSU";
701
+ readonly XUA: "XUA";
702
+ readonly YER: "YER";
703
+ readonly ZAR: "ZAR";
704
+ readonly ZMW: "ZMW";
705
+ readonly ZWL: "ZWL";
706
+ };
707
+ export type CurrencyCode = (typeof CurrencyCode)[keyof typeof CurrencyCode];
708
+ export declare const PaymentFrequency: {
709
+ readonly MONTHLY: "Monthly";
710
+ };
711
+ export type PaymentFrequency =
712
+ (typeof PaymentFrequency)[keyof typeof PaymentFrequency];
713
+ export interface ExpectedCustomerSpend {
714
+ Amount: string | undefined;
715
+ CurrencyCode: CurrencyCode | undefined;
716
+ Frequency: PaymentFrequency | undefined;
717
+ TargetCompany: string | undefined;
718
+ }
719
+ export interface AwsOpportunityProject {
720
+ ExpectedCustomerSpend?: ExpectedCustomerSpend[] | undefined;
721
+ }
722
+ export interface AwsOpportunityRelatedEntities {
723
+ AwsProducts?: string[] | undefined;
724
+ Solutions?: string[] | undefined;
725
+ }
726
+ export interface AwsTeamMember {
727
+ Email?: string | undefined;
728
+ FirstName?: string | undefined;
729
+ LastName?: string | undefined;
730
+ BusinessTitle?: AwsMemberBusinessTitle | undefined;
731
+ }
732
+ export declare class ConflictException extends __BaseException {
733
+ readonly name: "ConflictException";
734
+ readonly $fault: "client";
735
+ Message?: string | undefined;
736
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
737
+ }
738
+ export declare class ServiceQuotaExceededException extends __BaseException {
739
+ readonly name: "ServiceQuotaExceededException";
740
+ readonly $fault: "client";
741
+ Message?: string | undefined;
742
+ constructor(
743
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
744
+ );
745
+ }
746
+ export interface StartEngagementByAcceptingInvitationTaskRequest {
747
+ Catalog: string | undefined;
748
+ ClientToken?: string | undefined;
749
+ Identifier: string | undefined;
750
+ }
751
+ export declare const ReasonCode: {
752
+ readonly ENGAGEMENT_ACCESS_DENIED: "EngagementAccessDenied";
753
+ readonly ENGAGEMENT_INVITATION_CONFLICT: "EngagementInvitationConflict";
754
+ readonly ENGAGEMENT_VALIDATION_FAILED: "EngagementValidationFailed";
755
+ readonly INTERNAL_ERROR: "InternalError";
756
+ readonly INVITATION_ACCESS_DENIED: "InvitationAccessDenied";
757
+ readonly OPPORTUNITY_ACCESS_DENIED: "OpportunityAccessDenied";
758
+ readonly OPPORTUNITY_CONFLICT: "OpportunityConflict";
759
+ readonly OPPORTUNITY_SUBMISSION_FAILED: "OpportunitySubmissionFailed";
760
+ readonly OPPORTUNITY_VALIDATION_FAILED: "OpportunityValidationFailed";
761
+ readonly RESOURCE_SNAPSHOT_JOB_ACCESS_DENIED: "ResourceSnapshotJobAccessDenied";
762
+ };
763
+ export type ReasonCode = (typeof ReasonCode)[keyof typeof ReasonCode];
764
+ export declare const TaskStatus: {
765
+ readonly COMPLETE: "COMPLETE";
766
+ readonly FAILED: "FAILED";
767
+ readonly IN_PROGRESS: "IN_PROGRESS";
768
+ };
769
+ export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
770
+ export interface StartEngagementByAcceptingInvitationTaskResponse {
771
+ TaskId?: string | undefined;
772
+ TaskArn?: string | undefined;
773
+ StartTime?: Date | undefined;
774
+ TaskStatus?: TaskStatus | undefined;
775
+ Message?: string | undefined;
776
+ ReasonCode?: ReasonCode | undefined;
777
+ OpportunityId?: string | undefined;
778
+ EngagementInvitationId?: string | undefined;
779
+ }
780
+ export declare const SalesInvolvementType: {
781
+ readonly CO_SELL: "Co-Sell";
782
+ readonly FOR_VISIBILITY_ONLY: "For Visibility Only";
783
+ };
784
+ export type SalesInvolvementType =
785
+ (typeof SalesInvolvementType)[keyof typeof SalesInvolvementType];
786
+ export declare const Visibility: {
787
+ readonly FULL: "Full";
788
+ readonly LIMITED: "Limited";
789
+ };
790
+ export type Visibility = (typeof Visibility)[keyof typeof Visibility];
791
+ export interface AwsSubmission {
792
+ InvolvementType: SalesInvolvementType | undefined;
793
+ Visibility?: Visibility | undefined;
794
+ }
795
+ export interface StartEngagementFromOpportunityTaskRequest {
796
+ Catalog: string | undefined;
797
+ ClientToken?: string | undefined;
798
+ Identifier: string | undefined;
799
+ AwsSubmission: AwsSubmission | undefined;
800
+ }
801
+ export interface StartEngagementFromOpportunityTaskResponse {
802
+ TaskId?: string | undefined;
803
+ TaskArn?: string | undefined;
804
+ StartTime?: Date | undefined;
805
+ TaskStatus?: TaskStatus | undefined;
806
+ Message?: string | undefined;
807
+ ReasonCode?: ReasonCode | undefined;
808
+ OpportunityId?: string | undefined;
809
+ }
810
+ export interface GetEngagementInvitationRequest {
811
+ Catalog: string | undefined;
812
+ Identifier: string | undefined;
813
+ }
814
+ export interface EngagementCustomer {
815
+ Industry: Industry | undefined;
816
+ CompanyName: string | undefined;
817
+ WebsiteUrl: string | undefined;
818
+ CountryCode: CountryCode | undefined;
819
+ }
820
+ export interface ProjectDetails {
821
+ BusinessProblem: string | undefined;
822
+ Title: string | undefined;
823
+ TargetCompletionDate: string | undefined;
824
+ ExpectedCustomerSpend: ExpectedCustomerSpend[] | undefined;
825
+ }
826
+ export declare const ReceiverResponsibility: {
827
+ readonly CO_SELL_FACILITATOR: "Co-Sell Facilitator";
828
+ readonly DISTRIBUTOR: "Distributor";
829
+ readonly FACILITATOR: "Facilitator";
830
+ readonly HARDWARE_PARTNER: "Hardware Partner";
831
+ readonly MANAGED_SERVICE_PROVIDER: "Managed Service Provider";
832
+ readonly RESELLER: "Reseller";
833
+ readonly SERVICES_PARTNER: "Services Partner";
834
+ readonly SOFTWARE_PARTNER: "Software Partner";
835
+ readonly TRAINING_PARTNER: "Training Partner";
836
+ };
837
+ export type ReceiverResponsibility =
838
+ (typeof ReceiverResponsibility)[keyof typeof ReceiverResponsibility];
839
+ export interface SenderContact {
840
+ Email: string | undefined;
841
+ FirstName?: string | undefined;
842
+ LastName?: string | undefined;
843
+ BusinessTitle?: string | undefined;
844
+ Phone?: string | undefined;
845
+ }
846
+ export interface OpportunityInvitationPayload {
847
+ SenderContacts?: SenderContact[] | undefined;
848
+ ReceiverResponsibilities: ReceiverResponsibility[] | undefined;
849
+ Customer: EngagementCustomer | undefined;
850
+ Project: ProjectDetails | undefined;
851
+ }
852
+ export type Payload =
853
+ | Payload.OpportunityInvitationMember
854
+ | Payload.$UnknownMember;
855
+ export declare namespace Payload {
856
+ interface OpportunityInvitationMember {
857
+ OpportunityInvitation: OpportunityInvitationPayload;
858
+ $unknown?: never;
859
+ }
860
+ interface $UnknownMember {
861
+ OpportunityInvitation?: never;
862
+ $unknown: [string, any];
863
+ }
864
+ interface Visitor<T> {
865
+ OpportunityInvitation: (value: OpportunityInvitationPayload) => T;
866
+ _: (name: string, value: any) => T;
867
+ }
868
+ const visit: <T>(value: Payload, visitor: Visitor<T>) => T;
869
+ }
870
+ export declare const EngagementInvitationPayloadType: {
871
+ readonly OPPORTUNITY_INVITATION: "OpportunityInvitation";
872
+ };
873
+ export type EngagementInvitationPayloadType =
874
+ (typeof EngagementInvitationPayloadType)[keyof typeof EngagementInvitationPayloadType];
875
+ export type Receiver = Receiver.AccountMember | Receiver.$UnknownMember;
876
+ export declare namespace Receiver {
877
+ interface AccountMember {
878
+ Account: AccountReceiver;
879
+ $unknown?: never;
880
+ }
881
+ interface $UnknownMember {
882
+ Account?: never;
883
+ $unknown: [string, any];
884
+ }
885
+ interface Visitor<T> {
886
+ Account: (value: AccountReceiver) => T;
887
+ _: (name: string, value: any) => T;
888
+ }
889
+ const visit: <T>(value: Receiver, visitor: Visitor<T>) => T;
890
+ }
891
+ export declare const InvitationStatus: {
892
+ readonly ACCEPTED: "ACCEPTED";
893
+ readonly EXPIRED: "EXPIRED";
894
+ readonly PENDING: "PENDING";
895
+ readonly REJECTED: "REJECTED";
896
+ };
897
+ export type InvitationStatus =
898
+ (typeof InvitationStatus)[keyof typeof InvitationStatus];
899
+ export interface GetEngagementInvitationResponse {
900
+ Arn?: string | undefined;
901
+ PayloadType?: EngagementInvitationPayloadType | undefined;
902
+ Id: string | undefined;
903
+ EngagementTitle?: string | undefined;
904
+ Status?: InvitationStatus | undefined;
905
+ InvitationDate?: Date | undefined;
906
+ ExpirationDate?: Date | undefined;
907
+ SenderAwsAccountId?: string | undefined;
908
+ SenderCompanyName?: string | undefined;
909
+ Receiver?: Receiver | undefined;
910
+ Catalog: string | undefined;
911
+ RejectionReason?: string | undefined;
912
+ Payload?: Payload | undefined;
913
+ }
914
+ export declare const ParticipantType: {
915
+ readonly RECEIVER: "RECEIVER";
916
+ };
917
+ export type ParticipantType =
918
+ (typeof ParticipantType)[keyof typeof ParticipantType];
919
+ export declare const OpportunityEngagementInvitationSortName: {
920
+ readonly INVITATION_DATE: "InvitationDate";
921
+ };
922
+ export type OpportunityEngagementInvitationSortName =
923
+ (typeof OpportunityEngagementInvitationSortName)[keyof typeof OpportunityEngagementInvitationSortName];
924
+ export declare const SortOrder: {
925
+ readonly ASCENDING: "ASCENDING";
926
+ readonly DESCENDING: "DESCENDING";
927
+ };
928
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
929
+ export interface OpportunityEngagementInvitationSort {
930
+ SortOrder: SortOrder | undefined;
931
+ SortBy: OpportunityEngagementInvitationSortName | undefined;
932
+ }
933
+ export interface ListEngagementInvitationsRequest {
934
+ Catalog: string | undefined;
935
+ MaxResults?: number | undefined;
936
+ NextToken?: string | undefined;
937
+ Sort?: OpportunityEngagementInvitationSort | undefined;
938
+ PayloadType?: EngagementInvitationPayloadType[] | undefined;
939
+ ParticipantType: ParticipantType | undefined;
940
+ }
941
+ export interface EngagementInvitationSummary {
942
+ Arn?: string | undefined;
943
+ PayloadType?: EngagementInvitationPayloadType | undefined;
944
+ Id: string | undefined;
945
+ EngagementTitle?: string | undefined;
946
+ Status?: InvitationStatus | undefined;
947
+ InvitationDate?: Date | undefined;
948
+ ExpirationDate?: Date | undefined;
949
+ SenderAwsAccountId?: string | undefined;
950
+ SenderCompanyName?: string | undefined;
951
+ Receiver?: Receiver | undefined;
952
+ Catalog: string | undefined;
953
+ }
954
+ export interface ListEngagementInvitationsResponse {
955
+ EngagementInvitationSummaries?: EngagementInvitationSummary[] | undefined;
956
+ NextToken?: string | undefined;
957
+ }
958
+ export interface RejectEngagementInvitationRequest {
959
+ Catalog: string | undefined;
960
+ Identifier: string | undefined;
961
+ RejectionReason?: string | undefined;
962
+ }
963
+ export interface Customer {
964
+ Account?: Account | undefined;
965
+ Contacts?: Contact[] | undefined;
966
+ }
967
+ export declare const ClosedLostReason: {
968
+ readonly CUSTOMER_DEFICIENCY: "Customer Deficiency";
969
+ readonly CUSTOMER_EXPERIENCE: "Customer Experience";
970
+ readonly DELAY_CANCELLATION_OF_PROJECT: "Delay / Cancellation of Project";
971
+ readonly FINANCIALCOMMERCIAL: "Financial/Commercial";
972
+ readonly LEGAL_TAX_REGULATORY: "Legal / Tax / Regulatory";
973
+ readonly LOST_TO_COMPETITOR_GOOGLE: "Lost to Competitor - Google";
974
+ readonly LOST_TO_COMPETITOR_MICROSOFT: "Lost to Competitor - Microsoft";
975
+ readonly LOST_TO_COMPETITOR_OTHER: "Lost to Competitor - Other";
976
+ readonly LOST_TO_COMPETITOR_SOFTLAYER: "Lost to Competitor - SoftLayer";
977
+ readonly LOST_TO_COMPETITOR_VMWARE: "Lost to Competitor - VMWare";
978
+ readonly NO_OPPORTUNITY: "No Opportunity";
979
+ readonly ON_PREMISES_DEPLOYMENT: "On Premises Deployment";
980
+ readonly OTHER: "Other";
981
+ readonly PARTNER_GAP: "Partner Gap";
982
+ readonly PEOPLERELATIONSHIPGOVERNANCE: "People/Relationship/Governance";
983
+ readonly PRICE: "Price";
984
+ readonly PRODUCTTECHNOLOGY: "Product/Technology";
985
+ readonly SECURITY_COMPLIANCE: "Security / Compliance";
986
+ readonly TECHNICAL_LIMITATIONS: "Technical Limitations";
987
+ };
988
+ export type ClosedLostReason =
989
+ (typeof ClosedLostReason)[keyof typeof ClosedLostReason];
990
+ export interface NextStepsHistory {
991
+ Value: string | undefined;
992
+ Time: Date | undefined;
993
+ }
994
+ export declare const ReviewStatus: {
995
+ readonly ACTION_REQUIRED: "Action Required";
996
+ readonly APPROVED: "Approved";
997
+ readonly IN_REVIEW: "In review";
998
+ readonly PENDING_SUBMISSION: "Pending Submission";
999
+ readonly REJECTED: "Rejected";
1000
+ readonly SUBMITTED: "Submitted";
1001
+ };
1002
+ export type ReviewStatus = (typeof ReviewStatus)[keyof typeof ReviewStatus];
1003
+ export declare const Stage: {
1004
+ readonly BUSINESS_VALIDATION: "Business Validation";
1005
+ readonly CLOSED_LOST: "Closed Lost";
1006
+ readonly COMMITTED: "Committed";
1007
+ readonly LAUNCHED: "Launched";
1008
+ readonly PROSPECT: "Prospect";
1009
+ readonly QUALIFIED: "Qualified";
1010
+ readonly TECHNICAL_VALIDATION: "Technical Validation";
1011
+ };
1012
+ export type Stage = (typeof Stage)[keyof typeof Stage];
1013
+ export interface LifeCycle {
1014
+ Stage?: Stage | undefined;
1015
+ ClosedLostReason?: ClosedLostReason | undefined;
1016
+ NextSteps?: string | undefined;
1017
+ TargetCloseDate?: string | undefined;
1018
+ ReviewStatus?: ReviewStatus | undefined;
1019
+ ReviewComments?: string | undefined;
1020
+ ReviewStatusReason?: string | undefined;
1021
+ NextStepsHistory?: NextStepsHistory[] | undefined;
1022
+ }
1023
+ export declare const Channel: {
1024
+ readonly AWS_MARKETING_CENTRAL: "AWS Marketing Central";
1025
+ readonly CONTENT_SYNDICATION: "Content Syndication";
1026
+ readonly DISPLAY: "Display";
1027
+ readonly EMAIL: "Email";
1028
+ readonly LIVE_EVENT: "Live Event";
1029
+ readonly OUT_OF_HOME: "Out Of Home (OOH)";
1030
+ readonly PRINT: "Print";
1031
+ readonly SEARCH: "Search";
1032
+ readonly SOCIAL: "Social";
1033
+ readonly TELEMARKETING: "Telemarketing";
1034
+ readonly TV: "TV";
1035
+ readonly VIDEO: "Video";
1036
+ readonly VIRTUAL_EVENT: "Virtual Event";
1037
+ };
1038
+ export type Channel = (typeof Channel)[keyof typeof Channel];
1039
+ export declare const MarketingSource: {
1040
+ readonly MARKETING_ACTIVITY: "Marketing Activity";
1041
+ readonly NONE: "None";
1042
+ };
1043
+ export type MarketingSource =
1044
+ (typeof MarketingSource)[keyof typeof MarketingSource];
1045
+ export interface Marketing {
1046
+ CampaignName?: string | undefined;
1047
+ Source?: MarketingSource | undefined;
1048
+ UseCases?: string[] | undefined;
1049
+ Channels?: Channel[] | undefined;
1050
+ AwsFundingUsed?: AwsFundingUsed | undefined;
1051
+ }
1052
+ export declare const NationalSecurity: {
1053
+ readonly NO: "No";
1054
+ readonly YES: "Yes";
1055
+ };
1056
+ export type NationalSecurity =
1057
+ (typeof NationalSecurity)[keyof typeof NationalSecurity];
1058
+ export declare const OpportunityType: {
1059
+ readonly EXPANSION: "Expansion";
1060
+ readonly FLAT_RENEWAL: "Flat Renewal";
1061
+ readonly NET_NEW_BUSINESS: "Net New Business";
1062
+ };
1063
+ export type OpportunityType =
1064
+ (typeof OpportunityType)[keyof typeof OpportunityType];
1065
+ export declare const OpportunityOrigin: {
1066
+ readonly AWS_REFERRAL: "AWS Referral";
1067
+ readonly PARTNER_REFERRAL: "Partner Referral";
1068
+ };
1069
+ export type OpportunityOrigin =
1070
+ (typeof OpportunityOrigin)[keyof typeof OpportunityOrigin];
1071
+ export declare const PrimaryNeedFromAws: {
1072
+ readonly CO_SELL_ARCHITECTURAL_VALIDATION: "Co-Sell - Architectural Validation";
1073
+ readonly CO_SELL_BUSINESS_PRESENTATION: "Co-Sell - Business Presentation";
1074
+ readonly CO_SELL_COMPETITIVE_INFORMATION: "Co-Sell - Competitive Information";
1075
+ readonly CO_SELL_DEAL_SUPPORT: "Co-Sell - Deal Support";
1076
+ readonly CO_SELL_PRICING_ASSISTANCE: "Co-Sell - Pricing Assistance";
1077
+ readonly CO_SELL_SUPPORT_FOR_PUBLIC_TENDER_RFX: "Co-Sell - Support for Public Tender / RFx";
1078
+ readonly CO_SELL_TECHNICAL_CONSULTATION: "Co-Sell - Technical Consultation";
1079
+ readonly CO_SELL_TOTAL_COST_OF_OWNERSHIP_EVALUATION: "Co-Sell - Total Cost of Ownership Evaluation";
1080
+ };
1081
+ export type PrimaryNeedFromAws =
1082
+ (typeof PrimaryNeedFromAws)[keyof typeof PrimaryNeedFromAws];
1083
+ export declare const CompetitorName: {
1084
+ readonly AKAMAI: "Akamai";
1085
+ readonly ALICLOUD: "AliCloud";
1086
+ readonly CO_LOCATION: "Co-location";
1087
+ readonly GOOGLE_CLOUD_PLATFORM: "Google Cloud Platform";
1088
+ readonly IBM_SOFTLAYER: "IBM Softlayer";
1089
+ readonly MICROSOFT_AZURE: "Microsoft Azure";
1090
+ readonly NO_COMPETITION: "No Competition";
1091
+ readonly ON_PREM: "On-Prem";
1092
+ readonly ORACLE_CLOUD: "Oracle Cloud";
1093
+ readonly OTHER: "*Other";
1094
+ readonly OTHER_COST_OPTIMIZATION: "Other- Cost Optimization";
1095
+ };
1096
+ export type CompetitorName =
1097
+ (typeof CompetitorName)[keyof typeof CompetitorName];
1098
+ export declare const DeliveryModel: {
1099
+ readonly BYOL_OR_AMI: "BYOL or AMI";
1100
+ readonly MANAGED_SERVICES: "Managed Services";
1101
+ readonly OTHER: "Other";
1102
+ readonly PROFESSIONAL_SERVICES: "Professional Services";
1103
+ readonly RESELL: "Resell";
1104
+ readonly SAAS_OR_PAAS: "SaaS or PaaS";
1105
+ };
1106
+ export type DeliveryModel = (typeof DeliveryModel)[keyof typeof DeliveryModel];
1107
+ export declare const SalesActivity: {
1108
+ readonly AGREED_ON_SOLUTION_TO_BUSINESS_PROBLEM: "Agreed on solution to Business Problem";
1109
+ readonly COMPLETED_ACTION_PLAN: "Completed Action Plan";
1110
+ readonly CONDUCTED_POC_DEMO: "Conducted POC / Demo";
1111
+ readonly CUSTOMER_HAS_SHOWN_INTEREST: "Customer has shown interest in solution";
1112
+ readonly FINALIZED_DEPLOYMENT_NEEDS: "Finalized Deployment Need";
1113
+ readonly INITIALIZED_DISCUSSIONS_WITH_CUSTOMER: "Initialized discussions with customer";
1114
+ readonly IN_EVALUATION_PLANNING_STAGE: "In evaluation / planning stage";
1115
+ readonly SOW_SIGNED: "SOW Signed";
1116
+ };
1117
+ export type SalesActivity = (typeof SalesActivity)[keyof typeof SalesActivity];
1118
+ export interface Project {
1119
+ DeliveryModels?: DeliveryModel[] | undefined;
1120
+ ExpectedCustomerSpend?: ExpectedCustomerSpend[] | undefined;
1121
+ Title?: string | undefined;
1122
+ ApnPrograms?: string[] | undefined;
1123
+ CustomerBusinessProblem?: string | undefined;
1124
+ CustomerUseCase?: string | undefined;
1125
+ RelatedOpportunityIdentifier?: string | undefined;
1126
+ SalesActivities?: SalesActivity[] | undefined;
1127
+ CompetitorName?: CompetitorName | undefined;
1128
+ OtherCompetitorNames?: string | undefined;
1129
+ OtherSolutionDescription?: string | undefined;
1130
+ AdditionalComments?: string | undefined;
1131
+ }
1132
+ export declare const RevenueModel: {
1133
+ readonly CONTRACT: "Contract";
1134
+ readonly PAY_AS_YOU_GO: "Pay-as-you-go";
1135
+ readonly SUBSCRIPTION: "Subscription";
1136
+ };
1137
+ export type RevenueModel = (typeof RevenueModel)[keyof typeof RevenueModel];
1138
+ export interface MonetaryValue {
1139
+ Amount: string | undefined;
1140
+ CurrencyCode: CurrencyCode | undefined;
1141
+ }
1142
+ export interface SoftwareRevenue {
1143
+ DeliveryModel?: RevenueModel | undefined;
1144
+ Value?: MonetaryValue | undefined;
1145
+ EffectiveDate?: string | undefined;
1146
+ ExpirationDate?: string | undefined;
1147
+ }
1148
+ export interface CreateOpportunityRequest {
1149
+ Catalog: string | undefined;
1150
+ PrimaryNeedsFromAws?: PrimaryNeedFromAws[] | undefined;
1151
+ NationalSecurity?: NationalSecurity | undefined;
1152
+ PartnerOpportunityIdentifier?: string | undefined;
1153
+ Customer?: Customer | undefined;
1154
+ Project?: Project | undefined;
1155
+ OpportunityType?: OpportunityType | undefined;
1156
+ Marketing?: Marketing | undefined;
1157
+ SoftwareRevenue?: SoftwareRevenue | undefined;
1158
+ ClientToken?: string | undefined;
1159
+ LifeCycle?: LifeCycle | undefined;
1160
+ Origin?: OpportunityOrigin | undefined;
1161
+ OpportunityTeam?: Contact[] | undefined;
1162
+ }
1163
+ export interface CreateOpportunityResponse {
1164
+ Id: string | undefined;
1165
+ PartnerOpportunityIdentifier?: string | undefined;
1166
+ LastModifiedDate?: Date | undefined;
1167
+ }
1168
+ export interface DisassociateOpportunityRequest {
1169
+ Catalog: string | undefined;
1170
+ OpportunityIdentifier: string | undefined;
1171
+ RelatedEntityType: RelatedEntityType | undefined;
1172
+ RelatedEntityIdentifier: string | undefined;
1173
+ }
1174
+ export interface GetAwsOpportunitySummaryRequest {
1175
+ Catalog: string | undefined;
1176
+ RelatedOpportunityIdentifier: string | undefined;
1177
+ }
1178
+ export declare const InvolvementTypeChangeReason: {
1179
+ readonly CHANGE_IN_DEAL_INFORMATION: "Change in Deal Information";
1180
+ readonly CUSTOMER_REQUESTED: "Customer Requested";
1181
+ readonly EXPANSION_OPPORTUNITY: "Expansion Opportunity";
1182
+ readonly RISK_MITIGATION: "Risk Mitigation";
1183
+ readonly TECHNICAL_COMPLEXITY: "Technical Complexity";
1184
+ };
1185
+ export type InvolvementTypeChangeReason =
1186
+ (typeof InvolvementTypeChangeReason)[keyof typeof InvolvementTypeChangeReason];
1187
+ export interface GetAwsOpportunitySummaryResponse {
1188
+ Catalog: string | undefined;
1189
+ RelatedOpportunityId?: string | undefined;
1190
+ Origin?: OpportunityOrigin | undefined;
1191
+ InvolvementType?: SalesInvolvementType | undefined;
1192
+ Visibility?: Visibility | undefined;
1193
+ LifeCycle?: AwsOpportunityLifeCycle | undefined;
1194
+ OpportunityTeam?: AwsTeamMember[] | undefined;
1195
+ Insights?: AwsOpportunityInsights | undefined;
1196
+ InvolvementTypeChangeReason?: InvolvementTypeChangeReason | undefined;
1197
+ RelatedEntityIds?: AwsOpportunityRelatedEntities | undefined;
1198
+ Customer?: AwsOpportunityCustomer | undefined;
1199
+ Project?: AwsOpportunityProject | undefined;
1200
+ }
1201
+ export interface GetOpportunityRequest {
1202
+ Catalog: string | undefined;
1203
+ Identifier: string | undefined;
1204
+ }
1205
+ export interface RelatedEntityIdentifiers {
1206
+ AwsMarketplaceOffers?: string[] | undefined;
1207
+ Solutions?: string[] | undefined;
1208
+ AwsProducts?: string[] | undefined;
1209
+ }
1210
+ export interface GetOpportunityResponse {
1211
+ Catalog: string | undefined;
1212
+ PrimaryNeedsFromAws?: PrimaryNeedFromAws[] | undefined;
1213
+ NationalSecurity?: NationalSecurity | undefined;
1214
+ PartnerOpportunityIdentifier?: string | undefined;
1215
+ Customer?: Customer | undefined;
1216
+ Project?: Project | undefined;
1217
+ OpportunityType?: OpportunityType | undefined;
1218
+ Marketing?: Marketing | undefined;
1219
+ SoftwareRevenue?: SoftwareRevenue | undefined;
1220
+ Id: string | undefined;
1221
+ LastModifiedDate: Date | undefined;
1222
+ CreatedDate: Date | undefined;
1223
+ RelatedEntityIdentifiers: RelatedEntityIdentifiers | undefined;
1224
+ LifeCycle?: LifeCycle | undefined;
1225
+ OpportunityTeam?: Contact[] | undefined;
1226
+ }
1227
+ export interface LastModifiedDate {
1228
+ AfterLastModifiedDate?: Date | undefined;
1229
+ BeforeLastModifiedDate?: Date | undefined;
1230
+ }
1231
+ export declare const OpportunitySortName: {
1232
+ readonly CUSTOMER_COMPANY_NAME: "CustomerCompanyName";
1233
+ readonly IDENTIFIER: "Identifier";
1234
+ readonly LAST_MODIFIEDDATE: "LastModifiedDate";
1235
+ };
1236
+ export type OpportunitySortName =
1237
+ (typeof OpportunitySortName)[keyof typeof OpportunitySortName];
1238
+ export interface OpportunitySort {
1239
+ SortOrder: SortOrder | undefined;
1240
+ SortBy: OpportunitySortName | undefined;
1241
+ }
1242
+ export interface ListOpportunitiesRequest {
1243
+ Catalog: string | undefined;
1244
+ MaxResults?: number | undefined;
1245
+ NextToken?: string | undefined;
1246
+ Sort?: OpportunitySort | undefined;
1247
+ LastModifiedDate?: LastModifiedDate | undefined;
1248
+ Identifier?: string[] | undefined;
1249
+ LifeCycleStage?: Stage[] | undefined;
1250
+ LifeCycleReviewStatus?: ReviewStatus[] | undefined;
1251
+ CustomerCompanyName?: string[] | undefined;
1252
+ }
1253
+ export interface CustomerSummary {
1254
+ Account?: AccountSummary | undefined;
1255
+ }
1256
+ export interface LifeCycleSummary {
1257
+ Stage?: Stage | undefined;
1258
+ ClosedLostReason?: ClosedLostReason | undefined;
1259
+ NextSteps?: string | undefined;
1260
+ TargetCloseDate?: string | undefined;
1261
+ ReviewStatus?: ReviewStatus | undefined;
1262
+ ReviewComments?: string | undefined;
1263
+ ReviewStatusReason?: string | undefined;
1264
+ }
1265
+ export interface ProjectSummary {
1266
+ DeliveryModels?: DeliveryModel[] | undefined;
1267
+ ExpectedCustomerSpend?: ExpectedCustomerSpend[] | undefined;
1268
+ }
1269
+ export interface OpportunitySummary {
1270
+ Catalog: string | undefined;
1271
+ Id?: string | undefined;
1272
+ PartnerOpportunityIdentifier?: string | undefined;
1273
+ OpportunityType?: OpportunityType | undefined;
1274
+ LastModifiedDate?: Date | undefined;
1275
+ CreatedDate?: Date | undefined;
1276
+ LifeCycle?: LifeCycleSummary | undefined;
1277
+ Customer?: CustomerSummary | undefined;
1278
+ Project?: ProjectSummary | undefined;
1279
+ }
1280
+ export interface ListOpportunitiesResponse {
1281
+ OpportunitySummaries: OpportunitySummary[] | undefined;
1282
+ NextToken?: string | undefined;
1283
+ }
1284
+ export interface UpdateOpportunityRequest {
1285
+ Catalog: string | undefined;
1286
+ PrimaryNeedsFromAws?: PrimaryNeedFromAws[] | undefined;
1287
+ NationalSecurity?: NationalSecurity | undefined;
1288
+ PartnerOpportunityIdentifier?: string | undefined;
1289
+ Customer?: Customer | undefined;
1290
+ Project?: Project | undefined;
1291
+ OpportunityType?: OpportunityType | undefined;
1292
+ Marketing?: Marketing | undefined;
1293
+ SoftwareRevenue?: SoftwareRevenue | undefined;
1294
+ LastModifiedDate: Date | undefined;
1295
+ Identifier: string | undefined;
1296
+ LifeCycle?: LifeCycle | undefined;
1297
+ }
1298
+ export interface UpdateOpportunityResponse {
1299
+ Id: string | undefined;
1300
+ LastModifiedDate: Date | undefined;
1301
+ }
1302
+ export declare const SolutionSortName: {
1303
+ readonly CATEGORY: "Category";
1304
+ readonly CREATEDDATE: "CreatedDate";
1305
+ readonly IDENTIFIER: "Identifier";
1306
+ readonly NAME: "Name";
1307
+ readonly STATUS: "Status";
1308
+ };
1309
+ export type SolutionSortName =
1310
+ (typeof SolutionSortName)[keyof typeof SolutionSortName];
1311
+ export interface SolutionSort {
1312
+ SortOrder: SortOrder | undefined;
1313
+ SortBy: SolutionSortName | undefined;
1314
+ }
1315
+ export declare const SolutionStatus: {
1316
+ readonly ACTIVE: "Active";
1317
+ readonly DRAFT: "Draft";
1318
+ readonly INACTIVE: "Inactive";
1319
+ };
1320
+ export type SolutionStatus =
1321
+ (typeof SolutionStatus)[keyof typeof SolutionStatus];
1322
+ export interface ListSolutionsRequest {
1323
+ Catalog: string | undefined;
1324
+ MaxResults?: number | undefined;
1325
+ NextToken?: string | undefined;
1326
+ Sort?: SolutionSort | undefined;
1327
+ Status?: SolutionStatus[] | undefined;
1328
+ Identifier?: string[] | undefined;
1329
+ Category?: string[] | undefined;
1330
+ }
1331
+ export interface SolutionBase {
1332
+ Catalog: string | undefined;
1333
+ Id: string | undefined;
1334
+ Name: string | undefined;
1335
+ Status: SolutionStatus | undefined;
1336
+ Category: string | undefined;
1337
+ CreatedDate: Date | undefined;
1338
+ }
1339
+ export interface ListSolutionsResponse {
1340
+ SolutionSummaries: SolutionBase[] | undefined;
1341
+ NextToken?: string | undefined;
1342
+ }
1343
+ export declare const AddressFilterSensitiveLog: (obj: Address) => any;
1344
+ export declare const AccountFilterSensitiveLog: (obj: Account) => any;
1345
+ export declare const AccountReceiverFilterSensitiveLog: (
1346
+ obj: AccountReceiver
1347
+ ) => any;
1348
+ export declare const AddressSummaryFilterSensitiveLog: (
1349
+ obj: AddressSummary
1350
+ ) => any;
1351
+ export declare const AccountSummaryFilterSensitiveLog: (
1352
+ obj: AccountSummary
1353
+ ) => any;
1354
+ export declare const AssigneeContactFilterSensitiveLog: (
1355
+ obj: AssigneeContact
1356
+ ) => any;
1357
+ export declare const AssignOpportunityRequestFilterSensitiveLog: (
1358
+ obj: AssignOpportunityRequest
1359
+ ) => any;
1360
+ export declare const ContactFilterSensitiveLog: (obj: Contact) => any;
1361
+ export declare const AwsOpportunityCustomerFilterSensitiveLog: (
1362
+ obj: AwsOpportunityCustomer
1363
+ ) => any;
1364
+ export declare const AwsOpportunityLifeCycleFilterSensitiveLog: (
1365
+ obj: AwsOpportunityLifeCycle
1366
+ ) => any;
1367
+ export declare const AwsTeamMemberFilterSensitiveLog: (
1368
+ obj: AwsTeamMember
1369
+ ) => any;
1370
+ export declare const EngagementCustomerFilterSensitiveLog: (
1371
+ obj: EngagementCustomer
1372
+ ) => any;
1373
+ export declare const ProjectDetailsFilterSensitiveLog: (
1374
+ obj: ProjectDetails
1375
+ ) => any;
1376
+ export declare const SenderContactFilterSensitiveLog: (
1377
+ obj: SenderContact
1378
+ ) => any;
1379
+ export declare const OpportunityInvitationPayloadFilterSensitiveLog: (
1380
+ obj: OpportunityInvitationPayload
1381
+ ) => any;
1382
+ export declare const PayloadFilterSensitiveLog: (obj: Payload) => any;
1383
+ export declare const ReceiverFilterSensitiveLog: (obj: Receiver) => any;
1384
+ export declare const GetEngagementInvitationResponseFilterSensitiveLog: (
1385
+ obj: GetEngagementInvitationResponse
1386
+ ) => any;
1387
+ export declare const EngagementInvitationSummaryFilterSensitiveLog: (
1388
+ obj: EngagementInvitationSummary
1389
+ ) => any;
1390
+ export declare const ListEngagementInvitationsResponseFilterSensitiveLog: (
1391
+ obj: ListEngagementInvitationsResponse
1392
+ ) => any;
1393
+ export declare const CustomerFilterSensitiveLog: (obj: Customer) => any;
1394
+ export declare const LifeCycleFilterSensitiveLog: (obj: LifeCycle) => any;
1395
+ export declare const ProjectFilterSensitiveLog: (obj: Project) => any;
1396
+ export declare const CreateOpportunityRequestFilterSensitiveLog: (
1397
+ obj: CreateOpportunityRequest
1398
+ ) => any;
1399
+ export declare const GetAwsOpportunitySummaryResponseFilterSensitiveLog: (
1400
+ obj: GetAwsOpportunitySummaryResponse
1401
+ ) => any;
1402
+ export declare const GetOpportunityResponseFilterSensitiveLog: (
1403
+ obj: GetOpportunityResponse
1404
+ ) => any;
1405
+ export declare const CustomerSummaryFilterSensitiveLog: (
1406
+ obj: CustomerSummary
1407
+ ) => any;
1408
+ export declare const LifeCycleSummaryFilterSensitiveLog: (
1409
+ obj: LifeCycleSummary
1410
+ ) => any;
1411
+ export declare const OpportunitySummaryFilterSensitiveLog: (
1412
+ obj: OpportunitySummary
1413
+ ) => any;
1414
+ export declare const ListOpportunitiesResponseFilterSensitiveLog: (
1415
+ obj: ListOpportunitiesResponse
1416
+ ) => any;
1417
+ export declare const UpdateOpportunityRequestFilterSensitiveLog: (
1418
+ obj: UpdateOpportunityRequest
1419
+ ) => any;