-
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.
This release adds support for toxicity detection and prompt safety cl…
…assification. Update to support new APIs for delivery of logs from AWS services. Adding EKS Anywhere subscription related operations. Support UBAM filetype for Omics Storage and make referenceArn optional AWS EBS now supports Block Public Access for EBS Snapshots. This release introduces the EnableSnapshotBlockPublicAccess, DisableSnapshotBlockPublicAccess and GetSnapshotBlockPublicAccessState APIs to manage account-level public access settings for EBS Snapshots in an AWS Region. This release adds the ability to integrate customer lambda functions with Connect attachments for scanning and updates the ListIntegrationAssociations API to support filtering on IntegrationArn. Added new ConcurrencyMode feature for AWS CloudFormation StackSets for faster deployments to target accounts. Add Custom runtime on Amazon Linux 2023 (provided.al2023) support to AWS Lambda. The Insights in Lake feature lets customers enable CloudTrail Insights on a source CloudTrail Lake event data store and create a destination event data store to collect Insights events based on unusual management event activity in the source event data store.
- Loading branch information
1 parent
69a1790
commit 50401cd
Showing
226 changed files
with
18,233 additions
and
1,388 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.198 | ||
1.11.199 |
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-cloudformation/include/aws/cloudformation/model/ConcurrencyMode.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/cloudformation/CloudFormation_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace CloudFormation | ||
{ | ||
namespace Model | ||
{ | ||
enum class ConcurrencyMode | ||
{ | ||
NOT_SET, | ||
STRICT_FAILURE_TOLERANCE, | ||
SOFT_FAILURE_TOLERANCE | ||
}; | ||
|
||
namespace ConcurrencyModeMapper | ||
{ | ||
AWS_CLOUDFORMATION_API ConcurrencyMode GetConcurrencyModeForName(const Aws::String& name); | ||
|
||
AWS_CLOUDFORMATION_API Aws::String GetNameForConcurrencyMode(ConcurrencyMode value); | ||
} // namespace ConcurrencyModeMapper | ||
} // namespace Model | ||
} // namespace CloudFormation | ||
} // 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.