Skip to content

Commit a3a39be

Browse files
author
awstools
committed
Publish v3.711.0
1 parent 8d22e42 commit a3a39be

File tree

15 files changed

+115
-7
lines changed

15 files changed

+115
-7
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
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.711.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.710.0...v3.711.0) (2024-12-12)
7+
8+
9+
### Features
10+
11+
* **client-connect:** Configure holidays and other overrides to hours of operation in advance. During contact handling, Amazon Connect automatically checks for overrides and provides customers with an appropriate flow path. After an override period passes call center automatically reverts to standard hours of operation. ([6398b6f](https://github.com/aws/aws-sdk-js-v3/commit/6398b6f3ba711532872e39c5affd5b07ffb5ec80))
12+
* **client-database-migration-service:** Add parameters to support for kerberos authentication. Add parameter for disabling the Unicode source filter with PostgreSQL settings. Add parameter to use large integer value with Kinesis/Kafka settings. ([97520fc](https://github.com/aws/aws-sdk-js-v3/commit/97520fc08adb83d5bf6c73c253b3b378762fe5dc))
13+
* **client-glue:** To support customer-managed encryption in Data Quality to allow customers encrypt data with their own KMS key, we will add a DataQualityEncryption field to the SecurityConfiguration API where customers can provide their KMS keys. ([6d74002](https://github.com/aws/aws-sdk-js-v3/commit/6d74002aebb817c6abecd77b3318b40a46cc8072))
14+
* **client-route-53-domains:** This release includes the following API updates: added the enumeration type RESTORE_DOMAIN to the OperationType; constrained the Price attribute to non-negative values; updated the LangCode to allow 2 or 3 alphabetical characters. ([c149c7a](https://github.com/aws/aws-sdk-js-v3/commit/c149c7ab089bc5be94512c19820ed6545bdd89dc))
15+
* **clients:** update client endpoints as of 2024-12-12 ([8d22e42](https://github.com/aws/aws-sdk-js-v3/commit/8d22e42b6f475b3bccce9bd2fa2266d4899c848e))
16+
17+
18+
19+
20+
621
# [3.710.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.709.0...v3.710.0) (2024-12-11)
722

823

clients/client-artifact/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
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.711.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.710.0...v3.711.0) (2024-12-12)
7+
8+
**Note:** Version bump only for package @aws-sdk/client-artifact
9+
10+
11+
12+
13+
614
# [3.710.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.709.0...v3.710.0) (2024-12-11)
715

816

clients/client-artifact/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-artifact",
33
"description": "AWS SDK for JavaScript Artifact Client for Node.js, Browser and React Native",
4-
"version": "3.710.0",
4+
"version": "3.711.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "tsc -p tsconfig.cjs.json",

clients/client-artifact/src/commands/ListCustomerAgreementsCommand.ts

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,39 @@ export interface ListCustomerAgreementsCommandOutput extends ListCustomerAgreeme
9090
* <p>Base exception class for all service exceptions from Artifact service.</p>
9191
*
9292
* @public
93+
* @example Invoke ListCustomerAgreements operation
94+
* ```javascript
95+
* // The ListCustomerAgreements operation returns a collection of customer-agreement resources in the ACTIVE state for the calling credential.
96+
* const input = {};
97+
* const command = new ListCustomerAgreementsCommand(input);
98+
* const response = await client.send(command);
99+
* /* response ==
100+
* {
101+
* "customerAgreements": [
102+
* {
103+
* "name": "Name of agreement",
104+
* "type": "DEFAULT",
105+
* "acceptanceTerms": [
106+
* "terms acknowledged when agreement was accepted"
107+
* ],
108+
* "agreementArn": "arn:aws:artifact:::agreement/agreement-abcdef0123456789",
109+
* "arn": "arn:aws:artifact::111111111111:customer-agreement/customer-agreement-abcdef0123456789",
110+
* "awsAccountId": "111111111111",
111+
* "description": "Description of agreement",
112+
* "effectiveStart": "2022-04-01T20:32:04Z",
113+
* "id": "customer-agreement-abcdef0123456789",
114+
* "state": "ACTIVE",
115+
* "terminateTerms": [
116+
* "terms that must be acknowledged to terminate this agreement"
117+
* ]
118+
* }
119+
* ],
120+
* "nextToken": "gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7"
121+
* }
122+
* *\/
123+
* // example id: example-1
124+
* ```
125+
*
93126
*/
94127
export class ListCustomerAgreementsCommand extends $Command
95128
.classBuilder<

clients/client-connect/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
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.711.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.710.0...v3.711.0) (2024-12-12)
7+
8+
9+
### Features
10+
11+
* **client-connect:** Configure holidays and other overrides to hours of operation in advance. During contact handling, Amazon Connect automatically checks for overrides and provides customers with an appropriate flow path. After an override period passes call center automatically reverts to standard hours of operation. ([6398b6f](https://github.com/aws/aws-sdk-js-v3/commit/6398b6f3ba711532872e39c5affd5b07ffb5ec80))
12+
13+
14+
15+
16+
617
# [3.709.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.708.0...v3.709.0) (2024-12-10)
718

819

clients/client-connect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-connect",
33
"description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
4-
"version": "3.709.0",
4+
"version": "3.711.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-connect",

clients/client-database-migration-service/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
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.711.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.710.0...v3.711.0) (2024-12-12)
7+
8+
9+
### Features
10+
11+
* **client-database-migration-service:** Add parameters to support for kerberos authentication. Add parameter for disabling the Unicode source filter with PostgreSQL settings. Add parameter to use large integer value with Kinesis/Kafka settings. ([97520fc](https://github.com/aws/aws-sdk-js-v3/commit/97520fc08adb83d5bf6c73c253b3b378762fe5dc))
12+
13+
14+
15+
16+
617
# [3.709.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.708.0...v3.709.0) (2024-12-10)
718

819
**Note:** Version bump only for package @aws-sdk/client-database-migration-service

clients/client-database-migration-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-database-migration-service",
33
"description": "AWS SDK for JavaScript Database Migration Service Client for Node.js, Browser and React Native",
4-
"version": "3.709.0",
4+
"version": "3.711.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-database-migration-service",

clients/client-glue/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
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.711.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.710.0...v3.711.0) (2024-12-12)
7+
8+
9+
### Features
10+
11+
* **client-glue:** To support customer-managed encryption in Data Quality to allow customers encrypt data with their own KMS key, we will add a DataQualityEncryption field to the SecurityConfiguration API where customers can provide their KMS keys. ([6d74002](https://github.com/aws/aws-sdk-js-v3/commit/6d74002aebb817c6abecd77b3318b40a46cc8072))
12+
13+
14+
15+
16+
617
# [3.709.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.708.0...v3.709.0) (2024-12-10)
718

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

clients/client-glue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-glue",
33
"description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
4-
"version": "3.709.0",
4+
"version": "3.711.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-glue",

0 commit comments

Comments
 (0)