-
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.
GetMetricDataV2 API: Update to include Contact Lens Conversational An…
…alytics Metrics Allows UpdateEnvironment to update the environment to 0 host capacity. New GetSignedBluinsightsUrl API Adds support for RACK_5U_C. This is the first AWS Snow Family device designed to meet U.S. Military Ruggedization Standards (MIL-STD-810H) with 208 vCPU device in a portable, compact 5U, half-rack width form-factor. Documentation updates for CodeGuru Security. This release adds support for Lex Developers to view analytics for their bots. Regex Validation on the ElasticSearch Engine Version attribute Added DOCX word document support to TranslateDocument API
- Loading branch information
1 parent
c884684
commit d32ba7f
Showing
212 changed files
with
26,175 additions
and
599 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.119 | ||
1.11.120 |
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
888 changes: 640 additions & 248 deletions
888
generated/src/aws-cpp-sdk-connect/include/aws/connect/model/GetMetricDataV2Request.h
Large diffs are not rendered by default.
Oops, something went wrong.
279 changes: 279 additions & 0 deletions
279
generated/src/aws-cpp-sdk-lexv2-models/include/aws/lexv2-models/LexModelsV2Client.h
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
31 changes: 31 additions & 0 deletions
31
generated/src/aws-cpp-sdk-lexv2-models/include/aws/lexv2-models/model/AnalyticsBinByName.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,31 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/lexv2-models/LexModelsV2_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace LexModelsV2 | ||
{ | ||
namespace Model | ||
{ | ||
enum class AnalyticsBinByName | ||
{ | ||
NOT_SET, | ||
ConversationStartTime, | ||
UtteranceTimestamp | ||
}; | ||
|
||
namespace AnalyticsBinByNameMapper | ||
{ | ||
AWS_LEXMODELSV2_API AnalyticsBinByName GetAnalyticsBinByNameForName(const Aws::String& name); | ||
|
||
AWS_LEXMODELSV2_API Aws::String GetNameForAnalyticsBinByName(AnalyticsBinByName value); | ||
} // namespace AnalyticsBinByNameMapper | ||
} // namespace Model | ||
} // namespace LexModelsV2 | ||
} // namespace Aws |
Oops, something went wrong.