@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,379 @@
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 { GetProductInput, GetProductOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetProductCommand}.
14
+ */
15
+ export interface GetProductCommandInput extends GetProductInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetProductCommand}.
21
+ */
22
+ export interface GetProductCommandOutput extends GetProductOutput, __MetadataBearer {
23
+ }
24
+ declare const GetProductCommand_base: {
25
+ new (input: GetProductCommandInput): import("@smithy/smithy-client").CommandImpl<GetProductCommandInput, GetProductCommandOutput, MarketplaceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetProductCommandInput): import("@smithy/smithy-client").CommandImpl<GetProductCommandInput, GetProductCommandOutput, MarketplaceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Provides details about a product, such as descriptions, highlights, categories, fulfillment option summaries, promotional media, and seller engagement options.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { MarketplaceDiscoveryClient, GetProductCommand } from "@aws-sdk/client-marketplace-discovery"; // ES Modules import
35
+ * // const { MarketplaceDiscoveryClient, GetProductCommand } = 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 = { // GetProductInput
40
+ * productId: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new GetProductCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // GetProductOutput
45
+ * // productId: "STRING_VALUE", // required
46
+ * // catalog: "STRING_VALUE", // required
47
+ * // productName: "STRING_VALUE", // required
48
+ * // deployedOnAws: "DEPLOYED" || "NOT_DEPLOYED" || "NOT_APPLICABLE", // required
49
+ * // shortDescription: "STRING_VALUE", // required
50
+ * // longDescription: "STRING_VALUE", // required
51
+ * // manufacturer: { // SellerInformation
52
+ * // sellerProfileId: "STRING_VALUE", // required
53
+ * // displayName: "STRING_VALUE", // required
54
+ * // },
55
+ * // logoThumbnailUrl: "STRING_VALUE", // required
56
+ * // fulfillmentOptionSummaries: [ // FulfillmentOptionSummaryList // required
57
+ * // { // FulfillmentOptionSummary
58
+ * // 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
59
+ * // displayName: "STRING_VALUE", // required
60
+ * // },
61
+ * // ],
62
+ * // categories: [ // CategoryList // required
63
+ * // { // Category
64
+ * // categoryId: "STRING_VALUE", // required
65
+ * // displayName: "STRING_VALUE", // required
66
+ * // },
67
+ * // ],
68
+ * // highlights: [ // HighlightList // required
69
+ * // "STRING_VALUE",
70
+ * // ],
71
+ * // promotionalMedia: [ // PromotionalMediaList // required
72
+ * // { // PromotionalMedia Union: only one key present
73
+ * // embeddedImage: { // PromotionalEmbeddedImage
74
+ * // title: "STRING_VALUE", // required
75
+ * // url: "STRING_VALUE", // required
76
+ * // description: "STRING_VALUE",
77
+ * // },
78
+ * // embeddedVideo: { // PromotionalEmbeddedVideo
79
+ * // title: "STRING_VALUE", // required
80
+ * // url: "STRING_VALUE", // required
81
+ * // preview: "STRING_VALUE", // required
82
+ * // thumbnail: "STRING_VALUE", // required
83
+ * // description: "STRING_VALUE",
84
+ * // },
85
+ * // },
86
+ * // ],
87
+ * // resources: [ // ResourceList // required
88
+ * // { // Resource
89
+ * // resourceType: "MANUFACTURER_SUPPORT" || "MANUFACTURER_INSTRUCTIONS", // required
90
+ * // contentType: "EMAIL" || "PHONE_NUMBER" || "LINK" || "OTHER", // required
91
+ * // value: "STRING_VALUE", // required
92
+ * // displayName: "STRING_VALUE",
93
+ * // },
94
+ * // ],
95
+ * // sellerEngagements: [ // SellerEngagementList // required
96
+ * // { // SellerEngagement
97
+ * // engagementType: "REQUEST_FOR_PRIVATE_OFFER" || "REQUEST_FOR_DEMO", // required
98
+ * // contentType: "LINK", // required
99
+ * // value: "STRING_VALUE", // required
100
+ * // },
101
+ * // ],
102
+ * // };
103
+ *
104
+ * ```
105
+ *
106
+ * @param GetProductCommandInput - {@link GetProductCommandInput}
107
+ * @returns {@link GetProductCommandOutput}
108
+ * @see {@link GetProductCommandInput} for command's `input` shape.
109
+ * @see {@link GetProductCommandOutput} for command's `response` shape.
110
+ * @see {@link MarketplaceDiscoveryClientResolvedConfig | config} for MarketplaceDiscoveryClient's `config` shape.
111
+ *
112
+ * @throws {@link ResourceNotFoundException} (client fault)
113
+ * <p>The specified resource doesn't exist.</p>
114
+ *
115
+ * @throws {@link AccessDeniedException} (client fault)
116
+ * <p>You don't have sufficient access to perform this action.</p>
117
+ *
118
+ * @throws {@link InternalServerException} (server fault)
119
+ * <p>Unexpected error during processing of the request.</p>
120
+ *
121
+ * @throws {@link ThrottlingException} (client fault)
122
+ * <p>The request was denied due to request throttling.</p>
123
+ *
124
+ * @throws {@link ValidationException} (client fault)
125
+ * <p>The input fails to satisfy the constraints specified by the service.</p>
126
+ *
127
+ * @throws {@link MarketplaceDiscoveryServiceException}
128
+ * <p>Base exception class for all service exceptions from MarketplaceDiscovery service.</p>
129
+ *
130
+ *
131
+ * @example GetProduct for SaaS product with DEPLOYED status
132
+ * ```javascript
133
+ * //
134
+ * const input = {
135
+ * productId: "prod-sampleSaasId"
136
+ * };
137
+ * const command = new GetProductCommand(input);
138
+ * const response = await client.send(command);
139
+ * /* response is
140
+ * {
141
+ * catalog: "AWSMarketplace",
142
+ * categories: [
143
+ * {
144
+ * categoryId: "0625e4fd-88dd-4dd9-9e57-4a0461f97fb4",
145
+ * displayName: "Security"
146
+ * }
147
+ * ],
148
+ * deployedOnAws: "DEPLOYED",
149
+ * fulfillmentOptionSummaries: [
150
+ * {
151
+ * displayName: "SaaS",
152
+ * fulfillmentOptionType: "SAAS"
153
+ * },
154
+ * {
155
+ * displayName: "API",
156
+ * fulfillmentOptionType: "API"
157
+ * },
158
+ * {
159
+ * displayName: "Data Exchange",
160
+ * fulfillmentOptionType: "DATA_EXCHANGE"
161
+ * }
162
+ * ],
163
+ * highlights: [
164
+ * "Configured to your specs: Pre-configured environments, out-of-the-box."
165
+ * ],
166
+ * logoThumbnailUrl: "https://d7umqicpi7263.cloudfront.net/img/product/07afb7c8-32f1-4851-8289-7e200d817ab1.png",
167
+ * longDescription: "Gitpod is a developer platform that provides on-demand, pre-configured cloud development environments (CDEs) that automatically integrate into any tool, library, or dependency required for creating software.",
168
+ * manufacturer: {
169
+ * displayName: "sample SaaS seller",
170
+ * sellerProfileId: "seller-sampleSaasId"
171
+ * },
172
+ * productId: "prod-sampleSaasId",
173
+ * productName: "sample SaaS product",
174
+ * promotionalMedia: [
175
+ * {
176
+ * embeddedImage: {
177
+ * description: "Main security dashboard showing threat analytics",
178
+ * title: "Dashboard Overview",
179
+ * url: "https://assets.example.com/images/dashboard-main.png"
180
+ * }
181
+ * }
182
+ * ],
183
+ * resources: [
184
+ * {
185
+ * contentType: "LINK",
186
+ * displayName: "Blog",
187
+ * resourceType: "MANUFACTURER_SUPPORT",
188
+ * value: "https://www.gitpod.io/blog"
189
+ * },
190
+ * {
191
+ * contentType: "EMAIL",
192
+ * displayName: "Email Support",
193
+ * resourceType: "MANUFACTURER_SUPPORT",
194
+ * value: "support@gitpod.io"
195
+ * }
196
+ * ],
197
+ * sellerEngagements: [
198
+ * {
199
+ * contentType: "LINK",
200
+ * engagementType: "REQUEST_FOR_DEMO",
201
+ * value: "https://aws.amazon.com/marketplace/customer-connect/demo/prodview-sampleSaasId"
202
+ * }
203
+ * ],
204
+ * shortDescription: "Gitpod provides on-demand, secure cloud development environments or CDEs."
205
+ * }
206
+ * *\/
207
+ * ```
208
+ *
209
+ * @example GetProduct for AMI product with NOT_DEPLOYED status
210
+ * ```javascript
211
+ * //
212
+ * const input = {
213
+ * productId: "prod-sampleAmiId"
214
+ * };
215
+ * const command = new GetProductCommand(input);
216
+ * const response = await client.send(command);
217
+ * /* response is
218
+ * {
219
+ * catalog: "AWSMarketplace",
220
+ * categories: [
221
+ * {
222
+ * categoryId: "security-category-001",
223
+ * displayName: "Security"
224
+ * }
225
+ * ],
226
+ * deployedOnAws: "NOT_DEPLOYED",
227
+ * fulfillmentOptionSummaries: [
228
+ * {
229
+ * displayName: "Amazon Machine Image",
230
+ * fulfillmentOptionType: "AMAZON_MACHINE_IMAGE"
231
+ * },
232
+ * {
233
+ * displayName: "CloudFormation Template",
234
+ * fulfillmentOptionType: "CLOUDFORMATION_TEMPLATE"
235
+ * },
236
+ * {
237
+ * displayName: "Container",
238
+ * fulfillmentOptionType: "CONTAINER"
239
+ * },
240
+ * {
241
+ * displayName: "Helm",
242
+ * fulfillmentOptionType: "HELM"
243
+ * }
244
+ * ],
245
+ * highlights: [
246
+ * "AES-256 encryption at rest and in transit"
247
+ * ],
248
+ * logoThumbnailUrl: "https://d7umqicpi7263.cloudfront.net/img/product/securevault-logo.png",
249
+ * longDescription: "SecureVault Enterprise provides comprehensive data encryption, key management, and security compliance tools for organizations.",
250
+ * manufacturer: {
251
+ * displayName: "sample AMI seller",
252
+ * sellerProfileId: "seller-sampleAmiId"
253
+ * },
254
+ * productId: "prod-sampleAmiId",
255
+ * productName: "sample AMI product",
256
+ * promotionalMedia: [
257
+ * {
258
+ * embeddedVideo: {
259
+ * description: "A comprehensive overview of SecureVault features",
260
+ * preview: "https://assets.example.com/videos/intro-preview.jpg",
261
+ * thumbnail: "https://assets.example.com/videos/intro-thumb.jpg",
262
+ * title: "SecureVault Introduction",
263
+ * url: "https://assets.example.com/videos/intro.mp4"
264
+ * }
265
+ * }
266
+ * ],
267
+ * resources: [
268
+ * {
269
+ * contentType: "PHONE_NUMBER",
270
+ * displayName: "Phone Support",
271
+ * resourceType: "MANUFACTURER_SUPPORT",
272
+ * value: "+1-555-123-4567"
273
+ * },
274
+ * {
275
+ * contentType: "OTHER",
276
+ * displayName: "Installation Help",
277
+ * resourceType: "MANUFACTURER_INSTRUCTIONS",
278
+ * value: "Contact your account manager for installation assistance."
279
+ * }
280
+ * ],
281
+ * sellerEngagements: [
282
+ * {
283
+ * contentType: "LINK",
284
+ * engagementType: "REQUEST_FOR_PRIVATE_OFFER",
285
+ * value: "https://aws.amazon.com/marketplace/customer-connect/private-offer/prodview-sampleAmiId"
286
+ * }
287
+ * ],
288
+ * shortDescription: "Enterprise-grade data encryption and key management solution."
289
+ * }
290
+ * *\/
291
+ * ```
292
+ *
293
+ * @example GetProduct for professional services with NOT_APPLICABLE status
294
+ * ```javascript
295
+ * //
296
+ * const input = {
297
+ * productId: "prod-sampleProServId"
298
+ * };
299
+ * const command = new GetProductCommand(input);
300
+ * const response = await client.send(command);
301
+ * /* response is
302
+ * {
303
+ * catalog: "AWSMarketplace",
304
+ * categories: [
305
+ * {
306
+ * categoryId: "consulting-category-001",
307
+ * displayName: "Consulting"
308
+ * }
309
+ * ],
310
+ * deployedOnAws: "NOT_APPLICABLE",
311
+ * fulfillmentOptionSummaries: [
312
+ * {
313
+ * displayName: "Professional Services",
314
+ * fulfillmentOptionType: "PROFESSIONAL_SERVICES"
315
+ * },
316
+ * {
317
+ * displayName: "EKS Add-on",
318
+ * fulfillmentOptionType: "EKS_ADD_ON"
319
+ * },
320
+ * {
321
+ * displayName: "EC2 Image Builder Component",
322
+ * fulfillmentOptionType: "EC2_IMAGE_BUILDER_COMPONENT"
323
+ * },
324
+ * {
325
+ * displayName: "SageMaker Algorithm",
326
+ * fulfillmentOptionType: "SAGEMAKER_ALGORITHM"
327
+ * },
328
+ * {
329
+ * displayName: "SageMaker Model",
330
+ * fulfillmentOptionType: "SAGEMAKER_MODEL"
331
+ * }
332
+ * ],
333
+ * highlights: [
334
+ * "Certified AWS migration specialists"
335
+ * ],
336
+ * logoThumbnailUrl: "https://d7umqicpi7263.cloudfront.net/img/product/cloudexperts-logo.png",
337
+ * longDescription: "Professional consulting services to help organizations plan and execute their cloud migration strategy.",
338
+ * manufacturer: {
339
+ * displayName: "sample professional services seller",
340
+ * sellerProfileId: "seller-sampleProServId"
341
+ * },
342
+ * productId: "prod-sampleProServId",
343
+ * productName: "sample professional services product",
344
+ * promotionalMedia: [],
345
+ * resources: [
346
+ * {
347
+ * contentType: "LINK",
348
+ * displayName: "Documentation",
349
+ * resourceType: "MANUFACTURER_INSTRUCTIONS",
350
+ * value: "https://www.cloudexperts.example.com/docs"
351
+ * }
352
+ * ],
353
+ * sellerEngagements: [
354
+ * {
355
+ * contentType: "LINK",
356
+ * engagementType: "REQUEST_FOR_DEMO",
357
+ * value: "https://aws.amazon.com/marketplace/customer-connect/demo/prodview-sampleProServId"
358
+ * }
359
+ * ],
360
+ * shortDescription: "Expert cloud migration and modernization consulting services."
361
+ * }
362
+ * *\/
363
+ * ```
364
+ *
365
+ * @public
366
+ */
367
+ export declare class GetProductCommand extends GetProductCommand_base {
368
+ /** @internal type navigation helper, not in runtime. */
369
+ protected static __types: {
370
+ api: {
371
+ input: GetProductInput;
372
+ output: GetProductOutput;
373
+ };
374
+ sdk: {
375
+ input: GetProductCommandInput;
376
+ output: GetProductCommandOutput;
377
+ };
378
+ };
379
+ }