-
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.
The AWS MediaConvert Probe API allows you to analyze media files and …
…retrieve detailed metadata about their content, format, and structure. Adding licenses to EKS Anywhere Subscription operations response. Added a mandatory parameter DataAutomationProfileArn to support for cross region inference for InvokeDataAutomationAsync API. Renamed DataAutomationArn to DataAutomationProjectArn. Added APIs to support tagging. This release lets Amazon Bedrock Flows support newer models by increasing the maximum length of output in a prompt configuration. This release also increases the maximum number of prompt variables to 20 and the maximum number of node inputs to 20. Renamed and added new StandardConfiguration enums. Added support to update EncryptionConfiguration in UpdateBlueprint and UpdateDataAutomation APIs. Changed HttpStatus code for DeleteBlueprint and DeleteDataAutomationProject APIs to 200 from 204. Added APIs to support tagging. Systems Manager doc-only updates for Feb. 2025. Update GetProducts and DescribeServices API request input validations. Add skipped status to the Result Statistics of an Assessment Run
- Loading branch information
1 parent
82ba707
commit 0e211d7
Showing
132 changed files
with
7,691 additions
and
1,016 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.516 | ||
1.11.517 |
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
56 changes: 56 additions & 0 deletions
56
...on-runtime/include/aws/bedrock-data-automation-runtime/model/ListTagsForResourceRequest.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,56 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/bedrock-data-automation-runtime/BedrockDataAutomationRuntime_EXPORTS.h> | ||
#include <aws/bedrock-data-automation-runtime/BedrockDataAutomationRuntimeRequest.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
#include <utility> | ||
|
||
namespace Aws | ||
{ | ||
namespace BedrockDataAutomationRuntime | ||
{ | ||
namespace Model | ||
{ | ||
|
||
/** | ||
*/ | ||
class ListTagsForResourceRequest : public BedrockDataAutomationRuntimeRequest | ||
{ | ||
public: | ||
AWS_BEDROCKDATAAUTOMATIONRUNTIME_API ListTagsForResourceRequest(); | ||
|
||
// 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 "ListTagsForResource"; } | ||
|
||
AWS_BEDROCKDATAAUTOMATIONRUNTIME_API Aws::String SerializePayload() const override; | ||
|
||
AWS_BEDROCKDATAAUTOMATIONRUNTIME_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; | ||
|
||
|
||
///@{ | ||
|
||
inline const Aws::String& GetResourceARN() const{ return m_resourceARN; } | ||
inline bool ResourceARNHasBeenSet() const { return m_resourceARNHasBeenSet; } | ||
inline void SetResourceARN(const Aws::String& value) { m_resourceARNHasBeenSet = true; m_resourceARN = value; } | ||
inline void SetResourceARN(Aws::String&& value) { m_resourceARNHasBeenSet = true; m_resourceARN = std::move(value); } | ||
inline void SetResourceARN(const char* value) { m_resourceARNHasBeenSet = true; m_resourceARN.assign(value); } | ||
inline ListTagsForResourceRequest& WithResourceARN(const Aws::String& value) { SetResourceARN(value); return *this;} | ||
inline ListTagsForResourceRequest& WithResourceARN(Aws::String&& value) { SetResourceARN(std::move(value)); return *this;} | ||
inline ListTagsForResourceRequest& WithResourceARN(const char* value) { SetResourceARN(value); return *this;} | ||
///@} | ||
private: | ||
|
||
Aws::String m_resourceARN; | ||
bool m_resourceARNHasBeenSet = false; | ||
}; | ||
|
||
} // namespace Model | ||
} // namespace BedrockDataAutomationRuntime | ||
} // namespace Aws |
67 changes: 67 additions & 0 deletions
67
...ion-runtime/include/aws/bedrock-data-automation-runtime/model/ListTagsForResourceResult.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,67 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/bedrock-data-automation-runtime/BedrockDataAutomationRuntime_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSVector.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
#include <aws/bedrock-data-automation-runtime/model/Tag.h> | ||
#include <utility> | ||
|
||
namespace Aws | ||
{ | ||
template<typename RESULT_TYPE> | ||
class AmazonWebServiceResult; | ||
|
||
namespace Utils | ||
{ | ||
namespace Json | ||
{ | ||
class JsonValue; | ||
} // namespace Json | ||
} // namespace Utils | ||
namespace BedrockDataAutomationRuntime | ||
{ | ||
namespace Model | ||
{ | ||
class ListTagsForResourceResult | ||
{ | ||
public: | ||
AWS_BEDROCKDATAAUTOMATIONRUNTIME_API ListTagsForResourceResult(); | ||
AWS_BEDROCKDATAAUTOMATIONRUNTIME_API ListTagsForResourceResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); | ||
AWS_BEDROCKDATAAUTOMATIONRUNTIME_API ListTagsForResourceResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); | ||
|
||
|
||
///@{ | ||
|
||
inline const Aws::Vector<Tag>& GetTags() const{ return m_tags; } | ||
inline void SetTags(const Aws::Vector<Tag>& value) { m_tags = value; } | ||
inline void SetTags(Aws::Vector<Tag>&& value) { m_tags = std::move(value); } | ||
inline ListTagsForResourceResult& WithTags(const Aws::Vector<Tag>& value) { SetTags(value); return *this;} | ||
inline ListTagsForResourceResult& WithTags(Aws::Vector<Tag>&& value) { SetTags(std::move(value)); return *this;} | ||
inline ListTagsForResourceResult& AddTags(const Tag& value) { m_tags.push_back(value); return *this; } | ||
inline ListTagsForResourceResult& AddTags(Tag&& value) { m_tags.push_back(std::move(value)); return *this; } | ||
///@} | ||
|
||
///@{ | ||
|
||
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 ListTagsForResourceResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} | ||
inline ListTagsForResourceResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} | ||
inline ListTagsForResourceResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} | ||
///@} | ||
private: | ||
|
||
Aws::Vector<Tag> m_tags; | ||
|
||
Aws::String m_requestId; | ||
}; | ||
|
||
} // namespace Model | ||
} // namespace BedrockDataAutomationRuntime | ||
} // namespace Aws |
Oops, something went wrong.