-
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.
Introduced support for G6e instance types on SageMaker Studio for Jup…
…yterLab and CodeEditor applications. QuickSight: 1. Add new API - ListFoldersForResource. 2. Commit mode adds visibility configuration of Apply button on multi-select controls for authors. Tagging support for Lambda event source mapping, and code signing configuration resources. This change is for releasing TestConnection api SDK model This release provides support for additional DRM configurations per SPEKE Version 2.0. Adds Bandwidth Reduction Filtering for HD AVC and HEVC encodes, multiplex container settings. This release adds the PullRequestComment field to CreateSyncConfiguration API input, UpdateSyncConfiguration API input, GetSyncConfiguration API output and ListSyncConfiguration API output WorkSpaces Secure Browser now enables Administrators to view and manage end-user browsing sessions via Session Management APIs.
- Loading branch information
1 parent
e9ec9c4
commit 8ab2e71
Showing
125 changed files
with
5,933 additions
and
118 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.408 | ||
1.11.409 |
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
31 changes: 31 additions & 0 deletions
31
...ed/src/aws-cpp-sdk-codeconnections/include/aws/codeconnections/model/PullRequestComment.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/codeconnections/CodeConnections_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace CodeConnections | ||
{ | ||
namespace Model | ||
{ | ||
enum class PullRequestComment | ||
{ | ||
NOT_SET, | ||
ENABLED, | ||
DISABLED | ||
}; | ||
|
||
namespace PullRequestCommentMapper | ||
{ | ||
AWS_CODECONNECTIONS_API PullRequestComment GetPullRequestCommentForName(const Aws::String& name); | ||
|
||
AWS_CODECONNECTIONS_API Aws::String GetNameForPullRequestComment(PullRequestComment value); | ||
} // namespace PullRequestCommentMapper | ||
} // namespace Model | ||
} // namespace CodeConnections | ||
} // 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
72 changes: 72 additions & 0 deletions
72
generated/src/aws-cpp-sdk-codeconnections/source/model/PullRequestComment.cpp
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,72 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#include <aws/codeconnections/model/PullRequestComment.h> | ||
#include <aws/core/utils/HashingUtils.h> | ||
#include <aws/core/Globals.h> | ||
#include <aws/core/utils/EnumParseOverflowContainer.h> | ||
|
||
using namespace Aws::Utils; | ||
|
||
|
||
namespace Aws | ||
{ | ||
namespace CodeConnections | ||
{ | ||
namespace Model | ||
{ | ||
namespace PullRequestCommentMapper | ||
{ | ||
|
||
static const int ENABLED_HASH = HashingUtils::HashString("ENABLED"); | ||
static const int DISABLED_HASH = HashingUtils::HashString("DISABLED"); | ||
|
||
|
||
PullRequestComment GetPullRequestCommentForName(const Aws::String& name) | ||
{ | ||
int hashCode = HashingUtils::HashString(name.c_str()); | ||
if (hashCode == ENABLED_HASH) | ||
{ | ||
return PullRequestComment::ENABLED; | ||
} | ||
else if (hashCode == DISABLED_HASH) | ||
{ | ||
return PullRequestComment::DISABLED; | ||
} | ||
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); | ||
if(overflowContainer) | ||
{ | ||
overflowContainer->StoreOverflow(hashCode, name); | ||
return static_cast<PullRequestComment>(hashCode); | ||
} | ||
|
||
return PullRequestComment::NOT_SET; | ||
} | ||
|
||
Aws::String GetNameForPullRequestComment(PullRequestComment enumValue) | ||
{ | ||
switch(enumValue) | ||
{ | ||
case PullRequestComment::NOT_SET: | ||
return {}; | ||
case PullRequestComment::ENABLED: | ||
return "ENABLED"; | ||
case PullRequestComment::DISABLED: | ||
return "DISABLED"; | ||
default: | ||
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); | ||
if(overflowContainer) | ||
{ | ||
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue)); | ||
} | ||
|
||
return {}; | ||
} | ||
} | ||
|
||
} // namespace PullRequestCommentMapper | ||
} // namespace Model | ||
} // namespace CodeConnections | ||
} // 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
Oops, something went wrong.