Skip to content

Commit ab5b4b4

Browse files
author
awstools
committed
Publish v3.690.0
1 parent 0965c10 commit ab5b4b4

23 files changed

+321
-8
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.690.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.689.0...v3.690.0) (2024-11-12)
7+
8+
9+
### Features
10+
11+
* **client-codebuild:** AWS CodeBuild now supports non-containerized Linux and Windows builds on Reserved Capacity. ([1661962](https://github.com/aws/aws-sdk-js-v3/commit/16619628b3ad1baaaf085ccc02c1744cb231131e))
12+
* **client-controltower:** Added ResetEnabledControl API. ([580cabc](https://github.com/aws/aws-sdk-js-v3/commit/580cabcd598a7e467412a1d333f347930e87fbde))
13+
* **client-fis:** This release adds support for generating experiment reports with the experiment report configuration ([eeb1195](https://github.com/aws/aws-sdk-js-v3/commit/eeb11951e3d8cb93b7bef214d3bf3a856886efce))
14+
* **client-gamelift:** Amazon GameLift releases container fleets support for general availability. Deploy Linux-based containerized game server software for hosting on Amazon GameLift. ([eb000c7](https://github.com/aws/aws-sdk-js-v3/commit/eb000c75d02ef2627e25e4ca5e783614c33cff7a))
15+
* **client-payment-cryptography:** Updated ListAliases API with KeyArn filter. ([34a0ede](https://github.com/aws/aws-sdk-js-v3/commit/34a0edee6e0bdf0e3f0ab87d1508a1c1731cec05))
16+
* **clients:** update client endpoints as of 2024-11-12 ([0965c10](https://github.com/aws/aws-sdk-js-v3/commit/0965c1012b0d81383ee92af8684c361821267d3b))
17+
18+
19+
20+
21+
622
# [3.689.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.688.0...v3.689.0) (2024-11-11)
723

824

clients/client-cloudfront/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.690.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.689.0...v3.690.0) (2024-11-12)
7+
8+
**Note:** Version bump only for package @aws-sdk/client-cloudfront
9+
10+
11+
12+
13+
614
# [3.689.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.688.0...v3.689.0) (2024-11-11)
715

816

clients/client-cloudfront/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-cloudfront",
33
"description": "AWS SDK for JavaScript Cloudfront Client for Node.js, Browser and React Native",
4-
"version": "3.689.0",
4+
"version": "3.690.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-cloudfront",

clients/client-cloudfront/src/commands/CreateFunctionCommand.ts

+52
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,58 @@ export interface CreateFunctionCommandOutput extends CreateFunctionResult, __Met
178178
* // example id: to-create-a-function-1699737558249
179179
* ```
180180
*
181+
* @example To create a function
182+
* ```javascript
183+
* // Use the following command to create a function.
184+
* const input = {
185+
* "FunctionCode": "function-code.js",
186+
* "FunctionConfig": {
187+
* "Comment": "my-function-comment",
188+
* "KeyValueStoreAssociations": {
189+
* "Items": [
190+
* {
191+
* "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
192+
* }
193+
* ],
194+
* "Quantity": 1
195+
* },
196+
* "Runtime": "cloudfront-js-2.0"
197+
* },
198+
* "Name": "my-function-name"
199+
* };
200+
* const command = new CreateFunctionCommand(input);
201+
* const response = await client.send(command);
202+
* /* response ==
203+
* {
204+
* "ETag": "ETVPDKIKX0DER",
205+
* "FunctionSummary": {
206+
* "FunctionConfig": {
207+
* "Comment": "my-function-comment",
208+
* "KeyValueStoreAssociations": {
209+
* "Items": [
210+
* {
211+
* "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
212+
* }
213+
* ],
214+
* "Quantity": 1
215+
* },
216+
* "Runtime": "cloudfront-js-2.0"
217+
* },
218+
* "FunctionMetadata": {
219+
* "CreatedTime": "2023-11-07T19:53:50.334Z",
220+
* "FunctionARN": "arn:aws:cloudfront::123456789012:function/my-function-name",
221+
* "LastModifiedTime": "2023-11-07T19:53:50.334Z",
222+
* "Stage": "DEVELOPMENT"
223+
* },
224+
* "Name": "my-function-name",
225+
* "Status": "UNPUBLISHED"
226+
* },
227+
* "Location": "https://cloudfront.amazonaws.com/2020-05-31/function/arn:aws:cloudfront::123456789012:function/my-function-name"
228+
* }
229+
* *\/
230+
* // example id: example-1
231+
* ```
232+
*
181233
*/
182234
export class CreateFunctionCommand extends $Command
183235
.classBuilder<

clients/client-cloudfront/src/commands/CreateKeyValueStoreCommand.ts

+30
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,36 @@ export interface CreateKeyValueStoreCommandOutput extends CreateKeyValueStoreRes
119119
* // example id: to-create-a-key-value-store-1699751722467
120120
* ```
121121
*
122+
* @example To create a KeyValueStore
123+
* ```javascript
124+
* // Use the following command to create a KeyValueStore.
125+
* const input = {
126+
* "Comment": "my-key-valuestore-comment",
127+
* "ImportSource": {
128+
* "SourceARN": "arn:aws:s3:::my-bucket/validJSON.json",
129+
* "SourceType": "S3"
130+
* },
131+
* "Name": "my-keyvaluestore-name"
132+
* };
133+
* const command = new CreateKeyValueStoreCommand(input);
134+
* const response = await client.send(command);
135+
* /* response ==
136+
* {
137+
* "ETag": "ETVPDKIKX0DER",
138+
* "KeyValueStore": {
139+
* "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
140+
* "Comment": "my-key-valuestore-comment",
141+
* "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
142+
* "LastModifiedTime": "2023-11-07T18:15:52.042Z",
143+
* "Name": "my-keyvaluestore-name",
144+
* "Status": "PROVISIONING"
145+
* },
146+
* "Location": "https://cloudfront.amazonaws.com/2020-05-31/key-value-store/arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
147+
* }
148+
* *\/
149+
* // example id: example-1
150+
* ```
151+
*
122152
*/
123153
export class CreateKeyValueStoreCommand extends $Command
124154
.classBuilder<

clients/client-cloudfront/src/commands/DeleteKeyValueStoreCommand.ts

+12
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,18 @@ export interface DeleteKeyValueStoreCommandOutput extends __MetadataBearer {}
8686
* // example id: to-delete-a-key-value-store-1699751759648
8787
* ```
8888
*
89+
* @example To delete a KeyValueStore
90+
* ```javascript
91+
* // Use the following command to delete a KeyValueStore.
92+
* const input = {
93+
* "IfMatch": "ETVPDKIKX0DER",
94+
* "Name": "my-keyvaluestore-name"
95+
* };
96+
* const command = new DeleteKeyValueStoreCommand(input);
97+
* await client.send(command);
98+
* // example id: example-1
99+
* ```
100+
*
89101
*/
90102
export class DeleteKeyValueStoreCommand extends $Command
91103
.classBuilder<

clients/client-cloudfront/src/commands/DescribeKeyValueStoreCommand.ts

+24
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,30 @@ export interface DescribeKeyValueStoreCommandOutput extends DescribeKeyValueStor
100100
* // example id: to-describe-a-key-value-store-1699751788152
101101
* ```
102102
*
103+
* @example To describe a KeyValueStore
104+
* ```javascript
105+
* // Use the following command to describe a KeyValueStore.
106+
* const input = {
107+
* "Name": "my-keyvaluestore-name"
108+
* };
109+
* const command = new DescribeKeyValueStoreCommand(input);
110+
* const response = await client.send(command);
111+
* /* response ==
112+
* {
113+
* "ETag": "ETVPDKIKX0DER",
114+
* "KeyValueStore": {
115+
* "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
116+
* "Comment": "my-key-valuestore-comment",
117+
* "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
118+
* "LastModifiedTime": "2023-11-07T18:20:33.056Z",
119+
* "Name": "my-keyvaluestore-name",
120+
* "Status": "READY"
121+
* }
122+
* }
123+
* *\/
124+
* // example id: example-1
125+
* ```
126+
*
103127
*/
104128
export class DescribeKeyValueStoreCommand extends $Command
105129
.classBuilder<

clients/client-cloudfront/src/commands/ListKeyValueStoresCommand.ts

+30
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,36 @@ export interface ListKeyValueStoresCommandOutput extends ListKeyValueStoresResul
113113
* // example id: to-get-a-list-of-key-value-store-1699751799198
114114
* ```
115115
*
116+
* @example To get a list of KeyValueStores
117+
* ```javascript
118+
* // The following command retrieves a list of KeyValueStores with READY status.
119+
* const input = {
120+
* "Status": "READY"
121+
* };
122+
* const command = new ListKeyValueStoresCommand(input);
123+
* const response = await client.send(command);
124+
* /* response ==
125+
* {
126+
* "KeyValueStoreList": {
127+
* "Items": [
128+
* {
129+
* "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
130+
* "Comment": "",
131+
* "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
132+
* "LastModifiedTime": "2023-11-07T18:45:21.069Z",
133+
* "Name": "my-keyvaluestore-name",
134+
* "Status": "READY"
135+
* }
136+
* ],
137+
* "MaxItems": 100,
138+
* "NextMarker": "",
139+
* "Quantity": 1
140+
* }
141+
* }
142+
* *\/
143+
* // example id: example-1
144+
* ```
145+
*
116146
*/
117147
export class ListKeyValueStoresCommand extends $Command
118148
.classBuilder<

clients/client-cloudfront/src/commands/UpdateFunctionCommand.ts

+52
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,58 @@ export interface UpdateFunctionCommandOutput extends UpdateFunctionResult, __Met
173173
* // example id: to-update-a-function-1699751865053
174174
* ```
175175
*
176+
* @example To update a function
177+
* ```javascript
178+
* // Use the following command to update a function.
179+
* const input = {
180+
* "FunctionCode": "function-code-changed.js",
181+
* "FunctionConfig": {
182+
* "Comment": "my-changed-comment",
183+
* "KeyValueStoreAssociations": {
184+
* "Items": [
185+
* {
186+
* "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
187+
* }
188+
* ],
189+
* "Quantity": 1
190+
* },
191+
* "Runtime": "cloudfront-js-2.0"
192+
* },
193+
* "IfMatch": "ETVPDKIKX0DER",
194+
* "Name": "my-function-name"
195+
* };
196+
* const command = new UpdateFunctionCommand(input);
197+
* const response = await client.send(command);
198+
* /* response ==
199+
* {
200+
* "ETag": "E3UN6WX5RRO2AG",
201+
* "FunctionSummary": {
202+
* "FunctionConfig": {
203+
* "Comment": "my-changed-comment",
204+
* "KeyValueStoreAssociations": {
205+
* "Items": [
206+
* {
207+
* "KeyValueStoreARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889"
208+
* }
209+
* ],
210+
* "Quantity": 1
211+
* },
212+
* "Runtime": "cloudfront-js-2.0"
213+
* },
214+
* "FunctionMetadata": {
215+
* "CreatedTime": "2023-11-07T19:53:50.334Z",
216+
* "FunctionARN": "arn:aws:cloudfront::123456789012:function/my-function-name",
217+
* "LastModifiedTime": "2023-11-07T20:01:37.174Z",
218+
* "Stage": "DEVELOPMENT"
219+
* },
220+
* "Name": "my-function-name",
221+
* "Status": "UNPUBLISHED"
222+
* }
223+
* }
224+
* *\/
225+
* // example id: example-1
226+
* ```
227+
*
176228
*/
177229
export class UpdateFunctionCommand extends $Command
178230
.classBuilder<

clients/client-cloudfront/src/commands/UpdateKeyValueStoreCommand.ts

+26
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,32 @@ export interface UpdateKeyValueStoreCommandOutput extends UpdateKeyValueStoreRes
111111
* // example id: to-update-a-key-value-store-1699751822090
112112
* ```
113113
*
114+
* @example To update a KeyValueStore
115+
* ```javascript
116+
* // Use the following command to update a KeyValueStore.
117+
* const input = {
118+
* "Comment": "my-changed-comment",
119+
* "IfMatch": "ETVPDKIKX0DER",
120+
* "Name": "my-keyvaluestore-name"
121+
* };
122+
* const command = new UpdateKeyValueStoreCommand(input);
123+
* const response = await client.send(command);
124+
* /* response ==
125+
* {
126+
* "ETag": "E3UN6WX5RRO2AG",
127+
* "KeyValueStore": {
128+
* "ARN": "arn:aws:cloudfront::123456789012:key-value-store/54947df8-0e9e-4471-a2f9-9af509fb5889",
129+
* "Comment": "my-changed-comment",
130+
* "Id": "54947df8-0e9e-4471-a2f9-9af509fb5889",
131+
* "LastModifiedTime": "2023-11-07T18:45:21.069Z",
132+
* "Name": "my-keyvaluestore-name",
133+
* "Status": "READY"
134+
* }
135+
* }
136+
* *\/
137+
* // example id: example-1
138+
* ```
139+
*
114140
*/
115141
export class UpdateKeyValueStoreCommand extends $Command
116142
.classBuilder<

clients/client-codebuild/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.690.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.689.0...v3.690.0) (2024-11-12)
7+
8+
9+
### Features
10+
11+
* **client-codebuild:** AWS CodeBuild now supports non-containerized Linux and Windows builds on Reserved Capacity. ([1661962](https://github.com/aws/aws-sdk-js-v3/commit/16619628b3ad1baaaf085ccc02c1744cb231131e))
12+
13+
14+
15+
16+
617
# [3.687.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.686.0...v3.687.0) (2024-11-07)
718

819
**Note:** Version bump only for package @aws-sdk/client-codebuild

clients/client-codebuild/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-codebuild",
33
"description": "AWS SDK for JavaScript Codebuild Client for Node.js, Browser and React Native",
4-
"version": "3.687.0",
4+
"version": "3.690.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-codebuild",

clients/client-controltower/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.690.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.689.0...v3.690.0) (2024-11-12)
7+
8+
9+
### Features
10+
11+
* **client-controltower:** Added ResetEnabledControl API. ([580cabc](https://github.com/aws/aws-sdk-js-v3/commit/580cabcd598a7e467412a1d333f347930e87fbde))
12+
13+
14+
15+
16+
617
# [3.687.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.686.0...v3.687.0) (2024-11-07)
718

819
**Note:** Version bump only for package @aws-sdk/client-controltower

clients/client-controltower/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-controltower",
33
"description": "AWS SDK for JavaScript Controltower Client for Node.js, Browser and React Native",
4-
"version": "3.687.0",
4+
"version": "3.690.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-controltower",

clients/client-fis/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.690.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.689.0...v3.690.0) (2024-11-12)
7+
8+
9+
### Features
10+
11+
* **client-fis:** This release adds support for generating experiment reports with the experiment report configuration ([eeb1195](https://github.com/aws/aws-sdk-js-v3/commit/eeb11951e3d8cb93b7bef214d3bf3a856886efce))
12+
13+
14+
15+
16+
617
# [3.687.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.686.0...v3.687.0) (2024-11-07)
718

819
**Note:** Version bump only for package @aws-sdk/client-fis

0 commit comments

Comments
 (0)