Skip to content

Commit f16a3af

Browse files
authored
Merge branch 'main' into patch9
2 parents bdc1849 + dcbed91 commit f16a3af

File tree

1,429 files changed

+11415
-4290
lines changed

Some content is hidden

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

1,429 files changed

+11415
-4290
lines changed

.github/workflows/slack.yml

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
types:
66
- opened
77
- closed
8+
pull_request:
9+
types:
10+
- opened
11+
- closed
812

913
permissions:
1014
contents: read
@@ -21,7 +25,7 @@ jobs:
2125
curl \
2226
-X POST \
2327
-H 'Content-Type: application/json' \
24-
-d '{"type": "issues_opened", "id": "${{ github.event.issue.number }}", "title": "$ISSUE_TITLE"}' \
28+
-d '{"type": "issues_opened", "id": "${{ github.event.issue.number }}", "title": "'"$ISSUE_TITLE"'"}' \
2529
${{ secrets.CI_SLACK_WEBHOOK_URL }}
2630
2731
on-issue-closed:
@@ -35,5 +39,33 @@ jobs:
3539
curl \
3640
-X POST \
3741
-H 'Content-Type: application/json' \
38-
-d '{"type": "issues_closed", "id": "${{ github.event.issue.number }}", "title": "$ISSUE_TITLE"}' \
42+
-d '{"type": "issues_closed", "id": "${{ github.event.issue.number }}", "title": "'"$ISSUE_TITLE"'"}' \
43+
${{ secrets.CI_SLACK_WEBHOOK_URL }}
44+
45+
on-pr-opened:
46+
runs-on: ubuntu-latest
47+
if: github.event_name == 'pull_request' && github.event.action == 'opened'
48+
steps:
49+
- name: notify
50+
env:
51+
PR_TITLE: ${{ github.event.pull_request.title }}
52+
run: |
53+
curl \
54+
-X POST \
55+
-H 'Content-Type: application/json' \
56+
-d '{"type": "pullrequest_opened", "id": "${{ github.event.pull_request.number }}", "title": "'"$PR_TITLE"'"}' \
57+
${{ secrets.CI_SLACK_WEBHOOK_URL }}
58+
59+
on-pr-closed:
60+
runs-on: ubuntu-latest
61+
if: github.event_name == 'pull_request' && github.event.action == 'closed'
62+
steps:
63+
- name: notify
64+
env:
65+
PR_TITLE: ${{ github.event.pull_request.title }}
66+
run: |
67+
curl \
68+
-X POST \
69+
-H 'Content-Type: application/json' \
70+
-d '{"type": "pullrequest_closed", "id": "${{ github.event.pull_request.number }}", "title": "'"$PR_TITLE"'"}' \
3971
${{ secrets.CI_SLACK_WEBHOOK_URL }}

CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
# Release (2026-01-09)
2+
3+
## General Highlights
4+
* **Dependency Update**: Updated to the latest SDK module versions
5+
6+
## Module Highlights
7+
* `github.com/aws/aws-sdk-go-v2/service/bedrockagentcorecontrol`: [v1.17.0](service/bedrockagentcorecontrol/CHANGELOG.md#v1170-2026-01-09)
8+
* **Feature**: Adds optional field "view" to GetMemory API input to give customers control over whether CMK encrypted data such as strategy decryption or override prompts is returned or not.
9+
* `github.com/aws/aws-sdk-go-v2/service/cloudfront`: [v1.59.0](service/cloudfront/CHANGELOG.md#v1590-2026-01-09)
10+
* **Feature**: Added EntityLimitExceeded exception handling to the following API operations AssociateDistributionWebACL, AssociateDistributionTenantWebACL, UpdateDistributionWithStagingConfig
11+
* `github.com/aws/aws-sdk-go-v2/service/glue`: [v1.136.0](service/glue/CHANGELOG.md#v11360-2026-01-09)
12+
* **Feature**: Adding MaterializedViews task run APIs
13+
* `github.com/aws/aws-sdk-go-v2/service/medialive`: [v1.89.0](service/medialive/CHANGELOG.md#v1890-2026-01-09)
14+
* **Feature**: MediaPackage v2 output groups in MediaLive can now accept one additional destination for single pipeline channels and up to two additional destinations for standard channels. MediaPackage v2 destinations now support sending to cross region MediaPackage channels.
15+
* `github.com/aws/aws-sdk-go-v2/service/transcribe`: [v1.54.0](service/transcribe/CHANGELOG.md#v1540-2026-01-09)
16+
* **Feature**: Adds waiters to Amazon Transcribe.
17+
18+
# Release (2026-01-07)
19+
20+
## Module Highlights
21+
* `github.com/aws/aws-sdk-go-v2/service/workspaces`: [v1.65.0](service/workspaces/CHANGELOG.md#v1650-2026-01-07)
22+
* **Feature**: Add StateMessage and ProgressPercentage fields to DescribeCustomWorkspaceImageImport API response.
23+
24+
# Release (2026-01-06)
25+
26+
## Module Highlights
27+
* `github.com/aws/aws-sdk-go-v2/service/costexplorer`: [v1.63.0](service/costexplorer/CHANGELOG.md#v1630-2026-01-06)
28+
* **Feature**: This release updates existing reservation recommendations API to support deployment model.
29+
* `github.com/aws/aws-sdk-go-v2/service/emrserverless`: [v1.39.0](service/emrserverless/CHANGELOG.md#v1390-2026-01-06)
30+
* **Feature**: Added support for enabling disk encryption using customer managed AWS KMS keys to CreateApplication, UpdateApplication and StartJobRun APIs.
31+
32+
# Release (2026-01-05)
33+
34+
## Module Highlights
35+
* `github.com/aws/aws-sdk-go-v2/service/cleanroomsml`: [v1.22.0](service/cleanroomsml/CHANGELOG.md#v1220-2026-01-05)
36+
* **Feature**: AWS Clean Rooms ML now supports advanced Spark configurations to optimize SQL performance when creating an MLInputChannel or an audience generation job.
37+
38+
# Release (2026-01-02)
39+
40+
## Module Highlights
41+
* `github.com/aws/aws-sdk-go-v2/service/cleanrooms`: [v1.40.0](service/cleanrooms/CHANGELOG.md#v1400-2026-01-02)
42+
* **Feature**: Added support for publishing detailed metrics to CloudWatch for operational monitoring of collaborations, including query performance and resource utilization.
43+
* `github.com/aws/aws-sdk-go-v2/service/identitystore`: [v1.36.0](service/identitystore/CHANGELOG.md#v1360-2026-01-02)
44+
* **Feature**: This change introduces "Roles" attribute for User entities supported by AWS Identity Store SDK.
45+
146
# Release (2025-12-30)
247

348
## Module Highlights

aws/go_module_metadata.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codegen/sdk-codegen/aws-models/bedrock-agentcore-control.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8859,6 +8859,14 @@
88598859
"smithy.api#httpLabel": {},
88608860
"smithy.api#required": {}
88618861
}
8862+
},
8863+
"view": {
8864+
"target": "com.amazonaws.bedrockagentcorecontrol#MemoryView",
8865+
"traits": {
8866+
"smithy.api#default": "full",
8867+
"smithy.api#documentation": "<p>The level of detail to return for the memory.</p>",
8868+
"smithy.api#httpQuery": "view"
8869+
}
88628870
}
88638871
},
88648872
"traits": {
@@ -12672,6 +12680,23 @@
1267212680
"target": "com.amazonaws.bedrockagentcorecontrol#MemorySummary"
1267312681
}
1267412682
},
12683+
"com.amazonaws.bedrockagentcorecontrol#MemoryView": {
12684+
"type": "enum",
12685+
"members": {
12686+
"FULL": {
12687+
"target": "smithy.api#Unit",
12688+
"traits": {
12689+
"smithy.api#enumValue": "full"
12690+
}
12691+
},
12692+
"WITHOUT_DECRYPTION": {
12693+
"target": "smithy.api#Unit",
12694+
"traits": {
12695+
"smithy.api#enumValue": "without_decryption"
12696+
}
12697+
}
12698+
}
12699+
},
1267512700
"com.amazonaws.bedrockagentcorecontrol#MessageBasedTrigger": {
1267612701
"type": "structure",
1267712702
"members": {

codegen/sdk-codegen/aws-models/cleanrooms.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3061,6 +3061,12 @@
30613061
"traits": {
30623062
"smithy.api#documentation": "<p>The Amazon Web Services Regions where collaboration query results can be stored. Returns the list of Region identifiers that were specified when the collaboration was created. This list is used to enforce regional storage policies and compliance requirements.</p>"
30633063
}
3064+
},
3065+
"isMetricsEnabled": {
3066+
"target": "smithy.api#Boolean",
3067+
"traits": {
3068+
"smithy.api#documentation": "<p>An indicator as to whether metrics are enabled for the collaboration.</p> <p>When <code>true</code>, collaboration members can opt in to Amazon CloudWatch metrics for their membership queries.</p>"
3069+
}
30643070
}
30653071
},
30663072
"traits": {
@@ -6189,6 +6195,12 @@
61896195
"traits": {
61906196
"smithy.api#documentation": "<p>The Amazon Web Services Regions where collaboration query results can be stored. When specified, results can only be written to these Regions. This parameter enables you to meet your compliance and data governance requirements, and implement regional data governance policies.</p>"
61916197
}
6198+
},
6199+
"isMetricsEnabled": {
6200+
"target": "smithy.api#Boolean",
6201+
"traits": {
6202+
"smithy.api#documentation": "<p>An indicator as to whether metrics have been enabled or disabled for the collaboration.</p> <p>When <code>true</code>, collaboration members can opt in to Amazon CloudWatch metrics for their membership queries. The default value is <code>false</code>.</p>"
6203+
}
61926204
}
61936205
}
61946206
},
@@ -6993,6 +7005,12 @@
69937005
"traits": {
69947006
"smithy.api#documentation": "<p>The payment responsibilities accepted by the collaboration member.</p> <p>Not required if the collaboration member has the member ability to run queries. </p> <p>Required if the collaboration member doesn't have the member ability to run queries but is configured as a payer by the collaboration creator. </p>"
69957007
}
7008+
},
7009+
"isMetricsEnabled": {
7010+
"target": "smithy.api#Boolean",
7011+
"traits": {
7012+
"smithy.api#documentation": "<p>An indicator as to whether Amazon CloudWatch metrics have been enabled or disabled for the membership.</p> <p>Amazon CloudWatch metrics are only available when the collaboration has metrics enabled. This option can be set by collaboration members who have the ability to run queries (analysis runners) or by members who are configured as payers.</p> <p>When <code>true</code>, metrics about query execution are collected in Amazon CloudWatch. The default value is <code>false</code>.</p>"
7013+
}
69967014
}
69977015
}
69987016
},
@@ -13038,6 +13056,12 @@
1303813056
"smithy.api#documentation": "<p>The payment responsibilities accepted by the collaboration member.</p>",
1303913057
"smithy.api#required": {}
1304013058
}
13059+
},
13060+
"isMetricsEnabled": {
13061+
"target": "smithy.api#Boolean",
13062+
"traits": {
13063+
"smithy.api#documentation": "<p>An indicator as to whether Amazon CloudWatch metrics are enabled for the membership.</p> <p>When <code>true</code>, metrics about query execution are collected in Amazon CloudWatch.</p>"
13064+
}
1304113065
}
1304213066
},
1304313067
"traits": {

codegen/sdk-codegen/aws-models/cleanroomsml.json

Lines changed: 62 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9988,8 +9988,7 @@
99889988
"columnClassification": {
99899989
"target": "com.amazonaws.cleanroomsml#ColumnClassificationDetails",
99909990
"traits": {
9991-
"smithy.api#documentation": "<p>Classification details for data columns that specify how each column should be treated during synthetic data generation.</p>",
9992-
"smithy.api#required": {}
9991+
"smithy.api#documentation": "<p>Classification details for data columns that specify how each column should be treated during synthetic data generation.</p>"
99939992
}
99949993
}
99959994
},
@@ -10277,7 +10276,16 @@
1027710276
}
1027810277
}
1027910278
},
10280-
"com.amazonaws.cleanroomsml#ParameterKey": {
10279+
"com.amazonaws.cleanroomsml#ParameterMap": {
10280+
"type": "map",
10281+
"key": {
10282+
"target": "com.amazonaws.cleanroomsml#ParameterName"
10283+
},
10284+
"value": {
10285+
"target": "com.amazonaws.cleanroomsml#ParameterValue"
10286+
}
10287+
},
10288+
"com.amazonaws.cleanroomsml#ParameterName": {
1028110289
"type": "string",
1028210290
"traits": {
1028310291
"smithy.api#length": {
@@ -10287,15 +10295,6 @@
1028710295
"smithy.api#pattern": "^[0-9a-zA-Z_]+$"
1028810296
}
1028910297
},
10290-
"com.amazonaws.cleanroomsml#ParameterMap": {
10291-
"type": "map",
10292-
"key": {
10293-
"target": "com.amazonaws.cleanroomsml#ParameterKey"
10294-
},
10295-
"value": {
10296-
"target": "com.amazonaws.cleanroomsml#ParameterValue"
10297-
}
10298-
},
1029910298
"com.amazonaws.cleanroomsml#ParameterValue": {
1030010299
"type": "string",
1030110300
"traits": {
@@ -10626,7 +10625,7 @@
1062610625
"volumeSizeInGB": {
1062710626
"target": "smithy.api#Integer",
1062810627
"traits": {
10629-
"smithy.api#documentation": "<p>The maximum size of the instance that is used to train the model.</p>",
10628+
"smithy.api#documentation": "<p>The volume size of the instance that is used to train the model. Please see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-store-volumes.html\">EC2 volume limit</a> for volume size limitations on different instance types.</p>",
1063010629
"smithy.api#range": {
1063110630
"min": 1,
1063210631
"max": 8192
@@ -10784,6 +10783,39 @@
1078410783
}
1078510784
}
1078610785
},
10786+
"com.amazonaws.cleanroomsml#SparkProperties": {
10787+
"type": "map",
10788+
"key": {
10789+
"target": "com.amazonaws.cleanroomsml#SparkPropertyKey"
10790+
},
10791+
"value": {
10792+
"target": "com.amazonaws.cleanroomsml#SparkPropertyValue"
10793+
},
10794+
"traits": {
10795+
"smithy.api#length": {
10796+
"min": 0,
10797+
"max": 50
10798+
}
10799+
}
10800+
},
10801+
"com.amazonaws.cleanroomsml#SparkPropertyKey": {
10802+
"type": "string",
10803+
"traits": {
10804+
"smithy.api#length": {
10805+
"min": 1,
10806+
"max": 200
10807+
}
10808+
}
10809+
},
10810+
"com.amazonaws.cleanroomsml#SparkPropertyValue": {
10811+
"type": "string",
10812+
"traits": {
10813+
"smithy.api#length": {
10814+
"min": 0,
10815+
"max": 500
10816+
}
10817+
}
10818+
},
1078710819
"com.amazonaws.cleanroomsml#StartAudienceExportJob": {
1078810820
"type": "operation",
1078910821
"input": {
@@ -12558,12 +12590,29 @@
1255812590
"max": 400
1255912591
}
1256012592
}
12593+
},
12594+
"properties": {
12595+
"target": "com.amazonaws.cleanroomsml#WorkerComputeConfigurationProperties"
1256112596
}
1256212597
},
1256312598
"traits": {
1256412599
"smithy.api#documentation": "<p>Configuration information about the compute workers that perform the transform job.</p>"
1256512600
}
1256612601
},
12602+
"com.amazonaws.cleanroomsml#WorkerComputeConfigurationProperties": {
12603+
"type": "union",
12604+
"members": {
12605+
"spark": {
12606+
"target": "com.amazonaws.cleanroomsml#SparkProperties",
12607+
"traits": {
12608+
"smithy.api#documentation": "<p>The Spark configuration properties for SQL workloads. This map contains key-value pairs that configure Apache Spark settings to optimize performance for your data processing jobs. You can specify up to 50 Spark properties, with each key being 1-200 characters and each value being 0-500 characters. These properties allow you to adjust compute capacity for large datasets and complex workloads.</p>"
12609+
}
12610+
}
12611+
},
12612+
"traits": {
12613+
"smithy.api#documentation": "<p>The configuration properties for the worker compute environment. These properties allow you to customize the compute settings for your Clean Rooms workloads.</p>"
12614+
}
12615+
},
1256712616
"com.amazonaws.cleanroomsml#WorkerComputeType": {
1256812617
"type": "enum",
1256912618
"members": {

codegen/sdk-codegen/aws-models/cloudfront.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,9 @@
473473
{
474474
"target": "com.amazonaws.cloudfront#AccessDenied"
475475
},
476+
{
477+
"target": "com.amazonaws.cloudfront#EntityLimitExceeded"
478+
},
476479
{
477480
"target": "com.amazonaws.cloudfront#EntityNotFound"
478481
},
@@ -564,6 +567,9 @@
564567
{
565568
"target": "com.amazonaws.cloudfront#AccessDenied"
566569
},
570+
{
571+
"target": "com.amazonaws.cloudfront#EntityLimitExceeded"
572+
},
567573
{
568574
"target": "com.amazonaws.cloudfront#EntityNotFound"
569575
},
@@ -24210,6 +24216,9 @@
2421024216
{
2421124217
"target": "com.amazonaws.cloudfront#CNAMEAlreadyExists"
2421224218
},
24219+
{
24220+
"target": "com.amazonaws.cloudfront#EntityLimitExceeded"
24221+
},
2421324222
{
2421424223
"target": "com.amazonaws.cloudfront#EntityNotFound"
2421524224
},

0 commit comments

Comments
 (0)