Skip to content

Commit 2e8d691

Browse files
Update GetEmailIdentity and CreateEmailIdentity response to include SigningHostedZone in DkimAttributes. Updated PutEmailIdentityDkimSigningAttributes Response to include SigningHostedZone.
Add Dotnet 10 (dotnet10) support to AWS Lambda. This release adds new GetIdentityContext API, Dashboard customization options for tables and pivot tables, Visual styling options- borders and decals, map GeocodingPreferences, KeyPairCredentials for DataSourceCredentials. Snapshot APIs now support registered users. Parameters limit increased to 400 Add support for policy operations on the NETWORK SECURITY DIRECTOR POLICY policy type. Add SortBy parameter to ListSecrets
1 parent c537cbb commit 2e8d691

File tree

118 files changed

+5688
-212
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+5688
-212
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.708
1+
1.11.709

generated/src/aws-cpp-sdk-lambda/include/aws/lambda/model/Runtime.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ enum class Runtime {
5555
nodejs22_x,
5656
nodejs24_x,
5757
python3_14,
58-
java25
58+
java25,
59+
dotnet10
5960
};
6061

6162
namespace RuntimeMapper {

generated/src/aws-cpp-sdk-lambda/source/model/Runtime.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ static const int nodejs22_x_HASH = HashingUtils::HashString("nodejs22.x");
5959
static const int nodejs24_x_HASH = HashingUtils::HashString("nodejs24.x");
6060
static const int python3_14_HASH = HashingUtils::HashString("python3.14");
6161
static const int java25_HASH = HashingUtils::HashString("java25");
62+
static const int dotnet10_HASH = HashingUtils::HashString("dotnet10");
6263

6364
Runtime GetRuntimeForName(const Aws::String& name) {
6465
int hashCode = HashingUtils::HashString(name.c_str());
@@ -150,6 +151,8 @@ Runtime GetRuntimeForName(const Aws::String& name) {
150151
return Runtime::python3_14;
151152
} else if (hashCode == java25_HASH) {
152153
return Runtime::java25;
154+
} else if (hashCode == dotnet10_HASH) {
155+
return Runtime::dotnet10;
153156
}
154157
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
155158
if (overflowContainer) {
@@ -252,6 +255,8 @@ Aws::String GetNameForRuntime(Runtime enumValue) {
252255
return "python3.14";
253256
case Runtime::java25:
254257
return "java25";
258+
case Runtime::dotnet10:
259+
return "dotnet10";
255260
default:
256261
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
257262
if (overflowContainer) {

generated/src/aws-cpp-sdk-organizations/include/aws/organizations/OrganizationsClient.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,9 @@ class AWS_ORGANIZATIONS_API OrganizationsClient : public Aws::Client::AWSJsonCli
189189
* </p> </li> <li> <p> <a
190190
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html">BEDROCK_POLICY</a>
191191
* </p> </li> <li> <p> <a
192-
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html">S3_POLICY</a>
192+
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html">S3_POLICY</a>
193+
* </p> </li> <li> <p> <a
194+
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html">NETWORK_SECURITY_DIRECTOR_POLICY</a>
193195
* </p> </li> </ul> <p>You can only call this operation from the management account
194196
* or a member account that is a delegated administrator.</p><p><h3>See Also:</h3>
195197
* <a

generated/src/aws-cpp-sdk-organizations/include/aws/organizations/model/CreatePolicyRequest.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,9 @@ class CreatePolicyRequest : public OrganizationsRequest {
121121
* </p> </li> <li> <p> <a
122122
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html">BEDROCK_POLICY</a>
123123
* </p> </li> <li> <p> <a
124-
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html">S3_POLICY</a>
124+
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html">S3_POLICY</a>
125+
* </p> </li> <li> <p> <a
126+
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html">NETWORK_SECURITY_DIRECTOR_POLICY</a>
125127
* </p> </li> </ul>
126128
*/
127129
inline PolicyType GetType() const { return m_type; }

generated/src/aws-cpp-sdk-organizations/include/aws/organizations/model/DescribeEffectivePolicyRequest.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ class DescribeEffectivePolicyRequest : public OrganizationsRequest {
5353
* </p> </li> <li> <p> <a
5454
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html">BEDROCK_POLICY</a>
5555
* </p> </li> <li> <p> <a
56-
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html">S3_POLICY</a>
56+
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html">S3_POLICY</a>
57+
* </p> </li> <li> <p> <a
58+
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html">NETWORK_SECURITY_DIRECTOR_POLICY</a>
5759
* </p> </li> </ul>
5860
*/
5961
inline EffectivePolicyType GetPolicyType() const { return m_policyType; }

generated/src/aws-cpp-sdk-organizations/include/aws/organizations/model/DisablePolicyTypeRequest.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,9 @@ class DisablePolicyTypeRequest : public OrganizationsRequest {
7878
* </p> </li> <li> <p> <a
7979
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html">BEDROCK_POLICY</a>
8080
* </p> </li> <li> <p> <a
81-
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html">S3_POLICY</a>
81+
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html">S3_POLICY</a>
82+
* </p> </li> <li> <p> <a
83+
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html">NETWORK_SECURITY_DIRECTOR_POLICY</a>
8284
* </p> </li> </ul>
8385
*/
8486
inline PolicyType GetPolicyType() const { return m_policyType; }

generated/src/aws-cpp-sdk-organizations/include/aws/organizations/model/EffectivePolicyType.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ enum class EffectivePolicyType {
2121
INSPECTOR_POLICY,
2222
UPGRADE_ROLLOUT_POLICY,
2323
BEDROCK_POLICY,
24-
S3_POLICY
24+
S3_POLICY,
25+
NETWORK_SECURITY_DIRECTOR_POLICY
2526
};
2627

2728
namespace EffectivePolicyTypeMapper {

generated/src/aws-cpp-sdk-organizations/include/aws/organizations/model/EnablePolicyTypeRequest.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,9 @@ class EnablePolicyTypeRequest : public OrganizationsRequest {
7878
* </p> </li> <li> <p> <a
7979
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html">BEDROCK_POLICY</a>
8080
* </p> </li> <li> <p> <a
81-
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html">S3_POLICY</a>
81+
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html">S3_POLICY</a>
82+
* </p> </li> <li> <p> <a
83+
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html">NETWORK_SECURITY_DIRECTOR_POLICY</a>
8284
* </p> </li> </ul>
8385
*/
8486
inline PolicyType GetPolicyType() const { return m_policyType; }

generated/src/aws-cpp-sdk-organizations/include/aws/organizations/model/ListAccountsWithInvalidEffectivePolicyRequest.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ class ListAccountsWithInvalidEffectivePolicyRequest : public OrganizationsReques
5353
* </p> </li> <li> <p> <a
5454
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html">BEDROCK_POLICY</a>
5555
* </p> </li> <li> <p> <a
56-
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_S3.html">S3_POLICY</a>
56+
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html">S3_POLICY</a>
57+
* </p> </li> <li> <p> <a
58+
* href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html">NETWORK_SECURITY_DIRECTOR_POLICY</a>
5759
* </p> </li> </ul>
5860
*/
5961
inline EffectivePolicyType GetPolicyType() const { return m_policyType; }

0 commit comments

Comments
 (0)