@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.
- package/README.md +206 -45
- package/dist-cjs/PartnerCentralSelling.js +42 -0
- package/dist-cjs/commands/AcceptEngagementInvitationCommand.js +26 -0
- package/dist-cjs/commands/CreateEngagementCommand.js +27 -0
- package/dist-cjs/commands/CreateEngagementInvitationCommand.js +27 -0
- package/dist-cjs/commands/CreateResourceSnapshotCommand.js +26 -0
- package/dist-cjs/commands/CreateResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/DeleteResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/GetEngagementCommand.js +27 -0
- package/dist-cjs/commands/GetResourceSnapshotCommand.js +27 -0
- package/dist-cjs/commands/GetResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/GetSellingSystemSettingsCommand.js +26 -0
- package/dist-cjs/commands/ListEngagementByAcceptingInvitationTasksCommand.js +26 -0
- package/dist-cjs/commands/ListEngagementFromOpportunityTasksCommand.js +26 -0
- package/dist-cjs/commands/ListEngagementInvitationsCommand.js +1 -1
- package/dist-cjs/commands/ListEngagementMembersCommand.js +27 -0
- package/dist-cjs/commands/ListEngagementResourceAssociationsCommand.js +27 -0
- package/dist-cjs/commands/ListEngagementsCommand.js +27 -0
- package/dist-cjs/commands/ListResourceSnapshotJobsCommand.js +26 -0
- package/dist-cjs/commands/ListResourceSnapshotsCommand.js +27 -0
- package/dist-cjs/commands/PutSellingSystemSettingsCommand.js +26 -0
- package/dist-cjs/commands/StartResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/StopResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/SubmitOpportunityCommand.js +26 -0
- package/dist-cjs/commands/index.js +21 -0
- package/dist-cjs/models/models_0.js +281 -87
- package/dist-cjs/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementFromOpportunityTasksPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementMembersPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementResourceAssociationsPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementsPaginator.js +7 -0
- package/dist-cjs/pagination/ListResourceSnapshotJobsPaginator.js +7 -0
- package/dist-cjs/pagination/ListResourceSnapshotsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_json1_0.js +599 -1
- package/dist-es/PartnerCentralSelling.js +42 -0
- package/dist-es/commands/AcceptEngagementInvitationCommand.js +22 -0
- package/dist-es/commands/CreateEngagementCommand.js +23 -0
- package/dist-es/commands/CreateEngagementInvitationCommand.js +23 -0
- package/dist-es/commands/CreateResourceSnapshotCommand.js +22 -0
- package/dist-es/commands/CreateResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/DeleteResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/GetEngagementCommand.js +23 -0
- package/dist-es/commands/GetResourceSnapshotCommand.js +23 -0
- package/dist-es/commands/GetResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/GetSellingSystemSettingsCommand.js +22 -0
- package/dist-es/commands/ListEngagementByAcceptingInvitationTasksCommand.js +22 -0
- package/dist-es/commands/ListEngagementFromOpportunityTasksCommand.js +22 -0
- package/dist-es/commands/ListEngagementInvitationsCommand.js +2 -2
- package/dist-es/commands/ListEngagementMembersCommand.js +23 -0
- package/dist-es/commands/ListEngagementResourceAssociationsCommand.js +23 -0
- package/dist-es/commands/ListEngagementsCommand.js +23 -0
- package/dist-es/commands/ListResourceSnapshotJobsCommand.js +22 -0
- package/dist-es/commands/ListResourceSnapshotsCommand.js +23 -0
- package/dist-es/commands/PutSellingSystemSettingsCommand.js +22 -0
- package/dist-es/commands/StartResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/StopResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/SubmitOpportunityCommand.js +22 -0
- package/dist-es/commands/index.js +21 -0
- package/dist-es/models/models_0.js +249 -81
- package/dist-es/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementFromOpportunityTasksPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementMembersPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementResourceAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementsPaginator.js +4 -0
- package/dist-es/pagination/ListResourceSnapshotJobsPaginator.js +4 -0
- package/dist-es/pagination/ListResourceSnapshotsPaginator.js +4 -0
- package/dist-es/pagination/index.js +7 -0
- package/dist-es/protocols/Aws_json1_0.js +556 -1
- package/dist-types/PartnerCentralSelling.d.ts +182 -42
- package/dist-types/PartnerCentralSellingClient.d.ts +58 -44
- package/dist-types/commands/AcceptEngagementInvitationCommand.d.ts +103 -0
- package/dist-types/commands/AssignOpportunityCommand.d.ts +27 -32
- package/dist-types/commands/AssociateOpportunityCommand.d.ts +40 -46
- package/dist-types/commands/CreateEngagementCommand.d.ts +136 -0
- package/dist-types/commands/CreateEngagementInvitationCommand.d.ts +158 -0
- package/dist-types/commands/CreateOpportunityCommand.d.ts +40 -46
- package/dist-types/commands/CreateResourceSnapshotCommand.d.ts +117 -0
- package/dist-types/commands/CreateResourceSnapshotJobCommand.d.ts +119 -0
- package/dist-types/commands/DeleteResourceSnapshotJobCommand.d.ts +96 -0
- package/dist-types/commands/DisassociateOpportunityCommand.d.ts +29 -34
- package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +24 -28
- package/dist-types/commands/GetEngagementCommand.d.ts +124 -0
- package/dist-types/commands/GetEngagementInvitationCommand.d.ts +34 -24
- package/dist-types/commands/GetOpportunityCommand.d.ts +24 -29
- package/dist-types/commands/GetResourceSnapshotCommand.d.ts +186 -0
- package/dist-types/commands/GetResourceSnapshotJobCommand.d.ts +109 -0
- package/dist-types/commands/GetSellingSystemSettingsCommand.d.ts +95 -0
- package/dist-types/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +128 -0
- package/dist-types/commands/ListEngagementFromOpportunityTasksCommand.d.ts +129 -0
- package/dist-types/commands/ListEngagementInvitationsCommand.d.ts +34 -25
- package/dist-types/commands/ListEngagementMembersCommand.d.ts +109 -0
- package/dist-types/commands/ListEngagementResourceAssociationsCommand.d.ts +112 -0
- package/dist-types/commands/ListEngagementsCommand.d.ts +123 -0
- package/dist-types/commands/ListOpportunitiesCommand.d.ts +35 -39
- package/dist-types/commands/ListResourceSnapshotJobsCommand.d.ts +108 -0
- package/dist-types/commands/ListResourceSnapshotsCommand.d.ts +113 -0
- package/dist-types/commands/ListSolutionsCommand.d.ts +20 -20
- package/dist-types/commands/PutSellingSystemSettingsCommand.d.ts +96 -0
- package/dist-types/commands/RejectEngagementInvitationCommand.d.ts +22 -27
- package/dist-types/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +37 -35
- package/dist-types/commands/StartEngagementFromOpportunityTaskCommand.d.ts +37 -35
- package/dist-types/commands/StartResourceSnapshotJobCommand.d.ts +95 -0
- package/dist-types/commands/StopResourceSnapshotJobCommand.d.ts +95 -0
- package/dist-types/commands/SubmitOpportunityCommand.d.ts +106 -0
- package/dist-types/commands/UpdateOpportunityCommand.d.ts +33 -35
- package/dist-types/commands/index.d.ts +21 -0
- package/dist-types/index.d.ts +35 -42
- package/dist-types/models/models_0.d.ts +4764 -2209
- package/dist-types/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementMembersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementResourceAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListResourceSnapshotJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListResourceSnapshotsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +7 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +189 -0
- package/dist-types/ts3.4/PartnerCentralSelling.d.ts +375 -0
- package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +126 -0
- package/dist-types/ts3.4/commands/AcceptEngagementInvitationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateEngagementCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateEngagementInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateResourceSnapshotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateResourceSnapshotJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteResourceSnapshotJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetEngagementCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetResourceSnapshotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetResourceSnapshotJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSellingSystemSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementFromOpportunityTasksCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementMembersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementResourceAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListResourceSnapshotJobsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListResourceSnapshotsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutSellingSystemSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartResourceSnapshotJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/StopResourceSnapshotJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/SubmitOpportunityCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/index.d.ts +21 -0
- package/dist-types/ts3.4/models/models_0.d.ts +587 -86
- package/dist-types/ts3.4/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementMembersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementResourceAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListResourceSnapshotJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListResourceSnapshotsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +252 -0
- 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
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
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
|
-
*
|
|
70
|
-
*
|
|
71
|
-
*
|
|
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.
|
|
76
|
-
*
|
|
77
|
-
* <p>Suggested action: This is usually a transient error. Retry after the provided retry
|
|
78
|
-
*
|
|
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
|
|
82
|
-
*
|
|
83
|
-
* <p>Suggested action: Verify that the resource ID is correct and the resource is in the
|
|
84
|
-
*
|
|
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
|
|
88
|
-
* usage to avoid throttling
|
|
89
|
-
*
|
|
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
|
|
96
|
-
*
|
|
97
|
-
* <p>Suggested action: Review the error message, including the failed fields and reasons,
|
|
98
|
-
*
|
|
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
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
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
|
|
39
|
-
*
|
|
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
|
-
*
|
|
45
|
-
*
|
|
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
|
|
51
|
-
*
|
|
52
|
-
*
|
|
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
|
-
*
|
|
68
|
-
*
|
|
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
|
-
*
|
|
98
|
-
*
|
|
99
|
-
*
|
|
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.
|
|
104
|
-
*
|
|
105
|
-
* <p>Suggested action: This is usually a transient error. Retry after the provided retry
|
|
106
|
-
*
|
|
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
|
|
110
|
-
*
|
|
111
|
-
* <p>Suggested action: Verify that the resource ID is correct and the resource is in the
|
|
112
|
-
*
|
|
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
|
|
116
|
-
* usage to avoid throttling
|
|
117
|
-
*
|
|
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
|
|
124
|
-
*
|
|
125
|
-
* <p>Suggested action: Review the error message, including the failed fields and reasons,
|
|
126
|
-
*
|
|
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
|
+
}
|