-
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.
Generate account endpoint for DynamoDB requests when the account ID i…
…s available This release introduces support for the SageMaker Metrics BatchGetMetrics API. Releasing new ErrorCodes for SysPrep failures during ImageImport and CreateImage process Amazon SageMaker now supports using manifest files to specify the location of uncompressed model artifacts within Model Packages Add v2 smoke tests and smithy smokeTests trait for SDK testing.
- Loading branch information
1 parent
8ab2e71
commit 9bbc424
Showing
43 changed files
with
4,713 additions
and
331 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.409 | ||
1.11.410 |
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
375 changes: 254 additions & 121 deletions
375
generated/src/aws-cpp-sdk-dynamodb/source/DynamoDBEndpointRules.cpp
Large diffs are not rendered by default.
Oops, something went wrong.
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
57 changes: 57 additions & 0 deletions
57
...ws-cpp-sdk-sagemaker-metrics/include/aws/sagemaker-metrics/model/BatchGetMetricsRequest.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,57 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/sagemaker-metrics/SageMakerMetrics_EXPORTS.h> | ||
#include <aws/sagemaker-metrics/SageMakerMetricsRequest.h> | ||
#include <aws/core/utils/memory/stl/AWSVector.h> | ||
#include <aws/sagemaker-metrics/model/MetricQuery.h> | ||
#include <utility> | ||
|
||
namespace Aws | ||
{ | ||
namespace SageMakerMetrics | ||
{ | ||
namespace Model | ||
{ | ||
|
||
/** | ||
*/ | ||
class BatchGetMetricsRequest : public SageMakerMetricsRequest | ||
{ | ||
public: | ||
AWS_SAGEMAKERMETRICS_API BatchGetMetricsRequest(); | ||
|
||
// 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 "BatchGetMetrics"; } | ||
|
||
AWS_SAGEMAKERMETRICS_API Aws::String SerializePayload() const override; | ||
|
||
|
||
///@{ | ||
/** | ||
* <p>Queries made to retrieve training metrics from SageMaker.</p> | ||
*/ | ||
inline const Aws::Vector<MetricQuery>& GetMetricQueries() const{ return m_metricQueries; } | ||
inline bool MetricQueriesHasBeenSet() const { return m_metricQueriesHasBeenSet; } | ||
inline void SetMetricQueries(const Aws::Vector<MetricQuery>& value) { m_metricQueriesHasBeenSet = true; m_metricQueries = value; } | ||
inline void SetMetricQueries(Aws::Vector<MetricQuery>&& value) { m_metricQueriesHasBeenSet = true; m_metricQueries = std::move(value); } | ||
inline BatchGetMetricsRequest& WithMetricQueries(const Aws::Vector<MetricQuery>& value) { SetMetricQueries(value); return *this;} | ||
inline BatchGetMetricsRequest& WithMetricQueries(Aws::Vector<MetricQuery>&& value) { SetMetricQueries(std::move(value)); return *this;} | ||
inline BatchGetMetricsRequest& AddMetricQueries(const MetricQuery& value) { m_metricQueriesHasBeenSet = true; m_metricQueries.push_back(value); return *this; } | ||
inline BatchGetMetricsRequest& AddMetricQueries(MetricQuery&& value) { m_metricQueriesHasBeenSet = true; m_metricQueries.push_back(std::move(value)); return *this; } | ||
///@} | ||
private: | ||
|
||
Aws::Vector<MetricQuery> m_metricQueries; | ||
bool m_metricQueriesHasBeenSet = false; | ||
}; | ||
|
||
} // namespace Model | ||
} // namespace SageMakerMetrics | ||
} // namespace Aws |
69 changes: 69 additions & 0 deletions
69
...aws-cpp-sdk-sagemaker-metrics/include/aws/sagemaker-metrics/model/BatchGetMetricsResult.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,69 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/sagemaker-metrics/SageMakerMetrics_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSVector.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
#include <aws/sagemaker-metrics/model/MetricQueryResult.h> | ||
#include <utility> | ||
|
||
namespace Aws | ||
{ | ||
template<typename RESULT_TYPE> | ||
class AmazonWebServiceResult; | ||
|
||
namespace Utils | ||
{ | ||
namespace Json | ||
{ | ||
class JsonValue; | ||
} // namespace Json | ||
} // namespace Utils | ||
namespace SageMakerMetrics | ||
{ | ||
namespace Model | ||
{ | ||
class BatchGetMetricsResult | ||
{ | ||
public: | ||
AWS_SAGEMAKERMETRICS_API BatchGetMetricsResult(); | ||
AWS_SAGEMAKERMETRICS_API BatchGetMetricsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); | ||
AWS_SAGEMAKERMETRICS_API BatchGetMetricsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); | ||
|
||
|
||
///@{ | ||
/** | ||
* <p>The results of a query to retrieve training metrics from SageMaker.</p> | ||
*/ | ||
inline const Aws::Vector<MetricQueryResult>& GetMetricQueryResults() const{ return m_metricQueryResults; } | ||
inline void SetMetricQueryResults(const Aws::Vector<MetricQueryResult>& value) { m_metricQueryResults = value; } | ||
inline void SetMetricQueryResults(Aws::Vector<MetricQueryResult>&& value) { m_metricQueryResults = std::move(value); } | ||
inline BatchGetMetricsResult& WithMetricQueryResults(const Aws::Vector<MetricQueryResult>& value) { SetMetricQueryResults(value); return *this;} | ||
inline BatchGetMetricsResult& WithMetricQueryResults(Aws::Vector<MetricQueryResult>&& value) { SetMetricQueryResults(std::move(value)); return *this;} | ||
inline BatchGetMetricsResult& AddMetricQueryResults(const MetricQueryResult& value) { m_metricQueryResults.push_back(value); return *this; } | ||
inline BatchGetMetricsResult& AddMetricQueryResults(MetricQueryResult&& value) { m_metricQueryResults.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 BatchGetMetricsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} | ||
inline BatchGetMetricsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} | ||
inline BatchGetMetricsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} | ||
///@} | ||
private: | ||
|
||
Aws::Vector<MetricQueryResult> m_metricQueryResults; | ||
|
||
Aws::String m_requestId; | ||
}; | ||
|
||
} // namespace Model | ||
} // namespace SageMakerMetrics | ||
} // 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
Oops, something went wrong.