-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathCHANGELOG-1.11.x.md
More file actions
15931 lines (12199 loc) · 828 KB
/
CHANGELOG-1.11.x.md
File metadata and controls
15931 lines (12199 loc) · 828 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
_These are the changes made in the 1.11.x series of the SDK, starting with version 1.11.82._
_For the list of changes after (and including) version 1.12.1, check the main CHANGELOG file._
-----
# __1.11.1034__ __2021-06-04__
## __AWS CloudTrail__
- ### Features
- AWS CloudTrail supports data events on new service resources, including Amazon DynamoDB tables and S3 Object Lambda access points.
## __AWS Elemental MediaLive__
- ### Features
- Add support for automatically setting the H.264 adaptive quantization and GOP B-frame fields.
## __AWS Performance Insights__
- ### Features
- The new GetDimensionKeyDetails action retrieves the attributes of the specified dimension group for a DB instance or data source.
## __Amazon QLDB__
- ### Features
- Documentation updates for Amazon QLDB
## __Amazon Relational Database Service__
- ### Features
- Documentation updates for RDS: fixing an outdated link to the RDS documentation in DBInstance$DBInstanceStatus
## __Auto Scaling__
- ### Features
- Documentation updates for Amazon EC2 Auto Scaling
# __1.11.1033__ __2021-06-03__
## __AWS S3 Control__
- ### Features
- Amazon S3 Batch Operations now supports S3 Bucket Keys.
## __Amazon Forecast Service__
- ### Features
- Added optional field AutoMLOverrideStrategy to CreatePredictor API that allows users to customize AutoML strategy. If provided in CreatePredictor request, this field is visible in DescribePredictor and GetAccuracyMetrics responses.
## __Amazon Route 53 Resolver__
- ### Features
- Documentation updates for Route 53 Resolver
## __Amazon Simple Storage Service__
- ### Features
- S3 Inventory now supports Bucket Key Status
## __Amazon Simple Systems Manager (SSM)__
- ### Features
- Documentation updates for ssm to fix customer reported issue
# __1.11.1032__ __2021-06-02__
## __AWS Identity and Access Management__
- ### Features
- Documentation updates for AWS Identity and Access Management (IAM).
## __Amazon DocumentDB with MongoDB compatibility__
- ### Features
- This SDK release adds support for DocDB global clusters.
## __Amazon EC2 Container Service__
- ### Features
- Documentation updates for Amazon ECS.
## __Amazon Lightsail__
- ### Features
- Documentation updates for Lightsail
## __Auto Scaling__
- ### Features
- You can now launch EC2 instances with GP3 volumes when using Auto Scaling groups with Launch Configurations
## __Braket__
- ### Features
- Introduction of a RETIRED status for devices.
# __1.11.1031__ __2021-06-01__
## __AWS Cloud Map__
- ### Features
- Bugfixes - The DiscoverInstances API operation now provides an option to return all instances for health-checked services when there are no healthy instances available.
## __AWS IoT Wireless__
- ### Features
- Added six new public customer logging APIs to allow customers to set/get/reset log levels at resource type and resource id level. The log level set from the APIs will be used to filter log messages that can be emitted to CloudWatch in customer accounts.
## __Amazon Elastic Compute Cloud__
- ### Features
- Added idempotency to CreateNetworkInterface using the ClientToken parameter.
## __Amazon Polly__
- ### Features
- Amazon Polly adds new Canadian French voice - Gabrielle. Gabrielle is available as Neural voice only.
## __Amazon Simple Notification Service__
- ### Features
- This release adds SMS sandbox in Amazon SNS and the ability to view all configured origination numbers. The SMS sandbox provides a safe environment for sending SMS messages, without risking your reputation as an SMS sender.
# __1.11.1030__ __2021-05-28__
## __AWS DataSync__
- ### Features
- Added SecurityDescriptorCopyFlags option that allows for control of which components of SMB security descriptors are copied from source to destination objects.
## __Amazon Location Service__
- ### Features
- Adds support for calculation of routes, resource tagging and customer provided KMS keys.
## __Amazon Lookout for Metrics__
- ### Features
- Allowing dot(.) character in table name for RDS and Redshift as source connector.
# __1.11.1029__ __2021-05-27__
## __AWS Device Farm__
- ### Features
- Introduces support for using our desktop testing service with applications hosted within your Virtual Private Cloud (VPC).
## __AWS IoT Events__
- ### Features
- Releasing new APIs for AWS IoT Events Alarms
## __AWS IoT Events Data__
- ### Features
- Releasing new APIs for AWS IoT Events Alarms
## __AWS IoT SiteWise__
- ### Features
- IoT SiteWise Monitor Portal API updates to add alarms feature configuration.
## __AWS Resource Groups__
- ### Features
- Documentation updates for Resource Groups.
## __AWSKendraFrontendService__
- ### Features
- Amazon Kendra now suggests popular queries in order to help guide query typing and help overall accuracy.
## __Amazon FSx__
- ### Features
- This release adds LZ4 data compression support to FSx for Lustre to reduce storage consumption of both file system storage and file system backups.
## __Amazon Lightsail__
- ### Features
- Documentation updates for Lightsail
## __Amazon Simple Queue Service__
- ### Features
- Documentation updates for Amazon SQS for General Availability of high throughput for FIFO queues.
# __1.11.1028__ __2021-05-26__
## __Amazon Elastic Compute Cloud__
- ### Features
- This release removes resource ids and tagging support for VPC security group rules.
# __1.11.1027__ __2021-05-26__
## __AWS Certificate Manager Private Certificate Authority__
- ### Features
- This release enables customers to store CRLs in S3 buckets with Block Public Access enabled. The release adds the S3ObjectAcl parameter to the CreateCertificateAuthority and UpdateCertificateAuthority APIs to allow customers to choose whether their CRL will be publicly available.
## __AWS Outposts__
- ### Features
- Add ConflictException to DeleteOutpost, CreateOutpost
## __Amazon CloudFront__
- ### Features
- Documentation fix for CloudFront
## __Amazon EC2 Container Service__
- ### Features
- The release adds support for registering External instances to your Amazon ECS clusters.
## __Amazon Elastic Compute Cloud__
- ### Features
- This release adds resource ids and tagging support for VPC security group rules.
## __Amazon QLDB__
- ### Features
- Support STANDARD permissions mode in CreateLedger and DescribeLedger. Add UpdateLedgerPermissionsMode to update permissions mode on existing ledgers.
## __AmazonMWAA__
- ### Features
- Adds scheduler count selection for Environments using Airflow version 2.0.2 or later.
# __1.11.1026__ __2021-05-25__
## __AWS IoT__
- ### Features
- This release includes support for a new feature: Job templates for AWS IoT Device Management Jobs. The release includes job templates as a new resource and APIs for managing job templates.
## __AWS Transfer Family__
- ### Features
- AWS Transfer Family customers can now use AWS Managed Active Directory or AD Connector to authenticate their end users, enabling seamless migration of file transfer workflows that rely on AD authentication, without changing end users' credentials or needing a custom authorizer.
## __Amazon WorkSpaces__
- ### Features
- Adds support for Linux device types in WorkspaceAccessProperties
# __1.11.1025__ __2021-05-24__
## __AWS Compute Optimizer__
- ### Features
- Adds support for 1) additional instance types, 2) additional instance metrics, 3) finding reasons for instance recommendations, and 4) platform differences between a current instance and a recommended instance type.
## __AWS Cost Explorer Service__
- ### Features
- Introduced FindingReasonCodes, PlatformDifferences, DiskResourceUtilization and NetworkResourceUtilization to GetRightsizingRecommendation action
## __Amazon CloudWatch Logs__
- ### Features
- This release provides dimensions and unit support for metric filters.
## __Amazon Elastic Compute Cloud__
- ### Features
- This release adds support for creating and managing EC2 On-Demand Capacity Reservations on Outposts.
## __Amazon QuickSight__
- ### Features
- Add new parameters on RegisterUser and UpdateUser APIs to assign or update external ID associated to QuickSight users federated through web identity.
# __1.11.1024__ __2021-05-21__
## __AWS OpsWorks CM__
- ### Features
- New PUPPET_API_CRL attribute returned by DescribeServers API; new EngineVersion of 2019 available for Puppet Enterprise servers.
## __Amazon Elastic File System__
- ### Features
- EFS now supports account preferences. Utilizing the new capability, users can customize some aspects of their experience using EFS APIs and the EFS Console. The first preference clients are able to set is whether to start using longer File System and Mount Target IDs before EFS migrates to such IDs.
## __Amazon Forecast Service__
- ### Features
- Updated attribute statistics in DescribeDatasetImportJob response to support Long values
## __Amazon Simple Storage Service__
- ### Features
- Documentation updates for Amazon S3
# __1.11.1023__ __2021-05-20__
## __AWS Identity and Access Management__
- ### Features
- Documentation updates for AWS Identity and Access Management (IAM).
## __Amazon Lex Model Building V2__
- ### Features
- Customers can now use resource-based policies to control access to their Lex V2 bots. This release adds APIs to attach and manage permissions for a bot or a bot alias. For details, see: https://docs.aws.amazon.com/lexv2/latest/dg/security_iam_service-with-iam.html
## __Amazon Personalize__
- ### Features
- Added new API to stop a solution version creation that is pending or in progress for Amazon Personalize
## __Amazon QuickSight__
- ### Features
- Add ARN based Row Level Security support to CreateDataSet/UpdateDataSet APIs.
# __1.11.1022__ __2021-05-19__
## __AWS Identity and Access Management__
- ### Features
- Add pagination to ListUserTags operation
## __Amazon Elastic Kubernetes Service__
- ### Features
- Update the EKS AddonActive waiter.
## __Amazon Kinesis Analytics__
- ### Features
- Kinesis Data Analytics now allows rapid iteration on Apache Flink stream processing through the Kinesis Data Analytics Studio feature.
## __Amazon Lightsail__
- ### Features
- Documentation updates for Amazon Lightsail.
## __Amazon Rekognition__
- ### Features
- Amazon Rekognition Custom Labels adds support for customer managed encryption, using AWS Key Management Service, of image files copied into the service and files written back to the customer.
## __Auto Scaling__
- ### Features
- With this release, customers can easily use Predictive Scaling as a policy directly through Amazon EC2 Auto Scaling configurations to proactively scale their applications ahead of predicted demand.
# __1.11.1021__ __2021-05-18__
## __AWS App Runner__
- ### Features
- AWS App Runner is a service that provides a fast, simple, and cost-effective way to deploy from source code or a container image directly to a scalable and secure web application in the AWS Cloud.
## __AWS Compute Optimizer__
- ### Features
- This release enables compute optimizer to support exporting recommendations to Amazon S3 for EBS volumes and Lambda Functions.
## __AWS IoT SiteWise__
- ### Features
- Documentation updates for AWS IoT SiteWise.
## __AWS License Manager__
- ### Features
- AWS License Manager now supports periodic report generation.
## __AWS Support__
- ### Features
- Documentation updates for support
## __Amazon Lex Model Building V2__
- ### Features
- This release adds support for exporting and importing Lex V2 bots and bot locales. It also adds validations to enforce minimum number of tags on Lex V2 resources. For details, see https://docs.aws.amazon.com/lexv2/latest/dg/importing-exporting.html
## __Amazon Personalize__
- ### Features
- Amazon Personalize now supports the ability to optimize a solution for a custom objective in addition to maximizing relevance.
# __1.11.1020__ __2021-05-17__
## __AWS Application Cost Profiler__
- ### Features
- APIs for AWS Application Cost Profiler.
## __AWS IoT Core Device Advisor__
- ### Features
- AWS IoT Core Device Advisor is fully managed test capability for IoT devices. Device manufacturers can use Device Advisor to test their IoT devices for reliable and secure connectivity with AWS IoT.
## __AWS MediaConnect__
- ### Features
- MediaConnect now supports JPEG XS for AWS Cloud Digital Interface (AWS CDI) uncompressed workflows, allowing you to establish a bridge between your on-premises live video network and the AWS Cloud.
## __Amazon Augmented AI Runtime__
- ### Features
- Documentation updates for Amazon A2I Runtime model
## __Amazon ElastiCache__
- ### Features
- Documentation updates for elasticache
## __Amazon Neptune__
- ### Features
- Neptune support for CopyTagsToSnapshots
# __1.11.1019__ __2021-05-14__
## __AWS SecurityHub__
- ### Features
- Updated descriptions to add notes on array lengths.
## __Amazon CloudWatch Events__
- ### Features
- Update InputTransformer variable limit from 10 to 100 variables.
## __Amazon Detective__
- ### Features
- Updated descriptions of array parameters to add the restrictions on the array and value lengths.
## __Amazon Elasticsearch Service__
- ### Features
- Adds support for cold storage.
## __Amazon EventBridge__
- ### Features
- Update InputTransformer variable limit from 10 to 100 variables.
## __Amazon Macie 2__
- ### Features
- This release of the Amazon Macie API adds support for defining run-time, S3 bucket criteria for classification jobs. It also adds resources for querying data about AWS resources that Macie monitors.
## __Amazon Transcribe Service__
- ### Features
- Transcribe Medical now supports identification of PHI entities within transcripts
## __EC2 Image Builder__
- ### Features
- Text-only updates for bundled documentation feedback tickets - spring 2021.
# __1.11.1018__ __2021-05-12__
## __Amazon Elastic Compute Cloud__
- ### Features
- High Memory virtual instances are powered by Intel Sky Lake CPUs and offer up to 12TB of memory.
# __1.11.1017__ __2021-05-11__
## __AWS S3 Control__
- ### Features
- Documentation updates for Amazon S3-control
## __AWS Systems Manager Incident Manager__
- ### Features
- AWS Systems Manager Incident Manager enables faster resolution of critical application availability and performance issues, management of contacts and post-incident analysis
## __AWS Systems Manager Incident Manager Contacts__
- ### Features
- AWS Systems Manager Incident Manager enables faster resolution of critical application availability and performance issues, management of contacts and post incident analysis
## __Amazon Transcribe Streaming Service__
- ### Features
- Amazon Transcribe supports partial results stabilization for streaming transcription.
# __1.11.1016__ __2021-05-10__
## __AWS Config__
- ### Features
- Adds paginator to multiple APIs: By default, the paginator allows user to iterate over the results and allows the CLI to return up to 1000 results.
## __AWS Elemental MediaConvert__
- ### Features
- AWS Elemental MediaConvert SDK has added support for Kantar SNAP File Audio Watermarking with a Kantar Watermarking account, and Display Definition Segment(DDS) segment data controls for DVB-Sub caption outputs.
## __AWS IoT Wireless__
- ### Features
- Add three new optional fields to support filtering and configurable sub-band in WirelessGateway APIs. The filtering is for all the RF region supported. The sub-band configuration is only applicable to LoRa gateways of US915 or AU915 RF region.
## __Amazon EC2 Container Service__
- ### Features
- This release contains updates for Amazon ECS.
## __Amazon Elastic Kubernetes Service__
- ### Features
- This release updates create-nodegroup and update-nodegroup-config APIs for adding/updating taints on managed nodegroups.
## __Amazon Kinesis Analytics__
- ### Features
- Amazon Kinesis Analytics now supports ListApplicationVersions and DescribeApplicationVersion API for Apache Flink applications
## __Amazon Simple Systems Manager (SSM)__
- ### Features
- This release adds new APIs to associate, disassociate and list related items in SSM OpsCenter; and this release adds DisplayName as a version-level attribute for SSM Documents and introduces two new document types: ProblemAnalysis, ProblemAnalysisTemplate.
## __CodeArtifact__
- ### Features
- Documentation updates for CodeArtifact
# __1.11.1015__ __2021-05-07__
## __AWS Lake Formation__
- ### Features
- This release adds Tag Based Access Control to AWS Lake Formation service
## __Amazon Connect Service__
- ### Features
- Adds tagging support for Connect APIs CreateIntegrationAssociation and CreateUseCase.
## __Amazon Lookout for Metrics__
- ### Features
- Enforcing UUID style for parameters that are already in UUID format today. Documentation specifying eventual consistency of lookoutmetrics resources.
# __1.11.1014__ __2021-05-06__
## __AWS Cloud Map__
- ### Features
- Bugfix: Improved input validation for RegisterInstance action, InstanceId field
## __Amazon Import/Export Snowball__
- ### Features
- AWS Snow Family adds APIs for ordering and managing Snow jobs with long term pricing
## __Amazon Simple Systems Manager (SSM)__
- ### Features
- SSM feature release - ChangeCalendar integration with StateManager.
## __Managed Streaming for Kafka__
- ### Features
- IAM Access Control for Amazon MSK enables you to create clusters that use IAM to authenticate clients and to allow or deny Apache Kafka actions for those clients.
# __1.11.1013__ __2021-05-05__
## __AWS Audit Manager__
- ### Features
- This release updates the CreateAssessmentFrameworkControlSet and UpdateAssessmentFrameworkControlSet API data types. For both of these data types, the control set name is now a required attribute.
## __Amazon Kinesis Analytics__
- ### Features
- Amazon Kinesis Analytics now supports RollbackApplication for Apache Flink applications to revert the application to the previous running version
## __Amazon SageMaker Service__
- ### Features
- Amazon SageMaker Autopilot now provides the ability to automatically deploy the best model to an endpoint
## __AmazonNimbleStudio__
- ### Features
- Documentation Updates for Amazon Nimble Studio.
# __1.11.1012__ __2021-05-04__
## __AWS FinSpace__
- ### Bugfixes
- Send the correct `Content-Type` headers for requests.
## __AWS FinSpace Data__
- ### Bugfixes
- Send the correct `Content-Type` for requests.
## __FinSpace Public API__
- ### Features
- Documentation updates for FinSpaceData API.
## __FinSpace User Environment Management service__
- ### Features
- Documentation updates for FinSpace API.
# __1.11.1011__ __2021-05-04__
## __AWS Certificate Manager Private Certificate Authority__
- ### Features
- This release adds the KeyStorageSecurityStandard parameter to the CreateCertificateAuthority API to allow customers to mandate a security standard to which the CA key will be stored within.
## __AWS Health APIs and Notifications__
- ### Features
- Documentation updates for health
## __Amazon Chime__
- ### Features
- This release adds the ability to search for and order international phone numbers for Amazon Chime SIP media applications.
## __Amazon DevOps Guru__
- ### Features
- Added GetCostEstimation and StartCostEstimation to get the monthly resource usage cost and added ability to view resource health by AWS service name and to search insights be AWS service name.
## __Amazon SageMaker Service__
- ### Features
- Enable retrying Training and Tuning Jobs that fail with InternalServerError by setting RetryStrategy.
# __1.11.1010__ __2021-05-03__
## __AWS SecurityHub__
- ### Features
- Updated ASFF to add the following new resource details objects: AwsEc2NetworkAcl, AwsEc2Subnet, and AwsElasticBeanstalkEnvironment.
## __Amazon Chime__
- ### Features
- Added new BatchCreateChannelMembership API to support multiple membership creation for channels
## __Amazon Mechanical Turk__
- ### Features
- Documentation updates for Amazon Mechanical Turk, GetAccountBalanceOperation operation
## __FinSpace Public API__
- ### Features
- This is the initial SDK release for the data APIs for Amazon FinSpace. Amazon FinSpace is a data management and analytics application for the financial services industry (FSI).
## __FinSpace User Environment Management service__
- ### Features
- This is the initial SDK release for the management APIs for Amazon FinSpace. Amazon FinSpace is a data management and analytics service for the financial services industry (FSI).
# __1.11.1009__ __2021-04-30__
## __AWS Marketplace Catalog Service__
- ### Features
- Allows user defined names for Changes in a ChangeSet. Users can use ChangeNames to reference properties in another Change within a ChangeSet. This feature allows users to make changes to an entity when the entity identifier is not yet available while constructing the StartChangeSet request.
## __AWS RoboMaker__
- ### Features
- Adds ROS2 Foxy as a supported Robot Software Suite Version and Gazebo 11 as a supported Simulation Software Suite Version
## __Amazon CloudFront__
- ### Features
- CloudFront now supports CloudFront Functions, a native feature of CloudFront that enables you to write lightweight functions in JavaScript for high-scale, latency-sensitive CDN customizations.
## __Amazon Connect Customer Profiles__
- ### Features
- This release introduces GetMatches and MergeProfiles APIs to fetch and merge duplicate profiles
## __Amazon Forecast Service__
- ### Features
- Added new DeleteResourceTree operation that helps in deleting all the child resources of a given resource including the given resource.
## __Amazon Personalize__
- ### Features
- Update URL for dataset export job documentation.
# __1.11.1008__ __2021-04-29__
## __AWS Organizations__
- ### Features
- Minor text updates for AWS Organizations API Reference
## __Amazon Chime__
- ### Features
- Increase AppInstanceUserId length to 64 characters
## __Amazon EC2 Container Service__
- ### Features
- Add support for EphemeralStorage on TaskDefinition and TaskOverride
## __Amazon Macie 2__
- ### Features
- The Amazon Macie API now provides S3 bucket metadata that indicates whether a bucket policy requires server-side encryption of objects when objects are uploaded to the bucket.
# __1.11.1007__ __2021-04-28__
## __AWS CloudFormation__
- ### Features
- Add CallAs parameter to GetTemplateSummary to enable use with StackSets delegated administrator integration
## __AWS Elemental MediaPackage VOD__
- ### Features
- MediaPackage now offers the option to place your Sequence Parameter Set (SPS), Picture Parameter Set (PPS), and Video Parameter Set (VPS) encoder metadata in every video segment instead of in the init fragment for DASH and CMAF endpoints.
## __AWS IoT SiteWise__
- ### Features
- AWS IoT SiteWise interpolation API will get interpolated values for an asset property per specified time interval during a period of time.
## __Amazon Connect Service__
- ### Features
- Updated max number of tags that can be attached from 200 to 50. MaxContacts is now an optional parameter for the UpdateQueueMaxContact API.
## __AmazonNimbleStudio__
- ### Features
- Amazon Nimble Studio is a virtual studio service that empowers visual effects, animation, and interactive content teams to create content securely within a scalable, private cloud service.
# __1.11.1006__ __2021-04-27__
## __AWS Audit Manager__
- ### Features
- This release restricts using backslashes in control, assessment, and framework names. The controlSetName field of the UpdateAssessmentFrameworkControlSet API now allows strings without backslashes.
# __1.11.1005__ __2021-04-26__
## __AWS Elemental MediaConvert__
- ### Features
- Documentation updates for mediaconvert
## __AWS Glue__
- ### Features
- Adding Kafka Client Auth Related Parameters
## __AWS IoT Wireless__
- ### Features
- Add a new optional field MessageType to support Sidewalk devices in SendDataToWirelessDevice API
## __Amazon CodeGuru Reviewer__
- ### Features
- Include KMS Key Details in Repository Association APIs to enable usage of customer managed KMS Keys.
## __Amazon Elastic Compute Cloud__
- ### Features
- Adding support for Red Hat Enterprise Linux with HA for Reserved Instances.
## __Amazon Elastic Kubernetes Service__
- ### Features
- This release updates existing Amazon EKS input validation so customers will see an InvalidParameterException instead of a ParamValidationError when they enter 0 for minSize and/or desiredSize. It also adds LaunchTemplate information to update responses and a new "CUSTOM" value for AMIType.
## __Amazon Kinesis Analytics__
- ### Features
- Amazon Kinesis Data Analytics now supports custom application maintenance configuration using UpdateApplicationMaintenanceConfiguration API for Apache Flink applications. Customers will have visibility when their application is under maintenance status using 'MAINTENANCE' application status.
## __Amazon Personalize__
- ### Features
- Added support for exporting data imported into an Amazon Personalize dataset to a specified data source (Amazon S3 bucket).
# __1.11.1004__ __2021-04-23__
## __AWS Elemental MediaPackage__
- ### Features
- Add support for Widevine DRM on CMAF origin endpoints. Both Widevine and FairPlay DRMs can now be used simultaneously, with CBCS encryption.
## __Amazon Simple Notification Service__
- ### Features
- Amazon SNS adds two new attributes, TemplateId and EntityId, for using sender IDs to send SMS messages to destinations in India.
# __1.11.1003__ __2021-04-22__
## __AWS SecurityHub__
- ### Features
- Replaced the term "master" with "administrator". Added new actions to replace AcceptInvitation, GetMasterAccount, and DisassociateFromMasterAccount. In Member, replaced MasterId with AdministratorId.
## __Amazon Cognito Identity Provider__
- ### Features
- Documentation updates for cognito-idp
## __Amazon ElastiCache__
- ### Features
- This release introduces log delivery of Redis slow log from Amazon ElastiCache.
## __Amazon Forecast Service__
- ### Features
- This release adds EstimatedTimeRemaining minutes field to the DescribeDatasetImportJob, DescribePredictor, DescribeForecast API response which denotes the time remaining to complete the job IN_PROGRESS.
# __1.11.1002__ __2021-04-21__
## __AWS CloudFormation__
- ### Features
- Added support for creating and updating stack sets with self-managed permissions from templates that reference macros.
## __AWS Ground Station__
- ### Features
- Support new S3 Recording Config allowing customers to write downlink data directly to S3.
## __AWSKendraFrontendService__
- ### Features
- Amazon Kendra now enables users to override index-level boosting configurations for each query.
## __Amazon Detective__
- ### Features
- Added parameters to track the data volume in bytes for a member account. Deprecated the existing parameters that tracked the volume as a percentage of the allowed volume for a behavior graph. Changes reflected in MemberDetails object.
## __Amazon Redshift__
- ### Features
- Add operations: AddPartner, DescribePartners, DeletePartner, and UpdatePartnerStatus to support tracking integration status with data partners.
# __1.11.1001__ __2021-04-19__
## __AWS Cost Explorer Service__
- ### Features
- Adding support for Sagemaker savings plans in GetSavingsPlansPurchaseRecommendation API
## __AWS Savings Plans__
- ### Features
- Added support for Amazon SageMaker in Machine Learning Savings Plans
# __1.11.1000__ __2021-04-15__
## __AWS Database Migration Service__
- ### Features
- AWS DMS added support of TLS for Kafka endpoint. Added Describe endpoint setting API for DMS endpoints.
## __AWS Security Token Service__
- ### Features
- STS now supports assume role with Web Identity using JWT token length upto 20000 characters
# __1.11.999__ __2021-04-14__
## __AWS CodeStar connections__
- ### Features
- This release adds tagging support for CodeStar Connections Host resources
## __AWS Config__
- ### Features
- Add exception for DeleteRemediationConfiguration and DescribeRemediationExecutionStatus
## __AWS MediaConnect__
- ### Features
- For flows that use Listener protocols, you can now easily locate an output's outbound IP address for a private internet. Additionally, MediaConnect now supports the Waiters feature that makes it easier to poll for the status of a flow until it reaches its desired state.
## __Amazon Route 53__
- ### Features
- Documentation updates for route53
# __1.11.998__ __2021-04-13__
## __AWS Comprehend Medical__
- ### Features
- The InferICD10CM API now returns TIME_EXPRESSION entities that refer to medical conditions.
## __AWS Security Token Service__
- ### Features
- This release adds the SourceIdentity parameter that can be set when assuming a role.
## __Amazon Lightsail__
- ### Features
- Documentation updates for Amazon Lightsail.
## __Amazon Redshift__
- ### Features
- Added support to enable AQUA in Amazon Redshift clusters.
## __Amazon Relational Database Service__
- ### Features
- Clarify that enabling or disabling automated backups causes a brief downtime, not an outage.
# __1.11.997__ __2021-04-12__
## __AWS CodeBuild__
- ### Features
- AWS CodeBuild now allows you to set the access permissions for build artifacts, project artifacts, and log files that are uploaded to an Amazon S3 bucket that is owned by another account.
## __Amazon FSx__
- ### Features
- Support for cross-region and cross-account backup copies
# __1.11.996__ __2021-04-09__
## __AWS Shield__
- ### Features
- CreateProtection now throws InvalidParameterException instead of InternalErrorException when system tags (tag with keys prefixed with "aws:") are passed in.
## __Amazon Elastic Compute Cloud__
- ### Features
- Add paginator support to DescribeStoreImageTasks and update documentation.
## __Amazon Redshift__
- ### Features
- Add support for case sensitive table level restore
# __1.11.995__ __2021-04-08__
## __AWS Resource Access Manager__
- ### Features
- Documentation updates for AWS RAM resource sharing
## __AWS RoboMaker__
- ### Features
- This release allows RoboMaker customers to specify custom tools to run with their simulation job
## __Amazon AppStream__
- ### Features
- This release provides support for image updates
## __Amazon Connect Customer Profiles__
- ### Features
- Documentation updates for Put-Integration API
## __Amazon Kinesis Video Streams Archived Media__
- ### Features
- Documentation updates for archived.kinesisvideo
## __Amazon Lookout for Equipment__
- ### Features
- This release introduces support for Amazon Lookout for Equipment.
## __Auto Scaling__
- ### Features
- Amazon EC2 Auto Scaling announces Warm Pools that help applications to scale out faster by pre-initializing EC2 instances and save money by requiring fewer continuously running instances
# __1.11.994__ __2021-04-07__
## __AWS Storage Gateway__
- ### Features
- File Gateway APIs now support FSx for Windows as a cloud storage.
## __Access Analyzer__
- ### Features
- IAM Access Analyzer now analyzes your CloudTrail events to identify actions and services that have been used by an IAM entity (user or role) and generates an IAM policy that is based on that activity.
## __Amazon ElastiCache__
- ### Features
- This release adds tagging support for all AWS ElastiCache resources except Global Replication Groups.
## __Amazon Interactive Video Service__
- ### Features
- This release adds support for the Auto-Record to S3 feature. Amazon IVS now enables you to save your live video to Amazon S3.
## __Application Migration Service__
- ### Features
- Add new service - Application Migration Service.
# __1.11.993__ __2021-04-06__
## __AWS Cloud9__
- ### Features
- Documentation updates for Cloud9
## __AWS Elemental MediaLive__
- ### Features
- MediaLive VPC outputs update to include Availability Zones, Security groups, Elastic Network Interfaces, and Subnet Ids in channel response
## __AWS Kinesis Video__
- ### Features
- Update Netty to `4.1.61.Final`.
## __Amazon Elastic Compute Cloud__
- ### Features
- This release adds support for storing EBS-backed AMIs in S3 and restoring them from S3 to enable cross-partition copying of AMIs
## __Amazon Simple Systems Manager (SSM)__
- ### Features
- Supports removing a label or labels from a parameter, enables ScheduledEndTime and ChangeDetails for StartChangeRequestExecution API, supports critical/security/other noncompliant count for patch API.
# __1.11.992__ __2021-04-05__
## __AWS Audit Manager__
- ### Features
- AWS Audit Manager has updated the GetAssessment API operation to include a new response field called userRole. The userRole field indicates the role information and IAM ARN of the API caller.
## __AWS Elemental MediaLive__
- ### Features
- MediaLive now support HTML5 Motion Graphics overlay
## __Amazon Appflow__
- ### Features
- Added destination properties for Zendesk.
# __1.11.991__ __2021-04-02__
## __AWS Elemental MediaPackage__
- ### Features
- SPEKE v2 is an upgrade to the existing SPEKE API to support multiple encryption keys, based on an encryption contract selected by the customer.
## __EC2 Image Builder__
- ### Features
- This release adds support for Block Device Mappings for container image builds, and adds distribution configuration support for EC2 launch templates in AMI builds.
# __1.11.990__ __2021-04-01__
## __AWS Elemental MediaConvert__
- ### Features
- MediaConvert now supports HLS ingest, sidecar WebVTT ingest, Teletext color & style passthrough to TTML subtitles, TTML to WebVTT subtitle conversion with style, & DRC profiles in AC3 audio.
## __AWS WAFV2__
- ### Features
- Added support for ScopeDownStatement for ManagedRuleGroups, Labels, LabelMatchStatement, and LoggingFilter. For more information on these features, see the AWS WAF Developer Guide.
## __AWSKendraFrontendService__
- ### Features
- AWS Kendra's ServiceNow data source now supports OAuth 2.0 authentication and knowledge article filtering via a ServiceNow query.
## __Amazon Elastic Compute Cloud__
- ### Features
- VPC Flow Logs Service adds a new API, GetFlowLogsIntegrationTemplate, which generates CloudFormation templates for Athena. For more info, see https://docs.aws.amazon.com/console/vpc/flow-logs/athena
## __Amazon Lex Model Building Service__
- ### Features
- Lex now supports the ja-JP locale
## __Amazon Lex Runtime Service__
- ### Features
- Amazon Lex now supports base64-encoded message and input transcript fields.
## __Amazon Lightsail__
- ### Features
- - This release adds support for state detail for Amazon Lightsail container services.
## __Amazon Route 53 Resolver__
- ### Features
- Route 53 Resolver DNS Firewall is a firewall service that allows you to filter and regulate outbound DNS traffic for your VPCs.
## __Firewall Management Service__
- ### Features
- Added Firewall Manager policy support for AWS Route 53 Resolver DNS Firewall.
# __1.11.989__ __2021-03-31__
## __AWS Batch__
- ### Features
- AWS Batch adds support for Amazon EFS File System
## __AWS Cloud9__
- ### Features
- Add ImageId input parameter to CreateEnvironmentEC2 endpoint. New parameter enables creation of environments with different AMIs.
## __AWS CloudFormation__
- ### Features
- 1. Added a new parameter "RegionConcurrencyType" in OperationPreferences. 2. Changed the name of "AccountUrl" to "AccountsUrl" in "DeploymentTargets" parameter.
## __AWS Data Pipeline__
- ### Features
- Minor documentation updates and link updates.
## __AWS Direct Connect__
- ### Features
- This release adds MACsec support to AWS Direct Connect
## __AWS IoT__
- ### Features
- Added ability to prefix search on attribute value for ListThings API.
## __AWS IoT Wireless__
- ### Features
- Add Sidewalk support to APIs: GetWirelessDevice, ListWirelessDevices, GetWirelessDeviceStatistics. Add Gateway connection status in GetWirelessGatewayStatistics API.
## __AWS Price List Service__
- ### Features
- Minor documentation and link updates.
## __Amazon CloudHSM__
- ### Features
- Minor documentation and link updates.
## __Amazon Cognito Sync__
- ### Features
- Minor documentation updates and link updates.
## __Amazon Comprehend__
- ### Features
- Support for customer managed KMS encryption of Comprehend custom models
## __Amazon Detective__
- ### Features
- Added the ability to assign tag values to Detective behavior graphs. Tag values can be used for attribute-based access control, and for cost allocation for billing.
## __Amazon Machine Learning__
- ### Features
- Minor documentation updates and link updates.
## __Amazon Redshift__
- ### Features
- Enable customers to share access to their Redshift clusters from other VPCs (including VPCs from other accounts).
## __Amazon Transcribe Service__
- ### Features
- Amazon Transcribe now supports creating custom language models in the following languages: British English (en-GB), Australian English (en-AU), Indian Hindi (hi-IN), and US Spanish (es-US).
## __Amazon WorkMail__
- ### Features
- This release adds support for mobile device access rules management in Amazon WorkMail.
# __1.11.988__ __2021-03-30__
## __AWS Config__
- ### Features
- Adding new APIs to support ConformancePack Compliance CI in Aggregators
## __AWS EC2 Instance Connect__
- ### Features
- Adding support to push SSH keys to the EC2 serial console in order to allow an SSH connection to your Amazon EC2 instance's serial port.
## __AWS Glue DataBrew__
- ### Features
- This SDK release adds two new dataset features: 1) support for specifying a database connection as a dataset input 2) support for dynamic datasets that accept configurable parameters in S3 path.
## __Amazon CloudWatch__
- ### Features
- SDK update for new Metric Streams feature
## __Amazon Elastic Compute Cloud__
- ### Features
- ReplaceRootVolume feature enables customers to replace the EBS root volume of a running instance to a previously known state. Add support to grant account-level access to the EC2 serial console
## __Amazon Fraud Detector__
- ### Features
- This release adds support for Batch Predictions in Amazon Fraud Detector.
## __Amazon Pinpoint__
- ### Features
- Added support for journey pause/resume, journey updatable import segment and journey quiet time wait.
## __Amazon SageMaker Service__
- ### Features
- Amazon SageMaker Autopilot now supports 1) feature importance reports for AutoML jobs and 2) PartialFailures for AutoML jobs
# __1.11.987__ __2021-03-29__
## __AWS Glue__
- ### Features
- Allow Dots in Registry and Schema Names for CreateRegistry, CreateSchema; Fixed issue when duplicate keys are present and not returned as part of QuerySchemaVersionMetadata.
## __AWS Identity and Access Management__
- ### Features
- AWS Identity and Access Management GetAccessKeyLastUsed API will throw a custom error if customer public key is not found for access keys.
## __AWS WAFV2__
- ### Features
- Added custom request handling and custom response support in rule actions and default action; Added the option to inspect the web request body as parsed and filtered JSON.
## __Amazon DocumentDB with MongoDB compatibility__
- ### Features
- This release adds support for Event Subscriptions to DocumentDB.
## __Amazon Location Service__
- ### Features
- Amazon Location added support for specifying pricing plan information on resources in alignment with our cost model.
# __1.11.986__ __2021-03-26__
## __AWS IoT Wireless__