@aws-sdk/client-partnercentral-selling 3.699.0 → 3.709.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 (153) hide show
  1. package/README.md +206 -45
  2. package/dist-cjs/PartnerCentralSelling.js +42 -0
  3. package/dist-cjs/commands/AcceptEngagementInvitationCommand.js +26 -0
  4. package/dist-cjs/commands/CreateEngagementCommand.js +27 -0
  5. package/dist-cjs/commands/CreateEngagementInvitationCommand.js +27 -0
  6. package/dist-cjs/commands/CreateResourceSnapshotCommand.js +26 -0
  7. package/dist-cjs/commands/CreateResourceSnapshotJobCommand.js +26 -0
  8. package/dist-cjs/commands/DeleteResourceSnapshotJobCommand.js +26 -0
  9. package/dist-cjs/commands/GetEngagementCommand.js +27 -0
  10. package/dist-cjs/commands/GetResourceSnapshotCommand.js +27 -0
  11. package/dist-cjs/commands/GetResourceSnapshotJobCommand.js +26 -0
  12. package/dist-cjs/commands/GetSellingSystemSettingsCommand.js +26 -0
  13. package/dist-cjs/commands/ListEngagementByAcceptingInvitationTasksCommand.js +26 -0
  14. package/dist-cjs/commands/ListEngagementFromOpportunityTasksCommand.js +26 -0
  15. package/dist-cjs/commands/ListEngagementInvitationsCommand.js +1 -1
  16. package/dist-cjs/commands/ListEngagementMembersCommand.js +27 -0
  17. package/dist-cjs/commands/ListEngagementResourceAssociationsCommand.js +27 -0
  18. package/dist-cjs/commands/ListEngagementsCommand.js +27 -0
  19. package/dist-cjs/commands/ListResourceSnapshotJobsCommand.js +26 -0
  20. package/dist-cjs/commands/ListResourceSnapshotsCommand.js +27 -0
  21. package/dist-cjs/commands/PutSellingSystemSettingsCommand.js +26 -0
  22. package/dist-cjs/commands/StartResourceSnapshotJobCommand.js +26 -0
  23. package/dist-cjs/commands/StopResourceSnapshotJobCommand.js +26 -0
  24. package/dist-cjs/commands/SubmitOpportunityCommand.js +26 -0
  25. package/dist-cjs/commands/index.js +21 -0
  26. package/dist-cjs/models/models_0.js +281 -87
  27. package/dist-cjs/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +7 -0
  28. package/dist-cjs/pagination/ListEngagementFromOpportunityTasksPaginator.js +7 -0
  29. package/dist-cjs/pagination/ListEngagementMembersPaginator.js +7 -0
  30. package/dist-cjs/pagination/ListEngagementResourceAssociationsPaginator.js +7 -0
  31. package/dist-cjs/pagination/ListEngagementsPaginator.js +7 -0
  32. package/dist-cjs/pagination/ListResourceSnapshotJobsPaginator.js +7 -0
  33. package/dist-cjs/pagination/ListResourceSnapshotsPaginator.js +7 -0
  34. package/dist-cjs/pagination/index.js +7 -0
  35. package/dist-cjs/protocols/Aws_json1_0.js +599 -1
  36. package/dist-es/PartnerCentralSelling.js +42 -0
  37. package/dist-es/commands/AcceptEngagementInvitationCommand.js +22 -0
  38. package/dist-es/commands/CreateEngagementCommand.js +23 -0
  39. package/dist-es/commands/CreateEngagementInvitationCommand.js +23 -0
  40. package/dist-es/commands/CreateResourceSnapshotCommand.js +22 -0
  41. package/dist-es/commands/CreateResourceSnapshotJobCommand.js +22 -0
  42. package/dist-es/commands/DeleteResourceSnapshotJobCommand.js +22 -0
  43. package/dist-es/commands/GetEngagementCommand.js +23 -0
  44. package/dist-es/commands/GetResourceSnapshotCommand.js +23 -0
  45. package/dist-es/commands/GetResourceSnapshotJobCommand.js +22 -0
  46. package/dist-es/commands/GetSellingSystemSettingsCommand.js +22 -0
  47. package/dist-es/commands/ListEngagementByAcceptingInvitationTasksCommand.js +22 -0
  48. package/dist-es/commands/ListEngagementFromOpportunityTasksCommand.js +22 -0
  49. package/dist-es/commands/ListEngagementInvitationsCommand.js +2 -2
  50. package/dist-es/commands/ListEngagementMembersCommand.js +23 -0
  51. package/dist-es/commands/ListEngagementResourceAssociationsCommand.js +23 -0
  52. package/dist-es/commands/ListEngagementsCommand.js +23 -0
  53. package/dist-es/commands/ListResourceSnapshotJobsCommand.js +22 -0
  54. package/dist-es/commands/ListResourceSnapshotsCommand.js +23 -0
  55. package/dist-es/commands/PutSellingSystemSettingsCommand.js +22 -0
  56. package/dist-es/commands/StartResourceSnapshotJobCommand.js +22 -0
  57. package/dist-es/commands/StopResourceSnapshotJobCommand.js +22 -0
  58. package/dist-es/commands/SubmitOpportunityCommand.js +22 -0
  59. package/dist-es/commands/index.js +21 -0
  60. package/dist-es/models/models_0.js +249 -81
  61. package/dist-es/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +4 -0
  62. package/dist-es/pagination/ListEngagementFromOpportunityTasksPaginator.js +4 -0
  63. package/dist-es/pagination/ListEngagementMembersPaginator.js +4 -0
  64. package/dist-es/pagination/ListEngagementResourceAssociationsPaginator.js +4 -0
  65. package/dist-es/pagination/ListEngagementsPaginator.js +4 -0
  66. package/dist-es/pagination/ListResourceSnapshotJobsPaginator.js +4 -0
  67. package/dist-es/pagination/ListResourceSnapshotsPaginator.js +4 -0
  68. package/dist-es/pagination/index.js +7 -0
  69. package/dist-es/protocols/Aws_json1_0.js +556 -1
  70. package/dist-types/PartnerCentralSelling.d.ts +182 -42
  71. package/dist-types/PartnerCentralSellingClient.d.ts +58 -44
  72. package/dist-types/commands/AcceptEngagementInvitationCommand.d.ts +103 -0
  73. package/dist-types/commands/AssignOpportunityCommand.d.ts +27 -32
  74. package/dist-types/commands/AssociateOpportunityCommand.d.ts +40 -46
  75. package/dist-types/commands/CreateEngagementCommand.d.ts +136 -0
  76. package/dist-types/commands/CreateEngagementInvitationCommand.d.ts +158 -0
  77. package/dist-types/commands/CreateOpportunityCommand.d.ts +40 -46
  78. package/dist-types/commands/CreateResourceSnapshotCommand.d.ts +117 -0
  79. package/dist-types/commands/CreateResourceSnapshotJobCommand.d.ts +119 -0
  80. package/dist-types/commands/DeleteResourceSnapshotJobCommand.d.ts +96 -0
  81. package/dist-types/commands/DisassociateOpportunityCommand.d.ts +29 -34
  82. package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +24 -28
  83. package/dist-types/commands/GetEngagementCommand.d.ts +124 -0
  84. package/dist-types/commands/GetEngagementInvitationCommand.d.ts +34 -24
  85. package/dist-types/commands/GetOpportunityCommand.d.ts +24 -29
  86. package/dist-types/commands/GetResourceSnapshotCommand.d.ts +186 -0
  87. package/dist-types/commands/GetResourceSnapshotJobCommand.d.ts +109 -0
  88. package/dist-types/commands/GetSellingSystemSettingsCommand.d.ts +95 -0
  89. package/dist-types/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +128 -0
  90. package/dist-types/commands/ListEngagementFromOpportunityTasksCommand.d.ts +129 -0
  91. package/dist-types/commands/ListEngagementInvitationsCommand.d.ts +34 -25
  92. package/dist-types/commands/ListEngagementMembersCommand.d.ts +109 -0
  93. package/dist-types/commands/ListEngagementResourceAssociationsCommand.d.ts +112 -0
  94. package/dist-types/commands/ListEngagementsCommand.d.ts +123 -0
  95. package/dist-types/commands/ListOpportunitiesCommand.d.ts +35 -39
  96. package/dist-types/commands/ListResourceSnapshotJobsCommand.d.ts +108 -0
  97. package/dist-types/commands/ListResourceSnapshotsCommand.d.ts +113 -0
  98. package/dist-types/commands/ListSolutionsCommand.d.ts +20 -20
  99. package/dist-types/commands/PutSellingSystemSettingsCommand.d.ts +96 -0
  100. package/dist-types/commands/RejectEngagementInvitationCommand.d.ts +22 -27
  101. package/dist-types/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +37 -35
  102. package/dist-types/commands/StartEngagementFromOpportunityTaskCommand.d.ts +37 -35
  103. package/dist-types/commands/StartResourceSnapshotJobCommand.d.ts +95 -0
  104. package/dist-types/commands/StopResourceSnapshotJobCommand.d.ts +95 -0
  105. package/dist-types/commands/SubmitOpportunityCommand.d.ts +106 -0
  106. package/dist-types/commands/UpdateOpportunityCommand.d.ts +33 -35
  107. package/dist-types/commands/index.d.ts +21 -0
  108. package/dist-types/index.d.ts +35 -42
  109. package/dist-types/models/models_0.d.ts +4764 -2209
  110. package/dist-types/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +7 -0
  111. package/dist-types/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +7 -0
  112. package/dist-types/pagination/ListEngagementMembersPaginator.d.ts +7 -0
  113. package/dist-types/pagination/ListEngagementResourceAssociationsPaginator.d.ts +7 -0
  114. package/dist-types/pagination/ListEngagementsPaginator.d.ts +7 -0
  115. package/dist-types/pagination/ListResourceSnapshotJobsPaginator.d.ts +7 -0
  116. package/dist-types/pagination/ListResourceSnapshotsPaginator.d.ts +7 -0
  117. package/dist-types/pagination/index.d.ts +7 -0
  118. package/dist-types/protocols/Aws_json1_0.d.ts +189 -0
  119. package/dist-types/ts3.4/PartnerCentralSelling.d.ts +375 -0
  120. package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +126 -0
  121. package/dist-types/ts3.4/commands/AcceptEngagementInvitationCommand.d.ts +47 -0
  122. package/dist-types/ts3.4/commands/CreateEngagementCommand.d.ts +50 -0
  123. package/dist-types/ts3.4/commands/CreateEngagementInvitationCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/CreateResourceSnapshotCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/CreateResourceSnapshotJobCommand.d.ts +51 -0
  126. package/dist-types/ts3.4/commands/DeleteResourceSnapshotJobCommand.d.ts +47 -0
  127. package/dist-types/ts3.4/commands/GetEngagementCommand.d.ts +50 -0
  128. package/dist-types/ts3.4/commands/GetResourceSnapshotCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/GetResourceSnapshotJobCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/GetSellingSystemSettingsCommand.d.ts +51 -0
  131. package/dist-types/ts3.4/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +51 -0
  132. package/dist-types/ts3.4/commands/ListEngagementFromOpportunityTasksCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/ListEngagementMembersCommand.d.ts +51 -0
  134. package/dist-types/ts3.4/commands/ListEngagementResourceAssociationsCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +50 -0
  136. package/dist-types/ts3.4/commands/ListResourceSnapshotJobsCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/ListResourceSnapshotsCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/PutSellingSystemSettingsCommand.d.ts +51 -0
  139. package/dist-types/ts3.4/commands/StartResourceSnapshotJobCommand.d.ts +47 -0
  140. package/dist-types/ts3.4/commands/StopResourceSnapshotJobCommand.d.ts +47 -0
  141. package/dist-types/ts3.4/commands/SubmitOpportunityCommand.d.ts +46 -0
  142. package/dist-types/ts3.4/commands/index.d.ts +21 -0
  143. package/dist-types/ts3.4/models/models_0.d.ts +587 -86
  144. package/dist-types/ts3.4/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +11 -0
  145. package/dist-types/ts3.4/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +11 -0
  146. package/dist-types/ts3.4/pagination/ListEngagementMembersPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/ListEngagementResourceAssociationsPaginator.d.ts +11 -0
  148. package/dist-types/ts3.4/pagination/ListEngagementsPaginator.d.ts +11 -0
  149. package/dist-types/ts3.4/pagination/ListResourceSnapshotJobsPaginator.d.ts +11 -0
  150. package/dist-types/ts3.4/pagination/ListResourceSnapshotsPaginator.d.ts +11 -0
  151. package/dist-types/ts3.4/pagination/index.d.ts +7 -0
  152. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +252 -0
  153. package/package.json +35 -35
@@ -27,15 +27,14 @@ declare const AssignOpportunityCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>
31
- * Enables you to reassign an existing <code>Opportunity</code> to another user within your
32
- * Partner Central account. The specified user receives the opportunity, and it appears on their
33
- * Partner Central dashboard, allowing them to take necessary actions or proceed with the opportunity.
34
- * </p>
35
- * <p>
36
- * This is useful for distributing opportunities to the appropriate team members
37
- * or departments within your organization, ensuring that each opportunity is handled by the right person. By default, the opportunity owner is the one who creates it. Currently, there's no API to enumerate the list of available users.
38
- * </p>
30
+ * <p>Enables you to reassign an existing <code>Opportunity</code> to another user within
31
+ * your Partner Central account. The specified user receives the opportunity, and it
32
+ * appears on their Partner Central dashboard, allowing them to take necessary actions or
33
+ * proceed with the opportunity.</p>
34
+ * <p>This is useful for distributing opportunities to the appropriate team members or
35
+ * departments within your organization, ensuring that each opportunity is handled by the
36
+ * right person. By default, the opportunity owner is the one who creates it. Currently,
37
+ * there's no API to enumerate the list of available users.</p>
39
38
  * @example
40
39
  * Use a bare-bones client and the command you need to make an API call.
41
40
  * ```javascript
@@ -65,37 +64,33 @@ declare const AssignOpportunityCommand_base: {
65
64
  * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
66
65
  *
67
66
  * @throws {@link AccessDeniedException} (client fault)
68
- * <p>This error occurs when you don't have permission to perform the
69
- * requested action.
70
- * </p>
71
- * <p>You don’t have access to this action or resource. Review IAM policies or contact your AWS administrator for assistance.
72
- * </p>
67
+ * <p>This error occurs when you don't have permission to perform the requested
68
+ * action.</p>
69
+ * <p>You don’t have access to this action or resource. Review IAM policies or contact your
70
+ * AWS administrator for assistance.</p>
73
71
  *
74
72
  * @throws {@link InternalServerException} (server fault)
75
- * <p>This error occurs when the specified resource can’t be found or doesn't exist. Resource ID and type might be incorrect.
76
- * </p>
77
- * <p>Suggested action: This is usually a transient error. Retry after the provided retry delay or a short interval. If the problem persists, contact AWS support.
78
- * </p>
73
+ * <p>This error occurs when the specified resource can’t be found or doesn't exist.
74
+ * Resource ID and type might be incorrect.</p>
75
+ * <p>Suggested action: This is usually a transient error. Retry after the provided retry
76
+ * delay or a short interval. If the problem persists, contact AWS support.</p>
79
77
  *
80
78
  * @throws {@link ResourceNotFoundException} (client fault)
81
- * <p>This error occurs when the specified resource can't be found. The resource might not exist, or isn't visible with the current credentials.
82
- * </p>
83
- * <p>Suggested action: Verify that the resource ID is correct and the resource is in the expected AWS region. Check IAM permissions for accessing the resource.
84
- * </p>
79
+ * <p>This error occurs when the specified resource can't be found. The resource might not
80
+ * exist, or isn't visible with the current credentials.</p>
81
+ * <p>Suggested action: Verify that the resource ID is correct and the resource is in the
82
+ * expected AWS region. Check IAM permissions for accessing the resource.</p>
85
83
  *
86
84
  * @throws {@link ThrottlingException} (client fault)
87
- * <p>This error occurs when there are too many requests sent. Review the provided quotas and adapt your
88
- * usage to avoid throttling.
89
- * </p>
90
- * <p>This error occurs when there are too many requests sent. Review the provided
91
- * <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.
92
- * </p>
85
+ * <p>This error occurs when there are too many requests sent. Review the provided quotas
86
+ * and adapt your usage to avoid throttling.</p>
87
+ * <p>This error occurs when there are too many requests sent. Review the provided <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.</p>
93
88
  *
94
89
  * @throws {@link ValidationException} (client fault)
95
- * <p>The input fails to satisfy the constraints specified by the service or business validation rules.
96
- * </p>
97
- * <p>Suggested action: Review the error message, including the failed fields and reasons, to correct the request payload.
98
- * </p>
90
+ * <p>The input fails to satisfy the constraints specified by the service or business
91
+ * validation rules.</p>
92
+ * <p>Suggested action: Review the error message, including the failed fields and reasons,
93
+ * to correct the request payload.</p>
99
94
  *
100
95
  * @throws {@link PartnerCentralSellingServiceException}
101
96
  * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
@@ -27,29 +27,28 @@ declare const AssociateOpportunityCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>
31
- * Enables you to create a formal association between an <code>Opportunity</code> and various
32
- * related entities, enriching the context and details of the opportunity for better collaboration and
33
- * decision making. You can associate an opportunity with the following entity types:
34
- * </p>
30
+ * <p>Enables you to create a formal association between an <code>Opportunity</code> and
31
+ * various related entities, enriching the context and details of the opportunity for
32
+ * better collaboration and decision making. You can associate an opportunity with the
33
+ * following entity types:</p>
35
34
  * <ul>
36
35
  * <li>
37
- * <p>
38
- * Partner Solution:
39
- * A software product or consulting practice created and delivered by Partners. Partner Solutions help customers address business challenges using Amazon Web Services services.
40
- * </p>
36
+ * <p>Partner Solution: A software product or consulting practice created and
37
+ * delivered by Partners. Partner Solutions help customers address
38
+ * business challenges using Amazon Web Services services.</p>
41
39
  * </li>
42
40
  * <li>
43
- * <p>
44
- * Amazon Web Services Products:
45
- * Amazon Web Services offers many products and services that provide scalable, reliable, and cost-effective infrastructure solutions. For the latest list of Amazon Web Services products, see <a href="https://github.com/aws-samples/partner-crm-integration-samples/blob/main/resources/aws_products.json">Amazon Web Services products</a>.
46
- * </p>
41
+ * <p>Amazon Web Services Products: Amazon Web Services offers many products and
42
+ * services that provide scalable, reliable, and cost-effective infrastructure
43
+ * solutions. For the latest list of Amazon Web Services products, see <a href="https://github.com/aws-samples/partner-crm-integration-samples/blob/main/resources/aws_products.json">Amazon Web Services products</a>.</p>
47
44
  * </li>
48
45
  * <li>
49
- * <p>
50
- * Amazon Web Services Marketplace private offer:
51
- * Allows Amazon Web Services Marketplace sellers to extend custom pricing and terms to individual Amazon Web Services customers. Sellers can negotiate custom prices, payment schedules, and end user license terms through private offers, enabling Amazon Web Services customers to acquire software solutions tailored to their specific needs. For more information, see <a href="https://docs.aws.amazon.com/marketplace/latest/buyerguide/buyer-private-offers.html">Private offers in Amazon Web Services Marketplace</a>.
52
- * </p>
46
+ * <p>Amazon Web Services Marketplace private offer: Allows Amazon Web Services Marketplace sellers to extend
47
+ * custom pricing and terms to individual Amazon Web Services customers. Sellers can
48
+ * negotiate custom prices, payment schedules, and end user license terms through
49
+ * private offers, enabling Amazon Web Services customers to acquire software
50
+ * solutions tailored to their specific needs. For more information, see <a href="https://docs.aws.amazon.com/marketplace/latest/buyerguide/buyer-private-offers.html">Private offers
51
+ * in Amazon Web Services Marketplace</a>.</p>
53
52
  * </li>
54
53
  * </ul>
55
54
  * <p>To obtain identifiers for these entities, use the following methods:</p>
@@ -58,14 +57,13 @@ declare const AssociateOpportunityCommand_base: {
58
57
  * <p>Solution: Use the <code>ListSolutions</code> operation.</p>
59
58
  * </li>
60
59
  * <li>
61
- * <p>
62
- * AWS Products: For the latest list of Amazon Web Services products, see <a href="https://github.com/aws-samples/partner-crm-integration-samples/blob/main/resources/aws_products.json">Amazon Web Services products</a>.
63
- * </p>
60
+ * <p>AWS Products: For the latest list of Amazon Web Services products, see <a href="https://github.com/aws-samples/partner-crm-integration-samples/blob/main/resources/aws_products.json">Amazon Web Services products</a>.</p>
64
61
  * </li>
65
62
  * <li>
66
- * <p>
67
- * Amazon Web Services Marketplace private offer: Use the <a href="https://docs.aws.amazon.com/marketplace/latest/APIReference/catalog-apis.html">Using the Amazon Web Services Marketplace Catalog API</a> to list entities. Specifically, use the <code>ListEntities</code> operation to retrieve a list of private offers. The request returns the details of available private offers. For more information, see <a href="https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/API_ListEntities.html">ListEntities</a>.
68
- * </p>
63
+ * <p>Amazon Web Services Marketplace private offer: Use the <a href="https://docs.aws.amazon.com/marketplace/latest/APIReference/catalog-apis.html">Using the Amazon Web Services Marketplace Catalog API</a> to list entities. Specifically, use the
64
+ * <code>ListEntities</code> operation to retrieve a list of private offers.
65
+ * The request returns the details of available private offers. For more
66
+ * information, see <a href="https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/API_ListEntities.html">ListEntities</a>.</p>
69
67
  * </li>
70
68
  * </ul>
71
69
  * @example
@@ -93,37 +91,33 @@ declare const AssociateOpportunityCommand_base: {
93
91
  * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
94
92
  *
95
93
  * @throws {@link AccessDeniedException} (client fault)
96
- * <p>This error occurs when you don't have permission to perform the
97
- * requested action.
98
- * </p>
99
- * <p>You don’t have access to this action or resource. Review IAM policies or contact your AWS administrator for assistance.
100
- * </p>
94
+ * <p>This error occurs when you don't have permission to perform the requested
95
+ * action.</p>
96
+ * <p>You don’t have access to this action or resource. Review IAM policies or contact your
97
+ * AWS administrator for assistance.</p>
101
98
  *
102
99
  * @throws {@link InternalServerException} (server fault)
103
- * <p>This error occurs when the specified resource can’t be found or doesn't exist. Resource ID and type might be incorrect.
104
- * </p>
105
- * <p>Suggested action: This is usually a transient error. Retry after the provided retry delay or a short interval. If the problem persists, contact AWS support.
106
- * </p>
100
+ * <p>This error occurs when the specified resource can’t be found or doesn't exist.
101
+ * Resource ID and type might be incorrect.</p>
102
+ * <p>Suggested action: This is usually a transient error. Retry after the provided retry
103
+ * delay or a short interval. If the problem persists, contact AWS support.</p>
107
104
  *
108
105
  * @throws {@link ResourceNotFoundException} (client fault)
109
- * <p>This error occurs when the specified resource can't be found. The resource might not exist, or isn't visible with the current credentials.
110
- * </p>
111
- * <p>Suggested action: Verify that the resource ID is correct and the resource is in the expected AWS region. Check IAM permissions for accessing the resource.
112
- * </p>
106
+ * <p>This error occurs when the specified resource can't be found. The resource might not
107
+ * exist, or isn't visible with the current credentials.</p>
108
+ * <p>Suggested action: Verify that the resource ID is correct and the resource is in the
109
+ * expected AWS region. Check IAM permissions for accessing the resource.</p>
113
110
  *
114
111
  * @throws {@link ThrottlingException} (client fault)
115
- * <p>This error occurs when there are too many requests sent. Review the provided quotas and adapt your
116
- * usage to avoid throttling.
117
- * </p>
118
- * <p>This error occurs when there are too many requests sent. Review the provided
119
- * <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.
120
- * </p>
112
+ * <p>This error occurs when there are too many requests sent. Review the provided quotas
113
+ * and adapt your usage to avoid throttling.</p>
114
+ * <p>This error occurs when there are too many requests sent. Review the provided <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.</p>
121
115
  *
122
116
  * @throws {@link ValidationException} (client fault)
123
- * <p>The input fails to satisfy the constraints specified by the service or business validation rules.
124
- * </p>
125
- * <p>Suggested action: Review the error message, including the failed fields and reasons, to correct the request payload.
126
- * </p>
117
+ * <p>The input fails to satisfy the constraints specified by the service or business
118
+ * validation rules.</p>
119
+ * <p>Suggested action: Review the error message, including the failed fields and reasons,
120
+ * to correct the request payload.</p>
127
121
  *
128
122
  * @throws {@link PartnerCentralSellingServiceException}
129
123
  * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
@@ -0,0 +1,136 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CreateEngagementRequest, CreateEngagementResponse } from "../models/models_0";
4
+ import { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralSellingClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateEngagementCommand}.
14
+ */
15
+ export interface CreateEngagementCommandInput extends CreateEngagementRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateEngagementCommand}.
21
+ */
22
+ export interface CreateEngagementCommandOutput extends CreateEngagementResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateEngagementCommand_base: {
25
+ new (input: CreateEngagementCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEngagementCommandInput, CreateEngagementCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CreateEngagementCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEngagementCommandInput, CreateEngagementCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>
31
+ * The <code>CreateEngagement</code> action allows you to create an <code>Engagement</code>,
32
+ * which serves as a collaborative space between different parties such as AWS Partners and AWS Sellers.
33
+ * This action automatically adds the caller's AWS account as an active member of the newly created <code>Engagement</code>.
34
+ * </p>
35
+ * @example
36
+ * Use a bare-bones client and the command you need to make an API call.
37
+ * ```javascript
38
+ * import { PartnerCentralSellingClient, CreateEngagementCommand } from "@aws-sdk/client-partnercentral-selling"; // ES Modules import
39
+ * // const { PartnerCentralSellingClient, CreateEngagementCommand } = require("@aws-sdk/client-partnercentral-selling"); // CommonJS import
40
+ * const client = new PartnerCentralSellingClient(config);
41
+ * const input = { // CreateEngagementRequest
42
+ * Catalog: "STRING_VALUE", // required
43
+ * ClientToken: "STRING_VALUE", // required
44
+ * Title: "STRING_VALUE", // required
45
+ * Description: "STRING_VALUE", // required
46
+ * Contexts: [ // EngagementContexts
47
+ * { // EngagementContextDetails
48
+ * Type: "CustomerProject", // required
49
+ * Payload: { // EngagementContextPayload Union: only one key present
50
+ * CustomerProject: { // CustomerProjectsContext
51
+ * Customer: { // EngagementCustomer
52
+ * Industry: "Aerospace" || "Agriculture" || "Automotive" || "Computers and Electronics" || "Consumer Goods" || "Education" || "Energy - Oil and Gas" || "Energy - Power and Utilities" || "Financial Services" || "Gaming" || "Government" || "Healthcare" || "Hospitality" || "Life Sciences" || "Manufacturing" || "Marketing and Advertising" || "Media and Entertainment" || "Mining" || "Non-Profit Organization" || "Professional Services" || "Real Estate and Construction" || "Retail" || "Software and Internet" || "Telecommunications" || "Transportation and Logistics" || "Travel" || "Wholesale and Distribution" || "Other", // required
53
+ * CompanyName: "STRING_VALUE", // required
54
+ * WebsiteUrl: "STRING_VALUE", // required
55
+ * CountryCode: "US" || "AF" || "AX" || "AL" || "DZ" || "AS" || "AD" || "AO" || "AI" || "AQ" || "AG" || "AR" || "AM" || "AW" || "AU" || "AT" || "AZ" || "BS" || "BH" || "BD" || "BB" || "BY" || "BE" || "BZ" || "BJ" || "BM" || "BT" || "BO" || "BQ" || "BA" || "BW" || "BV" || "BR" || "IO" || "BN" || "BG" || "BF" || "BI" || "KH" || "CM" || "CA" || "CV" || "KY" || "CF" || "TD" || "CL" || "CN" || "CX" || "CC" || "CO" || "KM" || "CG" || "CK" || "CR" || "CI" || "HR" || "CU" || "CW" || "CY" || "CZ" || "CD" || "DK" || "DJ" || "DM" || "DO" || "EC" || "EG" || "SV" || "GQ" || "ER" || "EE" || "ET" || "FK" || "FO" || "FJ" || "FI" || "FR" || "GF" || "PF" || "TF" || "GA" || "GM" || "GE" || "DE" || "GH" || "GI" || "GR" || "GL" || "GD" || "GP" || "GU" || "GT" || "GG" || "GN" || "GW" || "GY" || "HT" || "HM" || "VA" || "HN" || "HK" || "HU" || "IS" || "IN" || "ID" || "IR" || "IQ" || "IE" || "IM" || "IL" || "IT" || "JM" || "JP" || "JE" || "JO" || "KZ" || "KE" || "KI" || "KR" || "KW" || "KG" || "LA" || "LV" || "LB" || "LS" || "LR" || "LY" || "LI" || "LT" || "LU" || "MO" || "MK" || "MG" || "MW" || "MY" || "MV" || "ML" || "MT" || "MH" || "MQ" || "MR" || "MU" || "YT" || "MX" || "FM" || "MD" || "MC" || "MN" || "ME" || "MS" || "MA" || "MZ" || "MM" || "NA" || "NR" || "NP" || "NL" || "AN" || "NC" || "NZ" || "NI" || "NE" || "NG" || "NU" || "NF" || "MP" || "NO" || "OM" || "PK" || "PW" || "PS" || "PA" || "PG" || "PY" || "PE" || "PH" || "PN" || "PL" || "PT" || "PR" || "QA" || "RE" || "RO" || "RU" || "RW" || "BL" || "SH" || "KN" || "LC" || "MF" || "PM" || "VC" || "WS" || "SM" || "ST" || "SA" || "SN" || "RS" || "SC" || "SL" || "SG" || "SX" || "SK" || "SI" || "SB" || "SO" || "ZA" || "GS" || "SS" || "ES" || "LK" || "SD" || "SR" || "SJ" || "SZ" || "SE" || "CH" || "SY" || "TW" || "TJ" || "TZ" || "TH" || "TL" || "TG" || "TK" || "TO" || "TT" || "TN" || "TR" || "TM" || "TC" || "TV" || "UG" || "UA" || "AE" || "GB" || "UM" || "UY" || "UZ" || "VU" || "VE" || "VN" || "VG" || "VI" || "WF" || "EH" || "YE" || "ZM" || "ZW", // required
56
+ * },
57
+ * Project: { // EngagementCustomerProjectDetails
58
+ * Title: "STRING_VALUE", // required
59
+ * BusinessProblem: "STRING_VALUE", // required
60
+ * TargetCompletionDate: "STRING_VALUE", // required
61
+ * },
62
+ * },
63
+ * },
64
+ * },
65
+ * ],
66
+ * };
67
+ * const command = new CreateEngagementCommand(input);
68
+ * const response = await client.send(command);
69
+ * // { // CreateEngagementResponse
70
+ * // Id: "STRING_VALUE",
71
+ * // Arn: "STRING_VALUE",
72
+ * // };
73
+ *
74
+ * ```
75
+ *
76
+ * @param CreateEngagementCommandInput - {@link CreateEngagementCommandInput}
77
+ * @returns {@link CreateEngagementCommandOutput}
78
+ * @see {@link CreateEngagementCommandInput} for command's `input` shape.
79
+ * @see {@link CreateEngagementCommandOutput} for command's `response` shape.
80
+ * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
81
+ *
82
+ * @throws {@link AccessDeniedException} (client fault)
83
+ * <p>This error occurs when you don't have permission to perform the requested
84
+ * action.</p>
85
+ * <p>You don’t have access to this action or resource. Review IAM policies or contact your
86
+ * AWS administrator for assistance.</p>
87
+ *
88
+ * @throws {@link ConflictException} (client fault)
89
+ * <p>This error occurs when the request can’t be processed due to a conflict with the
90
+ * target resource's current state, which could result from updating or deleting the
91
+ * resource.</p>
92
+ * <p>Suggested action: Fetch the latest state of the resource, verify the state, and retry
93
+ * the request.</p>
94
+ *
95
+ * @throws {@link ResourceNotFoundException} (client fault)
96
+ * <p>This error occurs when the specified resource can't be found. The resource might not
97
+ * exist, or isn't visible with the current credentials.</p>
98
+ * <p>Suggested action: Verify that the resource ID is correct and the resource is in the
99
+ * expected AWS region. Check IAM permissions for accessing the resource.</p>
100
+ *
101
+ * @throws {@link ServiceQuotaExceededException} (client fault)
102
+ * <p>This error occurs when the request would cause a service quota to be exceeded. Service
103
+ * quotas represent the maximum allowed use of a specific resource, and this error
104
+ * indicates that the request would surpass that limit.</p>
105
+ * <p>Suggested action: Review the <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> for the
106
+ * resource, and either reduce usage or request a quota increase.</p>
107
+ *
108
+ * @throws {@link ThrottlingException} (client fault)
109
+ * <p>This error occurs when there are too many requests sent. Review the provided quotas
110
+ * and adapt your usage to avoid throttling.</p>
111
+ * <p>This error occurs when there are too many requests sent. Review the provided <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.</p>
112
+ *
113
+ * @throws {@link ValidationException} (client fault)
114
+ * <p>The input fails to satisfy the constraints specified by the service or business
115
+ * validation rules.</p>
116
+ * <p>Suggested action: Review the error message, including the failed fields and reasons,
117
+ * to correct the request payload.</p>
118
+ *
119
+ * @throws {@link PartnerCentralSellingServiceException}
120
+ * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
121
+ *
122
+ * @public
123
+ */
124
+ export declare class CreateEngagementCommand extends CreateEngagementCommand_base {
125
+ /** @internal type navigation helper, not in runtime. */
126
+ protected static __types: {
127
+ api: {
128
+ input: CreateEngagementRequest;
129
+ output: CreateEngagementResponse;
130
+ };
131
+ sdk: {
132
+ input: CreateEngagementCommandInput;
133
+ output: CreateEngagementCommandOutput;
134
+ };
135
+ };
136
+ }
@@ -0,0 +1,158 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CreateEngagementInvitationRequest, CreateEngagementInvitationResponse } from "../models/models_0";
4
+ import { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralSellingClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateEngagementInvitationCommand}.
14
+ */
15
+ export interface CreateEngagementInvitationCommandInput extends CreateEngagementInvitationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateEngagementInvitationCommand}.
21
+ */
22
+ export interface CreateEngagementInvitationCommandOutput extends CreateEngagementInvitationResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateEngagementInvitationCommand_base: {
25
+ new (input: CreateEngagementInvitationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEngagementInvitationCommandInput, CreateEngagementInvitationCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CreateEngagementInvitationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEngagementInvitationCommandInput, CreateEngagementInvitationCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>
31
+ * This action creates an invitation from a sender to a single receiver to join an engagement.
32
+ * </p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { PartnerCentralSellingClient, CreateEngagementInvitationCommand } from "@aws-sdk/client-partnercentral-selling"; // ES Modules import
37
+ * // const { PartnerCentralSellingClient, CreateEngagementInvitationCommand } = require("@aws-sdk/client-partnercentral-selling"); // CommonJS import
38
+ * const client = new PartnerCentralSellingClient(config);
39
+ * const input = { // CreateEngagementInvitationRequest
40
+ * Catalog: "STRING_VALUE", // required
41
+ * ClientToken: "STRING_VALUE", // required
42
+ * EngagementIdentifier: "STRING_VALUE", // required
43
+ * Invitation: { // Invitation
44
+ * Message: "STRING_VALUE", // required
45
+ * Receiver: { // Receiver Union: only one key present
46
+ * Account: { // AccountReceiver
47
+ * Alias: "STRING_VALUE",
48
+ * AwsAccountId: "STRING_VALUE", // required
49
+ * },
50
+ * },
51
+ * Payload: { // Payload Union: only one key present
52
+ * OpportunityInvitation: { // OpportunityInvitationPayload
53
+ * SenderContacts: [ // SenderContactList
54
+ * { // SenderContact
55
+ * Email: "STRING_VALUE", // required
56
+ * FirstName: "STRING_VALUE",
57
+ * LastName: "STRING_VALUE",
58
+ * BusinessTitle: "STRING_VALUE",
59
+ * Phone: "STRING_VALUE",
60
+ * },
61
+ * ],
62
+ * ReceiverResponsibilities: [ // ReceiverResponsibilityList // required
63
+ * "Distributor" || "Reseller" || "Hardware Partner" || "Managed Service Provider" || "Software Partner" || "Services Partner" || "Training Partner" || "Co-Sell Facilitator" || "Facilitator",
64
+ * ],
65
+ * Customer: { // EngagementCustomer
66
+ * Industry: "Aerospace" || "Agriculture" || "Automotive" || "Computers and Electronics" || "Consumer Goods" || "Education" || "Energy - Oil and Gas" || "Energy - Power and Utilities" || "Financial Services" || "Gaming" || "Government" || "Healthcare" || "Hospitality" || "Life Sciences" || "Manufacturing" || "Marketing and Advertising" || "Media and Entertainment" || "Mining" || "Non-Profit Organization" || "Professional Services" || "Real Estate and Construction" || "Retail" || "Software and Internet" || "Telecommunications" || "Transportation and Logistics" || "Travel" || "Wholesale and Distribution" || "Other", // required
67
+ * CompanyName: "STRING_VALUE", // required
68
+ * WebsiteUrl: "STRING_VALUE", // required
69
+ * CountryCode: "US" || "AF" || "AX" || "AL" || "DZ" || "AS" || "AD" || "AO" || "AI" || "AQ" || "AG" || "AR" || "AM" || "AW" || "AU" || "AT" || "AZ" || "BS" || "BH" || "BD" || "BB" || "BY" || "BE" || "BZ" || "BJ" || "BM" || "BT" || "BO" || "BQ" || "BA" || "BW" || "BV" || "BR" || "IO" || "BN" || "BG" || "BF" || "BI" || "KH" || "CM" || "CA" || "CV" || "KY" || "CF" || "TD" || "CL" || "CN" || "CX" || "CC" || "CO" || "KM" || "CG" || "CK" || "CR" || "CI" || "HR" || "CU" || "CW" || "CY" || "CZ" || "CD" || "DK" || "DJ" || "DM" || "DO" || "EC" || "EG" || "SV" || "GQ" || "ER" || "EE" || "ET" || "FK" || "FO" || "FJ" || "FI" || "FR" || "GF" || "PF" || "TF" || "GA" || "GM" || "GE" || "DE" || "GH" || "GI" || "GR" || "GL" || "GD" || "GP" || "GU" || "GT" || "GG" || "GN" || "GW" || "GY" || "HT" || "HM" || "VA" || "HN" || "HK" || "HU" || "IS" || "IN" || "ID" || "IR" || "IQ" || "IE" || "IM" || "IL" || "IT" || "JM" || "JP" || "JE" || "JO" || "KZ" || "KE" || "KI" || "KR" || "KW" || "KG" || "LA" || "LV" || "LB" || "LS" || "LR" || "LY" || "LI" || "LT" || "LU" || "MO" || "MK" || "MG" || "MW" || "MY" || "MV" || "ML" || "MT" || "MH" || "MQ" || "MR" || "MU" || "YT" || "MX" || "FM" || "MD" || "MC" || "MN" || "ME" || "MS" || "MA" || "MZ" || "MM" || "NA" || "NR" || "NP" || "NL" || "AN" || "NC" || "NZ" || "NI" || "NE" || "NG" || "NU" || "NF" || "MP" || "NO" || "OM" || "PK" || "PW" || "PS" || "PA" || "PG" || "PY" || "PE" || "PH" || "PN" || "PL" || "PT" || "PR" || "QA" || "RE" || "RO" || "RU" || "RW" || "BL" || "SH" || "KN" || "LC" || "MF" || "PM" || "VC" || "WS" || "SM" || "ST" || "SA" || "SN" || "RS" || "SC" || "SL" || "SG" || "SX" || "SK" || "SI" || "SB" || "SO" || "ZA" || "GS" || "SS" || "ES" || "LK" || "SD" || "SR" || "SJ" || "SZ" || "SE" || "CH" || "SY" || "TW" || "TJ" || "TZ" || "TH" || "TL" || "TG" || "TK" || "TO" || "TT" || "TN" || "TR" || "TM" || "TC" || "TV" || "UG" || "UA" || "AE" || "GB" || "UM" || "UY" || "UZ" || "VU" || "VE" || "VN" || "VG" || "VI" || "WF" || "EH" || "YE" || "ZM" || "ZW", // required
70
+ * },
71
+ * Project: { // ProjectDetails
72
+ * BusinessProblem: "STRING_VALUE", // required
73
+ * Title: "STRING_VALUE", // required
74
+ * TargetCompletionDate: "STRING_VALUE", // required
75
+ * ExpectedCustomerSpend: [ // ExpectedCustomerSpendList // required
76
+ * { // ExpectedCustomerSpend
77
+ * Amount: "STRING_VALUE", // required
78
+ * CurrencyCode: "USD" || "EUR" || "GBP" || "AUD" || "CAD" || "CNY" || "NZD" || "INR" || "JPY" || "CHF" || "SEK" || "AED" || "AFN" || "ALL" || "AMD" || "ANG" || "AOA" || "ARS" || "AWG" || "AZN" || "BAM" || "BBD" || "BDT" || "BGN" || "BHD" || "BIF" || "BMD" || "BND" || "BOB" || "BOV" || "BRL" || "BSD" || "BTN" || "BWP" || "BYN" || "BZD" || "CDF" || "CHE" || "CHW" || "CLF" || "CLP" || "COP" || "COU" || "CRC" || "CUC" || "CUP" || "CVE" || "CZK" || "DJF" || "DKK" || "DOP" || "DZD" || "EGP" || "ERN" || "ETB" || "FJD" || "FKP" || "GEL" || "GHS" || "GIP" || "GMD" || "GNF" || "GTQ" || "GYD" || "HKD" || "HNL" || "HRK" || "HTG" || "HUF" || "IDR" || "ILS" || "IQD" || "IRR" || "ISK" || "JMD" || "JOD" || "KES" || "KGS" || "KHR" || "KMF" || "KPW" || "KRW" || "KWD" || "KYD" || "KZT" || "LAK" || "LBP" || "LKR" || "LRD" || "LSL" || "LYD" || "MAD" || "MDL" || "MGA" || "MKD" || "MMK" || "MNT" || "MOP" || "MRU" || "MUR" || "MVR" || "MWK" || "MXN" || "MXV" || "MYR" || "MZN" || "NAD" || "NGN" || "NIO" || "NOK" || "NPR" || "OMR" || "PAB" || "PEN" || "PGK" || "PHP" || "PKR" || "PLN" || "PYG" || "QAR" || "RON" || "RSD" || "RUB" || "RWF" || "SAR" || "SBD" || "SCR" || "SDG" || "SGD" || "SHP" || "SLL" || "SOS" || "SRD" || "SSP" || "STN" || "SVC" || "SYP" || "SZL" || "THB" || "TJS" || "TMT" || "TND" || "TOP" || "TRY" || "TTD" || "TWD" || "TZS" || "UAH" || "UGX" || "USN" || "UYI" || "UYU" || "UZS" || "VEF" || "VND" || "VUV" || "WST" || "XAF" || "XCD" || "XDR" || "XOF" || "XPF" || "XSU" || "XUA" || "YER" || "ZAR" || "ZMW" || "ZWL", // required
79
+ * Frequency: "Monthly", // required
80
+ * TargetCompany: "STRING_VALUE", // required
81
+ * EstimationUrl: "STRING_VALUE",
82
+ * },
83
+ * ],
84
+ * },
85
+ * },
86
+ * },
87
+ * },
88
+ * };
89
+ * const command = new CreateEngagementInvitationCommand(input);
90
+ * const response = await client.send(command);
91
+ * // { // CreateEngagementInvitationResponse
92
+ * // Id: "STRING_VALUE", // required
93
+ * // Arn: "STRING_VALUE", // required
94
+ * // };
95
+ *
96
+ * ```
97
+ *
98
+ * @param CreateEngagementInvitationCommandInput - {@link CreateEngagementInvitationCommandInput}
99
+ * @returns {@link CreateEngagementInvitationCommandOutput}
100
+ * @see {@link CreateEngagementInvitationCommandInput} for command's `input` shape.
101
+ * @see {@link CreateEngagementInvitationCommandOutput} for command's `response` shape.
102
+ * @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
103
+ *
104
+ * @throws {@link AccessDeniedException} (client fault)
105
+ * <p>This error occurs when you don't have permission to perform the requested
106
+ * action.</p>
107
+ * <p>You don’t have access to this action or resource. Review IAM policies or contact your
108
+ * AWS administrator for assistance.</p>
109
+ *
110
+ * @throws {@link ConflictException} (client fault)
111
+ * <p>This error occurs when the request can’t be processed due to a conflict with the
112
+ * target resource's current state, which could result from updating or deleting the
113
+ * resource.</p>
114
+ * <p>Suggested action: Fetch the latest state of the resource, verify the state, and retry
115
+ * the request.</p>
116
+ *
117
+ * @throws {@link ResourceNotFoundException} (client fault)
118
+ * <p>This error occurs when the specified resource can't be found. The resource might not
119
+ * exist, or isn't visible with the current credentials.</p>
120
+ * <p>Suggested action: Verify that the resource ID is correct and the resource is in the
121
+ * expected AWS region. Check IAM permissions for accessing the resource.</p>
122
+ *
123
+ * @throws {@link ServiceQuotaExceededException} (client fault)
124
+ * <p>This error occurs when the request would cause a service quota to be exceeded. Service
125
+ * quotas represent the maximum allowed use of a specific resource, and this error
126
+ * indicates that the request would surpass that limit.</p>
127
+ * <p>Suggested action: Review the <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> for the
128
+ * resource, and either reduce usage or request a quota increase.</p>
129
+ *
130
+ * @throws {@link ThrottlingException} (client fault)
131
+ * <p>This error occurs when there are too many requests sent. Review the provided quotas
132
+ * and adapt your usage to avoid throttling.</p>
133
+ * <p>This error occurs when there are too many requests sent. Review the provided <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.</p>
134
+ *
135
+ * @throws {@link ValidationException} (client fault)
136
+ * <p>The input fails to satisfy the constraints specified by the service or business
137
+ * validation rules.</p>
138
+ * <p>Suggested action: Review the error message, including the failed fields and reasons,
139
+ * to correct the request payload.</p>
140
+ *
141
+ * @throws {@link PartnerCentralSellingServiceException}
142
+ * <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
143
+ *
144
+ * @public
145
+ */
146
+ export declare class CreateEngagementInvitationCommand extends CreateEngagementInvitationCommand_base {
147
+ /** @internal type navigation helper, not in runtime. */
148
+ protected static __types: {
149
+ api: {
150
+ input: CreateEngagementInvitationRequest;
151
+ output: CreateEngagementInvitationResponse;
152
+ };
153
+ sdk: {
154
+ input: CreateEngagementInvitationCommandInput;
155
+ output: CreateEngagementInvitationCommandOutput;
156
+ };
157
+ };
158
+ }