-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This release removes the deprecated UserId and UserGroups fields from…
… SearchRelevantContent api's request parameters. Introducing the preview of new partner central selling APIs designed to transform how AWS partners collaborate and co-sell with multiple partners. This enables multiple partners to seamlessly engage and jointly pursue customer opportunities, fostering a new era of collaborative selling.
- Loading branch information
1 parent
8c1055c
commit 081f413
Showing
191 changed files
with
16,326 additions
and
898 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.11.461 | ||
1.11.462 |
660 changes: 615 additions & 45 deletions
660
...k-partnercentral-selling/include/aws/partnercentral-selling/PartnerCentralSellingClient.h
Large diffs are not rendered by default.
Oops, something went wrong.
100 changes: 100 additions & 0 deletions
100
...tral-selling/include/aws/partnercentral-selling/PartnerCentralSellingServiceClientModel.h
Large diffs are not rendered by default.
Oops, something went wrong.
81 changes: 81 additions & 0 deletions
81
...tral-selling/include/aws/partnercentral-selling/model/AcceptEngagementInvitationRequest.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/partnercentral-selling/PartnerCentralSelling_EXPORTS.h> | ||
#include <aws/partnercentral-selling/PartnerCentralSellingRequest.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
#include <utility> | ||
|
||
namespace Aws | ||
{ | ||
namespace PartnerCentralSelling | ||
{ | ||
namespace Model | ||
{ | ||
|
||
/** | ||
*/ | ||
class AcceptEngagementInvitationRequest : public PartnerCentralSellingRequest | ||
{ | ||
public: | ||
AWS_PARTNERCENTRALSELLING_API AcceptEngagementInvitationRequest(); | ||
|
||
// Service request name is the Operation name which will send this request out, | ||
// each operation should has unique request name, so that we can get operation's name from this request. | ||
// Note: this is not true for response, multiple operations may have the same response name, | ||
// so we can not get operation's name from response. | ||
inline virtual const char* GetServiceRequestName() const override { return "AcceptEngagementInvitation"; } | ||
|
||
AWS_PARTNERCENTRALSELLING_API Aws::String SerializePayload() const override; | ||
|
||
AWS_PARTNERCENTRALSELLING_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; | ||
|
||
|
||
///@{ | ||
/** | ||
* <p> The <code>CatalogType</code> parameter specifies the catalog associated with | ||
* the engagement invitation. Accepted values are <code>AWS</code> and | ||
* <code>Sandbox</code>, which determine the environment in which the engagement | ||
* invitation is managed. </p> | ||
*/ | ||
inline const Aws::String& GetCatalog() const{ return m_catalog; } | ||
inline bool CatalogHasBeenSet() const { return m_catalogHasBeenSet; } | ||
inline void SetCatalog(const Aws::String& value) { m_catalogHasBeenSet = true; m_catalog = value; } | ||
inline void SetCatalog(Aws::String&& value) { m_catalogHasBeenSet = true; m_catalog = std::move(value); } | ||
inline void SetCatalog(const char* value) { m_catalogHasBeenSet = true; m_catalog.assign(value); } | ||
inline AcceptEngagementInvitationRequest& WithCatalog(const Aws::String& value) { SetCatalog(value); return *this;} | ||
inline AcceptEngagementInvitationRequest& WithCatalog(Aws::String&& value) { SetCatalog(std::move(value)); return *this;} | ||
inline AcceptEngagementInvitationRequest& WithCatalog(const char* value) { SetCatalog(value); return *this;} | ||
///@} | ||
|
||
///@{ | ||
/** | ||
* <p> The <code>Identifier</code> parameter in the | ||
* <code>AcceptEngagementInvitationRequest</code> specifies the unique identifier | ||
* of the <code>EngagementInvitation</code> to be accepted. Providing the correct | ||
* identifier ensures that the intended invitation is accepted. </p> | ||
*/ | ||
inline const Aws::String& GetIdentifier() const{ return m_identifier; } | ||
inline bool IdentifierHasBeenSet() const { return m_identifierHasBeenSet; } | ||
inline void SetIdentifier(const Aws::String& value) { m_identifierHasBeenSet = true; m_identifier = value; } | ||
inline void SetIdentifier(Aws::String&& value) { m_identifierHasBeenSet = true; m_identifier = std::move(value); } | ||
inline void SetIdentifier(const char* value) { m_identifierHasBeenSet = true; m_identifier.assign(value); } | ||
inline AcceptEngagementInvitationRequest& WithIdentifier(const Aws::String& value) { SetIdentifier(value); return *this;} | ||
inline AcceptEngagementInvitationRequest& WithIdentifier(Aws::String&& value) { SetIdentifier(std::move(value)); return *this;} | ||
inline AcceptEngagementInvitationRequest& WithIdentifier(const char* value) { SetIdentifier(value); return *this;} | ||
///@} | ||
private: | ||
|
||
Aws::String m_catalog; | ||
bool m_catalogHasBeenSet = false; | ||
|
||
Aws::String m_identifier; | ||
bool m_identifierHasBeenSet = false; | ||
}; | ||
|
||
} // namespace Model | ||
} // namespace PartnerCentralSelling | ||
} // namespace Aws |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.