-
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.
Updates entity to include Microsoft RDS SAL as a valid type of user s…
…ubscription. Reduce the minimum number of required attack sequence signals from 2 to 1 CloudWatch Database Insights now supports Amazon RDS. Add webhook status and status message to AWS CodeBuild webhooks Add support for toolbar configuration under user settings. Added new capability in the UpdateCluster operation to remove instance groups from your SageMaker HyperPod cluster.
- Loading branch information
1 parent
c6541cb
commit e82eab8
Showing
49 changed files
with
2,013 additions
and
858 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.510 | ||
1.11.511 |
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
33 changes: 33 additions & 0 deletions
33
generated/src/aws-cpp-sdk-codebuild/include/aws/codebuild/model/WebhookStatus.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,33 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/codebuild/CodeBuild_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace CodeBuild | ||
{ | ||
namespace Model | ||
{ | ||
enum class WebhookStatus | ||
{ | ||
NOT_SET, | ||
CREATING, | ||
CREATE_FAILED, | ||
ACTIVE, | ||
DELETING | ||
}; | ||
|
||
namespace WebhookStatusMapper | ||
{ | ||
AWS_CODEBUILD_API WebhookStatus GetWebhookStatusForName(const Aws::String& name); | ||
|
||
AWS_CODEBUILD_API Aws::String GetNameForWebhookStatus(WebhookStatus value); | ||
} // namespace WebhookStatusMapper | ||
} // namespace Model | ||
} // namespace CodeBuild | ||
} // 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
86 changes: 86 additions & 0 deletions
86
generated/src/aws-cpp-sdk-codebuild/source/model/WebhookStatus.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,86 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#include <aws/codebuild/model/WebhookStatus.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 CodeBuild | ||
{ | ||
namespace Model | ||
{ | ||
namespace WebhookStatusMapper | ||
{ | ||
|
||
static const int CREATING_HASH = HashingUtils::HashString("CREATING"); | ||
static const int CREATE_FAILED_HASH = HashingUtils::HashString("CREATE_FAILED"); | ||
static const int ACTIVE_HASH = HashingUtils::HashString("ACTIVE"); | ||
static const int DELETING_HASH = HashingUtils::HashString("DELETING"); | ||
|
||
|
||
WebhookStatus GetWebhookStatusForName(const Aws::String& name) | ||
{ | ||
int hashCode = HashingUtils::HashString(name.c_str()); | ||
if (hashCode == CREATING_HASH) | ||
{ | ||
return WebhookStatus::CREATING; | ||
} | ||
else if (hashCode == CREATE_FAILED_HASH) | ||
{ | ||
return WebhookStatus::CREATE_FAILED; | ||
} | ||
else if (hashCode == ACTIVE_HASH) | ||
{ | ||
return WebhookStatus::ACTIVE; | ||
} | ||
else if (hashCode == DELETING_HASH) | ||
{ | ||
return WebhookStatus::DELETING; | ||
} | ||
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); | ||
if(overflowContainer) | ||
{ | ||
overflowContainer->StoreOverflow(hashCode, name); | ||
return static_cast<WebhookStatus>(hashCode); | ||
} | ||
|
||
return WebhookStatus::NOT_SET; | ||
} | ||
|
||
Aws::String GetNameForWebhookStatus(WebhookStatus enumValue) | ||
{ | ||
switch(enumValue) | ||
{ | ||
case WebhookStatus::NOT_SET: | ||
return {}; | ||
case WebhookStatus::CREATING: | ||
return "CREATING"; | ||
case WebhookStatus::CREATE_FAILED: | ||
return "CREATE_FAILED"; | ||
case WebhookStatus::ACTIVE: | ||
return "ACTIVE"; | ||
case WebhookStatus::DELETING: | ||
return "DELETING"; | ||
default: | ||
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); | ||
if(overflowContainer) | ||
{ | ||
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue)); | ||
} | ||
|
||
return {}; | ||
} | ||
} | ||
|
||
} // namespace WebhookStatusMapper | ||
} // namespace Model | ||
} // namespace CodeBuild | ||
} // 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
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
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
Oops, something went wrong.