-
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 configuration of evaluation method for …
…composite rules in Glue Data Quality rulesets. Add RoamingDeviceSNR and RoamingDeviceRSSI to Customer Metrics. Added support for hsm type hsm2m.medium. Added supported for creating a cluster in FIPS or NON_FIPS mode. This feature allows customers to use their keys stored in KMS to derive a shared secret which can then be used to establish a secured channel for communication, provide proof of possession, or establish trust with other parties. This release adds support for CMAF ingest (DASH-IF live media ingest protocol interface 1)
- Loading branch information
1 parent
fbc2f92
commit 0bbe725
Showing
74 changed files
with
2,331 additions
and
287 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.348 | ||
1.11.349 |
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
generated/src/aws-cpp-sdk-cloudhsmv2/include/aws/cloudhsmv2/model/ClusterMode.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/cloudhsmv2/CloudHSMV2_EXPORTS.h> | ||
#include <aws/core/utils/memory/stl/AWSString.h> | ||
|
||
namespace Aws | ||
{ | ||
namespace CloudHSMV2 | ||
{ | ||
namespace Model | ||
{ | ||
enum class ClusterMode | ||
{ | ||
NOT_SET, | ||
FIPS, | ||
NON_FIPS | ||
}; | ||
|
||
namespace ClusterModeMapper | ||
{ | ||
AWS_CLOUDHSMV2_API ClusterMode GetClusterModeForName(const Aws::String& name); | ||
|
||
AWS_CLOUDHSMV2_API Aws::String GetNameForClusterMode(ClusterMode value); | ||
} // namespace ClusterModeMapper | ||
} // namespace Model | ||
} // namespace CloudHSMV2 | ||
} // 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.