Posts

AWS AppConfig Agent simplifies feature flag and configuration use for Amazon EC2 - devamazonaws.blogspot.com

AWS AppConfig , a capability of AWS Systems Manager , announces support for the AWS AppConfig Agent on Amazon Elastic Compute Cloud (Amazon EC2). AWS AppConfig allows customers to deploy faster and safer using feature flags and dynamic configuration, decoupling software releases from code deployments. The AWS AppConfig Agent is client-side software that manages configuration data on behalf of customers. Previously, customers needed to manage their own polling and caching of data when running applications on Amazon EC2. Now, the agent takes care of these tasks. With this update, the AWS AppConfig Agent now has native support for the following compute services: AWS Lambda, Amazon Elastic Container Service (Amazon ECS), Amazon Elastic Kubernetes Service (Amazon EKS), and Amazon EC2. Post Updated on July 21, 2023 at 11:20PM

AWS Config advanced queries support 65 new resource types - devamazonaws.blogspot.com

AWS Config supports 65 new resource types in advanced queries. The advanced queries feature provides a single query endpoint and a powerful query language to get current resource state metadata without performing service-specific describe API calls. You can use configuration aggregators to run the same queries from a central account across multiple accounts and AWS Regions. Post Updated on July 21, 2023 at 09:38PM

AWS PrivateLink announces integration with Amazon CloudWatch Contributor Insights - devamazonaws.blogspot.com

You can now enable CloudWatch Contributor Insights on your AWS PrivateLink-powered VPC Endpoint Services in 6 new regions- Asia Pacific (Hyderabad, Jakarta, Melbourne), Europe (Spain, Zurich) and Middle East (UAE). AWS PrivateLink is a fully-managed private connectivity service that enables customers to access AWS services, third-party services or internal enterprise services hosted on AWS in a secure and scalable manner while keeping network traffic private. CloudWatch Contributor Insights analyzes time-series data to report the top contributors and number of unique contributors in a dataset.  Post Updated on July 21, 2023 at 07:00PM

Amazon Connect launches CloudFormation support for routing profiles and queues - devamazonaws.blogspot.com

Amazon Connect now supports AWS CloudFormation for routing profile and queue resources, in addition to other resources used to configure a contact center like Connect instances, flows, S3 buckets and lambdas. You can use AWS CloudFormation templates to programmatically deploy Amazon Connect routing profiles and queues in a secure, efficient, and repeatable way, reducing the risk of human error from manual configuration. CloudFormation allows you to track changes over time, apply updates in a controlled and automated manner, and includes version controls so you can easy roll back changes if needed. Post Updated on July 21, 2023 at 06:17PM

[MS] How to clone a Windows Runtime map in the face of possible concurrent modification, part 3 - devamazonaws.blogspot.com

Last time, we developed some functions for cloning a Windows Runtime map via C++/WinRT . This time, we'll do it in C++/CX, for those still using that language. template<typename M> auto clone_as_kvp_vector(M const& m) { using KVP = decltype(m->First()->Current); std::vector<KVP> pairs; unsigned expected; unsigned actual; do { expected = m->Size; pairs.resize(expected + 1); try { actual = m->First()->GetMany(Platform:: ArrayReference<KVP>(pairs.data(), expected + 1)); } catch (Platform::ChangedStateException^) { continue; } } while (actual > expected); pairs.resize(actual); return pairs; } // override_or_fallback_t unchanged template<typename M, typename KeyOverride, typename ValueOverride> struct inferred_runtime_map_traits { using KVP = decltype(std::declval<M>()->First()->Current); using Key =...

[MS] .NET 8 Preview 5推出! - devamazonaws.blogspot.com

Image
作者:Jiachen Jiang  原文: Announcing .NET 8 Preview 5 - .NET Blog (microsoft.com) 我们很高兴与您分享 .NET 8 Preview 5 中的所有新功能和改进! 此版本是 Preview 4 版本 的后续版本。 在每月发布的版本中,您将看到更多新功能。.NET 6 和 7 用户可以密切关注此版本,而我们也正在努力使升级更方便。 您可以下载适用于 Windows、macOS 和 Linux 的 .NET 8 Preview 5 。 安装程序和二进制文件 容器图像 发行说明 已知的问题 GitHub 问题跟踪器 您可以查看Preview 5 版本中 ASP.NET Core 中的新增功能,并了解 .NET 8 中的新增功能 和即将推出的新功能。在整个版本中,这些新功能将会不断更新。 Microsoft Build 2023 取得了巨大的成功,这很大程度上归功于像您这样的 .NET 开发者!.NET团队举办的会议吸引了大量参与者 ,我们在会上讨论了 .NET 8 中一些令人兴奋的功能,并回答了与会者的问题。 请加入 Microsoft Build 2023 的 .NET 团队! 现在,让我们来看看.NET 8 中的一些新功能。 SDK : Metrics API 的增强 Preview 5 包含对 Metrics API 的许多改进和更新,涵盖了额外的用例。 依赖关系注入 ( DI ) 友好特性  API 我们推出了 IMeterFactory 接口,该接口可以向 DI 容器注册并用于在隔离的环境创建 Meter 对象。 // service is the DI IServiceCollection // Register the IMeterFactory to the DI container using the default meter factory implementation. services . AddMetrics (); 您现在可以使用下面的代码创建Meter工厂,并使用它来轻松创建新的Meter对象。 IMeterFacto...

[MS] Microsoft Build of OpenJDK – July 2023 Release - devamazonaws.blogspot.com

Hi Java community! We are happy to announce the latest July 2023 patch & security update release for the  Microsoft Build of OpenJDK . See the  release notes  for detailed changes present in the Microsoft Build of OpenJDK binaries. And  download  or  install  the binaries today. Microsoft Build of OpenJDK 17.0.8 ( release notes ) 11.0.20 ( release notes ) All binaries are available on their usual locations. For more details, see the download page . New feature enabled by default The release of MS Build of OpenJDK 17 and 11 now include an enhancement on escape analysis. With this feature, we identified latency improvements up to 13% on controlled benchmarks. The feature has been available in our previous builds and has been in use by production workloads across Microsoft, LinkedIn, and other systems. Now in the latest build it is enabled by default. If you do encounter a performance regression on a parti...