@aws-sdk/client-marketplace-discovery 3.1027.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 (122) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +244 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +463 -0
  7. package/dist-cjs/models/MarketplaceDiscoveryServiceException.js +12 -0
  8. package/dist-cjs/models/errors.js +71 -0
  9. package/dist-cjs/runtimeConfig.browser.js +38 -0
  10. package/dist-cjs/runtimeConfig.js +54 -0
  11. package/dist-cjs/runtimeConfig.native.js +15 -0
  12. package/dist-cjs/runtimeConfig.shared.js +43 -0
  13. package/dist-cjs/schemas/schemas_0.js +951 -0
  14. package/dist-es/MarketplaceDiscovery.js +37 -0
  15. package/dist-es/MarketplaceDiscoveryClient.js +50 -0
  16. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  17. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  18. package/dist-es/commands/GetListingCommand.js +16 -0
  19. package/dist-es/commands/GetOfferCommand.js +16 -0
  20. package/dist-es/commands/GetOfferSetCommand.js +16 -0
  21. package/dist-es/commands/GetOfferTermsCommand.js +16 -0
  22. package/dist-es/commands/GetProductCommand.js +16 -0
  23. package/dist-es/commands/ListFulfillmentOptionsCommand.js +16 -0
  24. package/dist-es/commands/ListPurchaseOptionsCommand.js +16 -0
  25. package/dist-es/commands/SearchFacetsCommand.js +16 -0
  26. package/dist-es/commands/SearchListingsCommand.js +16 -0
  27. package/dist-es/commands/index.js +9 -0
  28. package/dist-es/endpoint/EndpointParameters.js +11 -0
  29. package/dist-es/endpoint/endpointResolver.js +14 -0
  30. package/dist-es/endpoint/ruleset.js +4 -0
  31. package/dist-es/extensionConfiguration.js +1 -0
  32. package/dist-es/index.js +9 -0
  33. package/dist-es/models/MarketplaceDiscoveryServiceException.js +8 -0
  34. package/dist-es/models/enums.js +146 -0
  35. package/dist-es/models/errors.js +63 -0
  36. package/dist-es/models/models_0.js +1 -0
  37. package/dist-es/pagination/GetOfferTermsPaginator.js +4 -0
  38. package/dist-es/pagination/Interfaces.js +1 -0
  39. package/dist-es/pagination/ListFulfillmentOptionsPaginator.js +4 -0
  40. package/dist-es/pagination/ListPurchaseOptionsPaginator.js +4 -0
  41. package/dist-es/pagination/SearchFacetsPaginator.js +4 -0
  42. package/dist-es/pagination/SearchListingsPaginator.js +4 -0
  43. package/dist-es/pagination/index.js +6 -0
  44. package/dist-es/runtimeConfig.browser.js +33 -0
  45. package/dist-es/runtimeConfig.js +49 -0
  46. package/dist-es/runtimeConfig.native.js +11 -0
  47. package/dist-es/runtimeConfig.shared.js +39 -0
  48. package/dist-es/runtimeExtensions.js +9 -0
  49. package/dist-es/schemas/schemas_0.js +946 -0
  50. package/dist-types/MarketplaceDiscovery.d.ts +111 -0
  51. package/dist-types/MarketplaceDiscoveryClient.d.ts +196 -0
  52. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  53. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  54. package/dist-types/commands/GetListingCommand.d.ts +579 -0
  55. package/dist-types/commands/GetOfferCommand.d.ts +314 -0
  56. package/dist-types/commands/GetOfferSetCommand.d.ts +192 -0
  57. package/dist-types/commands/GetOfferTermsCommand.d.ts +690 -0
  58. package/dist-types/commands/GetProductCommand.d.ts +379 -0
  59. package/dist-types/commands/ListFulfillmentOptionsCommand.d.ts +668 -0
  60. package/dist-types/commands/ListPurchaseOptionsCommand.d.ts +285 -0
  61. package/dist-types/commands/SearchFacetsCommand.d.ts +241 -0
  62. package/dist-types/commands/SearchListingsCommand.d.ts +263 -0
  63. package/dist-types/commands/index.d.ts +9 -0
  64. package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
  65. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  66. package/dist-types/endpoint/ruleset.d.ts +2 -0
  67. package/dist-types/extensionConfiguration.d.ts +9 -0
  68. package/dist-types/index.d.ts +17 -0
  69. package/dist-types/models/MarketplaceDiscoveryServiceException.d.ts +14 -0
  70. package/dist-types/models/enums.d.ts +338 -0
  71. package/dist-types/models/errors.d.ts +68 -0
  72. package/dist-types/models/models_0.d.ts +2881 -0
  73. package/dist-types/pagination/GetOfferTermsPaginator.d.ts +7 -0
  74. package/dist-types/pagination/Interfaces.d.ts +8 -0
  75. package/dist-types/pagination/ListFulfillmentOptionsPaginator.d.ts +7 -0
  76. package/dist-types/pagination/ListPurchaseOptionsPaginator.d.ts +7 -0
  77. package/dist-types/pagination/SearchFacetsPaginator.d.ts +7 -0
  78. package/dist-types/pagination/SearchListingsPaginator.d.ts +7 -0
  79. package/dist-types/pagination/index.d.ts +6 -0
  80. package/dist-types/runtimeConfig.browser.d.ts +55 -0
  81. package/dist-types/runtimeConfig.d.ts +55 -0
  82. package/dist-types/runtimeConfig.native.d.ts +54 -0
  83. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  84. package/dist-types/runtimeExtensions.d.ts +17 -0
  85. package/dist-types/schemas/schemas_0.d.ts +114 -0
  86. package/dist-types/ts3.4/MarketplaceDiscovery.d.ts +202 -0
  87. package/dist-types/ts3.4/MarketplaceDiscoveryClient.d.ts +175 -0
  88. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  89. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  90. package/dist-types/ts3.4/commands/GetListingCommand.d.ts +47 -0
  91. package/dist-types/ts3.4/commands/GetOfferCommand.d.ts +47 -0
  92. package/dist-types/ts3.4/commands/GetOfferSetCommand.d.ts +47 -0
  93. package/dist-types/ts3.4/commands/GetOfferTermsCommand.d.ts +47 -0
  94. package/dist-types/ts3.4/commands/GetProductCommand.d.ts +47 -0
  95. package/dist-types/ts3.4/commands/ListFulfillmentOptionsCommand.d.ts +51 -0
  96. package/dist-types/ts3.4/commands/ListPurchaseOptionsCommand.d.ts +51 -0
  97. package/dist-types/ts3.4/commands/SearchFacetsCommand.d.ts +47 -0
  98. package/dist-types/ts3.4/commands/SearchListingsCommand.d.ts +47 -0
  99. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  100. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  101. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  102. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  103. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  104. package/dist-types/ts3.4/index.d.ts +12 -0
  105. package/dist-types/ts3.4/models/MarketplaceDiscoveryServiceException.d.ts +9 -0
  106. package/dist-types/ts3.4/models/enums.d.ts +191 -0
  107. package/dist-types/ts3.4/models/errors.d.ts +39 -0
  108. package/dist-types/ts3.4/models/models_0.d.ts +1048 -0
  109. package/dist-types/ts3.4/pagination/GetOfferTermsPaginator.d.ts +11 -0
  110. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  111. package/dist-types/ts3.4/pagination/ListFulfillmentOptionsPaginator.d.ts +11 -0
  112. package/dist-types/ts3.4/pagination/ListPurchaseOptionsPaginator.d.ts +11 -0
  113. package/dist-types/ts3.4/pagination/SearchFacetsPaginator.d.ts +11 -0
  114. package/dist-types/ts3.4/pagination/SearchListingsPaginator.d.ts +11 -0
  115. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  116. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +102 -0
  117. package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
  118. package/dist-types/ts3.4/runtimeConfig.native.d.ts +106 -0
  119. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +32 -0
  120. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  121. package/dist-types/ts3.4/schemas/schemas_0.d.ts +114 -0
  122. package/package.json +100 -0
@@ -0,0 +1,579 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { MarketplaceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MarketplaceDiscoveryClient";
4
+ import type { GetListingInput, GetListingOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetListingCommand}.
14
+ */
15
+ export interface GetListingCommandInput extends GetListingInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetListingCommand}.
21
+ */
22
+ export interface GetListingCommandOutput extends GetListingOutput, __MetadataBearer {
23
+ }
24
+ declare const GetListingCommand_base: {
25
+ new (input: GetListingCommandInput): import("@smithy/smithy-client").CommandImpl<GetListingCommandInput, GetListingCommandOutput, MarketplaceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetListingCommandInput): import("@smithy/smithy-client").CommandImpl<GetListingCommandInput, GetListingCommandOutput, MarketplaceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Provides details about a listing, such as descriptions, badges, categories, pricing model summaries, reviews, and associated products and offers.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { MarketplaceDiscoveryClient, GetListingCommand } from "@aws-sdk/client-marketplace-discovery"; // ES Modules import
35
+ * // const { MarketplaceDiscoveryClient, GetListingCommand } = require("@aws-sdk/client-marketplace-discovery"); // CommonJS import
36
+ * // import type { MarketplaceDiscoveryClientConfig } from "@aws-sdk/client-marketplace-discovery";
37
+ * const config = {}; // type is MarketplaceDiscoveryClientConfig
38
+ * const client = new MarketplaceDiscoveryClient(config);
39
+ * const input = { // GetListingInput
40
+ * listingId: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new GetListingCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // GetListingOutput
45
+ * // associatedEntities: [ // ListingAssociatedEntityList // required
46
+ * // { // ListingAssociatedEntity
47
+ * // product: { // ProductInformation
48
+ * // productId: "STRING_VALUE", // required
49
+ * // productName: "STRING_VALUE", // required
50
+ * // manufacturer: { // SellerInformation
51
+ * // sellerProfileId: "STRING_VALUE", // required
52
+ * // displayName: "STRING_VALUE", // required
53
+ * // },
54
+ * // },
55
+ * // offer: { // OfferInformation
56
+ * // offerId: "STRING_VALUE", // required
57
+ * // offerName: "STRING_VALUE",
58
+ * // sellerOfRecord: {
59
+ * // sellerProfileId: "STRING_VALUE", // required
60
+ * // displayName: "STRING_VALUE", // required
61
+ * // },
62
+ * // },
63
+ * // },
64
+ * // ],
65
+ * // badges: [ // ListingBadgeList // required
66
+ * // { // ListingBadge
67
+ * // displayName: "STRING_VALUE", // required
68
+ * // badgeType: "AWS_FREE_TIER" || "FREE_TRIAL" || "DEPLOYED_ON_AWS" || "QUICK_LAUNCH" || "MULTI_PRODUCT", // required
69
+ * // },
70
+ * // ],
71
+ * // catalog: "STRING_VALUE", // required
72
+ * // categories: [ // CategoryList // required
73
+ * // { // Category
74
+ * // categoryId: "STRING_VALUE", // required
75
+ * // displayName: "STRING_VALUE", // required
76
+ * // },
77
+ * // ],
78
+ * // fulfillmentOptionSummaries: [ // FulfillmentOptionSummaryList // required
79
+ * // { // FulfillmentOptionSummary
80
+ * // fulfillmentOptionType: "AMAZON_MACHINE_IMAGE" || "API" || "CLOUDFORMATION_TEMPLATE" || "CONTAINER" || "HELM" || "EKS_ADD_ON" || "EC2_IMAGE_BUILDER_COMPONENT" || "DATA_EXCHANGE" || "PROFESSIONAL_SERVICES" || "SAAS" || "SAGEMAKER_ALGORITHM" || "SAGEMAKER_MODEL", // required
81
+ * // displayName: "STRING_VALUE", // required
82
+ * // },
83
+ * // ],
84
+ * // highlights: [ // HighlightList // required
85
+ * // "STRING_VALUE",
86
+ * // ],
87
+ * // integrationGuide: "STRING_VALUE",
88
+ * // listingId: "STRING_VALUE", // required
89
+ * // listingName: "STRING_VALUE", // required
90
+ * // logoThumbnailUrl: "STRING_VALUE", // required
91
+ * // longDescription: "STRING_VALUE", // required
92
+ * // pricingModels: [ // PricingModelList // required
93
+ * // { // PricingModel
94
+ * // pricingModelType: "USAGE" || "CONTRACT" || "BYOL" || "FREE", // required
95
+ * // displayName: "STRING_VALUE", // required
96
+ * // },
97
+ * // ],
98
+ * // pricingUnits: [ // PricingUnitList // required
99
+ * // { // PricingUnit
100
+ * // pricingUnitType: "USERS" || "HOSTS" || "BANDWIDTH" || "DATA" || "TIERS" || "REQUESTS" || "UNITS", // required
101
+ * // displayName: "STRING_VALUE", // required
102
+ * // },
103
+ * // ],
104
+ * // promotionalMedia: [ // PromotionalMediaList // required
105
+ * // { // PromotionalMedia Union: only one key present
106
+ * // embeddedImage: { // PromotionalEmbeddedImage
107
+ * // title: "STRING_VALUE", // required
108
+ * // url: "STRING_VALUE", // required
109
+ * // description: "STRING_VALUE",
110
+ * // },
111
+ * // embeddedVideo: { // PromotionalEmbeddedVideo
112
+ * // title: "STRING_VALUE", // required
113
+ * // url: "STRING_VALUE", // required
114
+ * // preview: "STRING_VALUE", // required
115
+ * // thumbnail: "STRING_VALUE", // required
116
+ * // description: "STRING_VALUE",
117
+ * // },
118
+ * // },
119
+ * // ],
120
+ * // publisher: {
121
+ * // sellerProfileId: "STRING_VALUE", // required
122
+ * // displayName: "STRING_VALUE", // required
123
+ * // },
124
+ * // resources: [ // ResourceList // required
125
+ * // { // Resource
126
+ * // resourceType: "MANUFACTURER_SUPPORT" || "MANUFACTURER_INSTRUCTIONS", // required
127
+ * // contentType: "EMAIL" || "PHONE_NUMBER" || "LINK" || "OTHER", // required
128
+ * // value: "STRING_VALUE", // required
129
+ * // displayName: "STRING_VALUE",
130
+ * // },
131
+ * // ],
132
+ * // reviewSummary: { // ReviewSummary
133
+ * // reviewSourceSummaries: [ // ReviewSourceSummaryList // required
134
+ * // { // ReviewSourceSummary
135
+ * // sourceName: "STRING_VALUE", // required
136
+ * // sourceId: "AWS_MARKETPLACE", // required
137
+ * // sourceUrl: "STRING_VALUE",
138
+ * // averageRating: "STRING_VALUE", // required
139
+ * // totalReviews: Number("long"), // required
140
+ * // },
141
+ * // ],
142
+ * // },
143
+ * // sellerEngagements: [ // SellerEngagementList // required
144
+ * // { // SellerEngagement
145
+ * // engagementType: "REQUEST_FOR_PRIVATE_OFFER" || "REQUEST_FOR_DEMO", // required
146
+ * // contentType: "LINK", // required
147
+ * // value: "STRING_VALUE", // required
148
+ * // },
149
+ * // ],
150
+ * // shortDescription: "STRING_VALUE", // required
151
+ * // useCases: [ // UseCaseList // required
152
+ * // { // UseCaseEntry
153
+ * // useCase: { // UseCase
154
+ * // description: "STRING_VALUE", // required
155
+ * // displayName: "STRING_VALUE", // required
156
+ * // value: "STRING_VALUE", // required
157
+ * // },
158
+ * // },
159
+ * // ],
160
+ * // };
161
+ *
162
+ * ```
163
+ *
164
+ * @param GetListingCommandInput - {@link GetListingCommandInput}
165
+ * @returns {@link GetListingCommandOutput}
166
+ * @see {@link GetListingCommandInput} for command's `input` shape.
167
+ * @see {@link GetListingCommandOutput} for command's `response` shape.
168
+ * @see {@link MarketplaceDiscoveryClientResolvedConfig | config} for MarketplaceDiscoveryClient's `config` shape.
169
+ *
170
+ * @throws {@link ResourceNotFoundException} (client fault)
171
+ * <p>The specified resource doesn't exist.</p>
172
+ *
173
+ * @throws {@link AccessDeniedException} (client fault)
174
+ * <p>You don't have sufficient access to perform this action.</p>
175
+ *
176
+ * @throws {@link InternalServerException} (server fault)
177
+ * <p>Unexpected error during processing of the request.</p>
178
+ *
179
+ * @throws {@link ThrottlingException} (client fault)
180
+ * <p>The request was denied due to request throttling.</p>
181
+ *
182
+ * @throws {@link ValidationException} (client fault)
183
+ * <p>The input fails to satisfy the constraints specified by the service.</p>
184
+ *
185
+ * @throws {@link MarketplaceDiscoveryServiceException}
186
+ * <p>Base exception class for all service exceptions from MarketplaceDiscovery service.</p>
187
+ *
188
+ *
189
+ * @example GetListing for SaaS listing
190
+ * ```javascript
191
+ * //
192
+ * const input = {
193
+ * listingId: "prodview-sampleSaasId"
194
+ * };
195
+ * const command = new GetListingCommand(input);
196
+ * const response = await client.send(command);
197
+ * /* response is
198
+ * {
199
+ * associatedEntities: [
200
+ * {
201
+ * product: {
202
+ * manufacturer: {
203
+ * displayName: "sample SaaS seller",
204
+ * sellerProfileId: "seller-sampleSaasId"
205
+ * },
206
+ * productId: "prod-sampleSaasId",
207
+ * productName: "sample SaaS product"
208
+ * }
209
+ * }
210
+ * ],
211
+ * badges: [],
212
+ * catalog: "AWSMarketplace",
213
+ * categories: [
214
+ * {
215
+ * categoryId: "developer-tools",
216
+ * displayName: "Developer Tools"
217
+ * },
218
+ * {
219
+ * categoryId: "ide",
220
+ * displayName: "IDE"
221
+ * }
222
+ * ],
223
+ * fulfillmentOptionSummaries: [
224
+ * {
225
+ * displayName: "SaaS",
226
+ * fulfillmentOptionType: "SAAS"
227
+ * }
228
+ * ],
229
+ * highlights: [
230
+ * "Automated dev environments",
231
+ * "Works with any Git repository",
232
+ * "Secure and compliant"
233
+ * ],
234
+ * listingId: "prodview-sampleSaasId",
235
+ * listingName: "sample SaaS listing",
236
+ * logoThumbnailUrl: "https://example.com/logos/sample-saas-logo.png",
237
+ * longDescription: "A sample SaaS product that provides automated, ready-to-code development environments in the cloud.",
238
+ * pricingModels: [
239
+ * {
240
+ * displayName: "Contract",
241
+ * pricingModelType: "CONTRACT"
242
+ * }
243
+ * ],
244
+ * pricingUnits: [
245
+ * {
246
+ * displayName: "Users",
247
+ * pricingUnitType: "USERS"
248
+ * }
249
+ * ],
250
+ * promotionalMedia: [
251
+ * {
252
+ * embeddedImage: {
253
+ * description: "The sample product workspace dashboard",
254
+ * title: "Sample Dashboard",
255
+ * url: "https://example.com/screenshots/sample-dashboard.png"
256
+ * }
257
+ * }
258
+ * ],
259
+ * publisher: {
260
+ * displayName: "sample SaaS seller",
261
+ * sellerProfileId: "seller-sampleSaasId"
262
+ * },
263
+ * resources: [
264
+ * {
265
+ * contentType: "LINK",
266
+ * displayName: "Request a Demo",
267
+ * resourceType: "MANUFACTURER_INSTRUCTIONS",
268
+ * value: "https://example.com/demo"
269
+ * }
270
+ * ],
271
+ * reviewSummary: {
272
+ * reviewSourceSummaries: [
273
+ * {
274
+ * averageRating: "4.5",
275
+ * sourceId: "AWS_MARKETPLACE",
276
+ * sourceName: "AWS Marketplace",
277
+ * sourceUrl: "https://aws.amazon.com/marketplace/reviews/prodview-sampleSaasId",
278
+ * totalReviews: 128
279
+ * }
280
+ * ]
281
+ * },
282
+ * sellerEngagements: [
283
+ * {
284
+ * contentType: "LINK",
285
+ * engagementType: "REQUEST_FOR_DEMO",
286
+ * value: "https://aws.amazon.com/marketplace/customer-connect/demo/prodview-sampleSaasId"
287
+ * },
288
+ * {
289
+ * contentType: "LINK",
290
+ * engagementType: "REQUEST_FOR_PRIVATE_OFFER",
291
+ * value: "https://aws.amazon.com/marketplace/customer-connect/private-offer/prodview-sampleSaasId"
292
+ * }
293
+ * ],
294
+ * shortDescription: "A sample SaaS product for cloud development environments.",
295
+ * useCases: [
296
+ * {
297
+ * useCase: {
298
+ * description: "Advanced contextual analysis for targeted advertising campaigns",
299
+ * displayName: "Contextual Analysis",
300
+ * value: "CONTEXTUAL_ANALYSIS"
301
+ * }
302
+ * }
303
+ * ]
304
+ * }
305
+ * *\/
306
+ * ```
307
+ *
308
+ * @example GetListing for AMI listing with video
309
+ * ```javascript
310
+ * //
311
+ * const input = {
312
+ * listingId: "prodview-sampleAmiId"
313
+ * };
314
+ * const command = new GetListingCommand(input);
315
+ * const response = await client.send(command);
316
+ * /* response is
317
+ * {
318
+ * associatedEntities: [
319
+ * {
320
+ * offer: {
321
+ * offerId: "offer-sampleAmiId",
322
+ * offerName: "sample AMI offer",
323
+ * sellerOfRecord: {
324
+ * displayName: "sample AMI seller",
325
+ * sellerProfileId: "seller-sampleAmiId"
326
+ * }
327
+ * },
328
+ * product: {
329
+ * manufacturer: {
330
+ * displayName: "sample AMI seller",
331
+ * sellerProfileId: "seller-sampleAmiId"
332
+ * },
333
+ * productId: "prod-sampleAmiId",
334
+ * productName: "sample AMI product"
335
+ * }
336
+ * }
337
+ * ],
338
+ * badges: [
339
+ * {
340
+ * badgeType: "DEPLOYED_ON_AWS",
341
+ * displayName: "Deployed on AWS"
342
+ * },
343
+ * {
344
+ * badgeType: "QUICK_LAUNCH",
345
+ * displayName: "Quick Launch"
346
+ * }
347
+ * ],
348
+ * catalog: "AWSMarketplace",
349
+ * categories: [
350
+ * {
351
+ * categoryId: "infrastructure",
352
+ * displayName: "Infrastructure Software"
353
+ * },
354
+ * {
355
+ * categoryId: "load-balancing",
356
+ * displayName: "Load Balancing"
357
+ * }
358
+ * ],
359
+ * fulfillmentOptionSummaries: [
360
+ * {
361
+ * displayName: "SaaS",
362
+ * fulfillmentOptionType: "SAAS"
363
+ * }
364
+ * ],
365
+ * highlights: [
366
+ * "Advanced load balancing",
367
+ * "API gateway capabilities",
368
+ * "High availability",
369
+ * "Real-time monitoring"
370
+ * ],
371
+ * listingId: "prodview-sampleAmiId",
372
+ * listingName: "sample AMI listing",
373
+ * logoThumbnailUrl: "https://example.com/logos/sample-ami-logo.png",
374
+ * longDescription: "A sample AMI product that provides load balancing, content caching, and API gateway capabilities optimized for cloud-native architectures.",
375
+ * pricingModels: [
376
+ * {
377
+ * displayName: "Usage",
378
+ * pricingModelType: "USAGE"
379
+ * }
380
+ * ],
381
+ * pricingUnits: [
382
+ * {
383
+ * displayName: "Hosts",
384
+ * pricingUnitType: "HOSTS"
385
+ * }
386
+ * ],
387
+ * promotionalMedia: [
388
+ * {
389
+ * embeddedVideo: {
390
+ * description: "Learn about sample AMI product features",
391
+ * preview: "https://example.com/videos/sample-cover.png",
392
+ * thumbnail: "https://example.com/videos/sample-thumb.png",
393
+ * title: "Sample AMI Product Overview",
394
+ * url: "https://example.com/videos/sample-overview.mp4"
395
+ * }
396
+ * }
397
+ * ],
398
+ * publisher: {
399
+ * displayName: "sample AMI seller",
400
+ * sellerProfileId: "seller-sampleAmiId"
401
+ * },
402
+ * resources: [
403
+ * {
404
+ * contentType: "LINK",
405
+ * displayName: "Request Demo",
406
+ * resourceType: "MANUFACTURER_INSTRUCTIONS",
407
+ * value: "https://example.com/request-demo"
408
+ * },
409
+ * {
410
+ * contentType: "LINK",
411
+ * displayName: "Documentation",
412
+ * resourceType: "MANUFACTURER_SUPPORT",
413
+ * value: "https://example.com/docs"
414
+ * }
415
+ * ],
416
+ * reviewSummary: {
417
+ * reviewSourceSummaries: [
418
+ * {
419
+ * averageRating: "4.8",
420
+ * sourceId: "AWS_MARKETPLACE",
421
+ * sourceName: "AWS Marketplace",
422
+ * sourceUrl: "https://aws.amazon.com/marketplace/reviews/prodview-sampleAmiId",
423
+ * totalReviews: 542
424
+ * }
425
+ * ]
426
+ * },
427
+ * sellerEngagements: [
428
+ * {
429
+ * contentType: "LINK",
430
+ * engagementType: "REQUEST_FOR_DEMO",
431
+ * value: "https://aws.amazon.com/marketplace/customer-connect/demo/prodview-sampleAmiId"
432
+ * },
433
+ * {
434
+ * contentType: "LINK",
435
+ * engagementType: "REQUEST_FOR_PRIVATE_OFFER",
436
+ * value: "https://aws.amazon.com/marketplace/customer-connect/private-offer/prodview-sampleAmiId"
437
+ * }
438
+ * ],
439
+ * shortDescription: "A sample high-performance load balancer and web server.",
440
+ * useCases: [
441
+ * {
442
+ * useCase: {
443
+ * description: "Advanced contextual analysis for targeted advertising campaigns",
444
+ * displayName: "Contextual Analysis",
445
+ * value: "CONTEXTUAL_ANALYSIS"
446
+ * }
447
+ * }
448
+ * ]
449
+ * }
450
+ * *\/
451
+ * ```
452
+ *
453
+ * @example GetListing for multi-product listing
454
+ * ```javascript
455
+ * //
456
+ * const input = {
457
+ * listingId: "prodview-sampleMultiProductId"
458
+ * };
459
+ * const command = new GetListingCommand(input);
460
+ * const response = await client.send(command);
461
+ * /* response is
462
+ * {
463
+ * associatedEntities: [
464
+ * {
465
+ * product: {
466
+ * manufacturer: {
467
+ * displayName: "sample multi-product seller",
468
+ * sellerProfileId: "seller-sampleMultiProductId"
469
+ * },
470
+ * productId: "prod-sampleMultiProduct1Id",
471
+ * productName: "sample multi-product 1"
472
+ * }
473
+ * },
474
+ * {
475
+ * product: {
476
+ * manufacturer: {
477
+ * displayName: "sample multi-product seller 2",
478
+ * sellerProfileId: "seller-sampleMultiProduct2Id"
479
+ * },
480
+ * productId: "prod-sampleMultiProduct2Id",
481
+ * productName: "sample multi-product 2"
482
+ * }
483
+ * }
484
+ * ],
485
+ * badges: [
486
+ * {
487
+ * badgeType: "DEPLOYED_ON_AWS",
488
+ * displayName: "Deployed on AWS"
489
+ * },
490
+ * {
491
+ * badgeType: "MULTI_PRODUCT",
492
+ * displayName: "Multi-product"
493
+ * }
494
+ * ],
495
+ * catalog: "AWSMarketplace",
496
+ * categories: [],
497
+ * fulfillmentOptionSummaries: [
498
+ * {
499
+ * displayName: "SaaS",
500
+ * fulfillmentOptionType: "SAAS"
501
+ * }
502
+ * ],
503
+ * highlights: [],
504
+ * integrationGuide: "To add the remote Box MCP server in Amazon Quick Suite, follow these steps: In the Amazon Quick Suite console, choose Integrations and create new integration by choosing Model Content Protocol.",
505
+ * listingId: "prodview-sampleMultiProductId",
506
+ * listingName: "sample multi-product listing",
507
+ * logoThumbnailUrl: "https://example.com/logos/sample-multi-product-logo.png",
508
+ * longDescription: "A sample multi-product listing that connects content management with a unified AI platform. Users can securely search, analyze, and extract valuable insights from their files.",
509
+ * pricingModels: [
510
+ * {
511
+ * displayName: "Free",
512
+ * pricingModelType: "FREE"
513
+ * }
514
+ * ],
515
+ * pricingUnits: [],
516
+ * promotionalMedia: [],
517
+ * publisher: {
518
+ * displayName: "sample multi-product seller",
519
+ * sellerProfileId: "seller-sampleMultiProductId"
520
+ * },
521
+ * resources: [
522
+ * {
523
+ * contentType: "LINK",
524
+ * displayName: "Developer Documentation",
525
+ * resourceType: "MANUFACTURER_INSTRUCTIONS",
526
+ * value: "https://developer.box.com/guides/box-mcp/remote/#amazon-quick-suite"
527
+ * }
528
+ * ],
529
+ * reviewSummary: {
530
+ * reviewSourceSummaries: []
531
+ * },
532
+ * sellerEngagements: [
533
+ * {
534
+ * contentType: "LINK",
535
+ * engagementType: "REQUEST_FOR_DEMO",
536
+ * value: "https://aws.amazon.com/marketplace/customer-connect/demo/prodview-sampleMultiProductId"
537
+ * },
538
+ * {
539
+ * contentType: "LINK",
540
+ * engagementType: "REQUEST_FOR_PRIVATE_OFFER",
541
+ * value: "https://aws.amazon.com/marketplace/customer-connect/private-offer/prodview-sampleMultiProductId"
542
+ * }
543
+ * ],
544
+ * shortDescription: "A sample multi-product listing that delivers a unified experience with AI.",
545
+ * useCases: [
546
+ * {
547
+ * useCase: {
548
+ * description: "This integration allows enterprises to securely access and interact with content in Box directly from the Amazon Quick Suite chat experience.",
549
+ * displayName: "Content Management System",
550
+ * value: "content_management_system"
551
+ * }
552
+ * },
553
+ * {
554
+ * useCase: {
555
+ * description: "Build automated workflows and design custom AI agents for context-aware document processing.",
556
+ * displayName: "Intelligent Document Processing",
557
+ * value: "intelligent_document_processing"
558
+ * }
559
+ * }
560
+ * ]
561
+ * }
562
+ * *\/
563
+ * ```
564
+ *
565
+ * @public
566
+ */
567
+ export declare class GetListingCommand extends GetListingCommand_base {
568
+ /** @internal type navigation helper, not in runtime. */
569
+ protected static __types: {
570
+ api: {
571
+ input: GetListingInput;
572
+ output: GetListingOutput;
573
+ };
574
+ sdk: {
575
+ input: GetListingCommandInput;
576
+ output: GetListingCommandOutput;
577
+ };
578
+ };
579
+ }