-
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 feature releases DeleteField, DeletedLayout, and DeleteTemplate …
…API's Updating max results limit for listing any resources (Job, Artifacts, Branch, BackendResources, DomainAssociation) to 50 with the exception of list apps that where max results can be up to 100. Update Inspector2 to include new Agentless API parameters. This update provides error messaging for generative call summarization in Transcribe Call Analytics This change allows users to update and describe account settings associated with their accounts. This release adds the BatchUpdateRecommendationResourceExclusion API to support batch updates of Recommendation Resource exclusion statuses and introduces a new exclusion status filter to the ListRecommendationResources and ListOrganizationRecommendationResources APIs.
- Loading branch information
1 parent
523ce92
commit c95988c
Showing
100 changed files
with
5,715 additions
and
32 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.316 | ||
1.11.317 |
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
127 changes: 127 additions & 0 deletions
127
generated/src/aws-cpp-sdk-connectcases/include/aws/connectcases/model/DeleteFieldRequest.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,127 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/connectcases/ConnectCases_EXPORTS.h> | ||
#include <aws/connectcases/ConnectCasesRequest.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
#include <utility> | ||
|
||
namespace Aws | ||
{ | ||
namespace ConnectCases | ||
{ | ||
namespace Model | ||
{ | ||
|
||
/** | ||
*/ | ||
class DeleteFieldRequest : public ConnectCasesRequest | ||
{ | ||
public: | ||
AWS_CONNECTCASES_API DeleteFieldRequest(); | ||
|
||
// 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 "DeleteField"; } | ||
|
||
AWS_CONNECTCASES_API Aws::String SerializePayload() const override; | ||
|
||
|
||
/** | ||
* <p>The unique identifier of the Cases domain. </p> | ||
*/ | ||
inline const Aws::String& GetDomainId() const{ return m_domainId; } | ||
|
||
/** | ||
* <p>The unique identifier of the Cases domain. </p> | ||
*/ | ||
inline bool DomainIdHasBeenSet() const { return m_domainIdHasBeenSet; } | ||
|
||
/** | ||
* <p>The unique identifier of the Cases domain. </p> | ||
*/ | ||
inline void SetDomainId(const Aws::String& value) { m_domainIdHasBeenSet = true; m_domainId = value; } | ||
|
||
/** | ||
* <p>The unique identifier of the Cases domain. </p> | ||
*/ | ||
inline void SetDomainId(Aws::String&& value) { m_domainIdHasBeenSet = true; m_domainId = std::move(value); } | ||
|
||
/** | ||
* <p>The unique identifier of the Cases domain. </p> | ||
*/ | ||
inline void SetDomainId(const char* value) { m_domainIdHasBeenSet = true; m_domainId.assign(value); } | ||
|
||
/** | ||
* <p>The unique identifier of the Cases domain. </p> | ||
*/ | ||
inline DeleteFieldRequest& WithDomainId(const Aws::String& value) { SetDomainId(value); return *this;} | ||
|
||
/** | ||
* <p>The unique identifier of the Cases domain. </p> | ||
*/ | ||
inline DeleteFieldRequest& WithDomainId(Aws::String&& value) { SetDomainId(std::move(value)); return *this;} | ||
|
||
/** | ||
* <p>The unique identifier of the Cases domain. </p> | ||
*/ | ||
inline DeleteFieldRequest& WithDomainId(const char* value) { SetDomainId(value); return *this;} | ||
|
||
|
||
/** | ||
* <p>The unique identifier of a field.</p> | ||
*/ | ||
inline const Aws::String& GetFieldId() const{ return m_fieldId; } | ||
|
||
/** | ||
* <p>The unique identifier of a field.</p> | ||
*/ | ||
inline bool FieldIdHasBeenSet() const { return m_fieldIdHasBeenSet; } | ||
|
||
/** | ||
* <p>The unique identifier of a field.</p> | ||
*/ | ||
inline void SetFieldId(const Aws::String& value) { m_fieldIdHasBeenSet = true; m_fieldId = value; } | ||
|
||
/** | ||
* <p>The unique identifier of a field.</p> | ||
*/ | ||
inline void SetFieldId(Aws::String&& value) { m_fieldIdHasBeenSet = true; m_fieldId = std::move(value); } | ||
|
||
/** | ||
* <p>The unique identifier of a field.</p> | ||
*/ | ||
inline void SetFieldId(const char* value) { m_fieldIdHasBeenSet = true; m_fieldId.assign(value); } | ||
|
||
/** | ||
* <p>The unique identifier of a field.</p> | ||
*/ | ||
inline DeleteFieldRequest& WithFieldId(const Aws::String& value) { SetFieldId(value); return *this;} | ||
|
||
/** | ||
* <p>The unique identifier of a field.</p> | ||
*/ | ||
inline DeleteFieldRequest& WithFieldId(Aws::String&& value) { SetFieldId(std::move(value)); return *this;} | ||
|
||
/** | ||
* <p>The unique identifier of a field.</p> | ||
*/ | ||
inline DeleteFieldRequest& WithFieldId(const char* value) { SetFieldId(value); return *this;} | ||
|
||
private: | ||
|
||
Aws::String m_domainId; | ||
bool m_domainIdHasBeenSet = false; | ||
|
||
Aws::String m_fieldId; | ||
bool m_fieldIdHasBeenSet = false; | ||
}; | ||
|
||
} // namespace Model | ||
} // namespace ConnectCases | ||
} // namespace Aws |
63 changes: 63 additions & 0 deletions
63
generated/src/aws-cpp-sdk-connectcases/include/aws/connectcases/model/DeleteFieldResult.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,63 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/connectcases/ConnectCases_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
#include <utility> | ||
|
||
namespace Aws | ||
{ | ||
template<typename RESULT_TYPE> | ||
class AmazonWebServiceResult; | ||
|
||
namespace Utils | ||
{ | ||
namespace Json | ||
{ | ||
class JsonValue; | ||
} // namespace Json | ||
} // namespace Utils | ||
namespace ConnectCases | ||
{ | ||
namespace Model | ||
{ | ||
class DeleteFieldResult | ||
{ | ||
public: | ||
AWS_CONNECTCASES_API DeleteFieldResult(); | ||
AWS_CONNECTCASES_API DeleteFieldResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); | ||
AWS_CONNECTCASES_API DeleteFieldResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); | ||
|
||
|
||
|
||
inline const Aws::String& GetRequestId() const{ return m_requestId; } | ||
|
||
|
||
inline void SetRequestId(const Aws::String& value) { m_requestId = value; } | ||
|
||
|
||
inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } | ||
|
||
|
||
inline void SetRequestId(const char* value) { m_requestId.assign(value); } | ||
|
||
|
||
inline DeleteFieldResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} | ||
|
||
|
||
inline DeleteFieldResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} | ||
|
||
|
||
inline DeleteFieldResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} | ||
|
||
private: | ||
|
||
Aws::String m_requestId; | ||
}; | ||
|
||
} // namespace Model | ||
} // namespace ConnectCases | ||
} // namespace Aws |
Oops, something went wrong.