Skip to content

Commit 868d4b0

Browse files
author
awstools
committed
Publish v3.704.0
1 parent 25460cc commit 868d4b0

Some content is hidden

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

49 files changed

+1044
-9
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
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.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03)
7+
8+
9+
### Features
10+
11+
* **client-bedrock-runtime:** Add an API parameter that allows customers to set performance configuration for invoking a model. ([f87e55a](https://github.com/aws/aws-sdk-js-v3/commit/f87e55a13bf41ed1ff2fd0a15250c253d3188c5f))
12+
* **client-s3-control:** It allows customers to pass CRC64NVME as a header in S3 Batch Operations copy requests ([94cd2b3](https://github.com/aws/aws-sdk-js-v3/commit/94cd2b394afd4efeb7e491863887864532345f1d))
13+
* **client-socialmessaging:** Added support for passing role arn corresponding to the supported event destination ([75bd846](https://github.com/aws/aws-sdk-js-v3/commit/75bd8462bfacdb4c4dee65889b0124053ff90dc1))
14+
* **clients:** update client endpoints as of 2024-12-03 ([25460cc](https://github.com/aws/aws-sdk-js-v3/commit/25460cc85363edd371eb774f40d7875dc1964dcd))
15+
16+
17+
18+
19+
620
# [3.703.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.702.0...v3.703.0) (2024-12-02)
721

822

clients/client-bedrock-runtime/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.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03)
7+
8+
9+
### Features
10+
11+
* **client-bedrock-runtime:** Add an API parameter that allows customers to set performance configuration for invoking a model. ([f87e55a](https://github.com/aws/aws-sdk-js-v3/commit/f87e55a13bf41ed1ff2fd0a15250c253d3188c5f))
12+
13+
14+
15+
16+
617
# [3.699.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.698.0...v3.699.0) (2024-11-22)
718

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

clients/client-bedrock-runtime/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-bedrock-runtime",
33
"description": "AWS SDK for JavaScript Bedrock Runtime Client for Node.js, Browser and React Native",
4-
"version": "3.699.0",
4+
"version": "3.704.0",
55
"scripts": {
66
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
77
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-runtime",

clients/client-invoicing/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.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03)
7+
8+
**Note:** Version bump only for package @aws-sdk/client-invoicing
9+
10+
11+
12+
13+
614
# [3.703.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.702.0...v3.703.0) (2024-12-02)
715

816

clients/client-invoicing/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-invoicing",
33
"description": "AWS SDK for JavaScript Invoicing Client for Node.js, Browser and React Native",
4-
"version": "3.703.0",
4+
"version": "3.704.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-invoicing/src/commands/BatchGetInvoiceProfileCommand.ts

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,38 @@ export interface BatchGetInvoiceProfileCommandOutput extends BatchGetInvoiceProf
100100
* <p>Base exception class for all service exceptions from Invoicing service.</p>
101101
*
102102
* @public
103+
* @example BatchGetInvoiceProfile
104+
* ```javascript
105+
* //
106+
* const input = {
107+
* "AccountIds": [
108+
* "111111111111"
109+
* ]
110+
* };
111+
* const command = new BatchGetInvoiceProfileCommand(input);
112+
* const response = await client.send(command);
113+
* /* response ==
114+
* {
115+
* "Profiles": [
116+
* {
117+
* "AccountId": "111111111111",
118+
* "Issuer": "Test",
119+
* "ReceiverAddress": {
120+
* "AddressLine1": "Test",
121+
* "City": "Test",
122+
* "CountryCode": "LU",
123+
* "PostalCode": "Test",
124+
* "StateOrRegion": "Test"
125+
* },
126+
* "ReceiverEmail": "test@amazon.com",
127+
* "ReceiverName": "TestAccount"
128+
* }
129+
* ]
130+
* }
131+
* *\/
132+
* // example id: example-1
133+
* ```
134+
*
103135
*/
104136
export class BatchGetInvoiceProfileCommand extends $Command
105137
.classBuilder<

clients/client-invoicing/src/commands/CreateInvoiceUnitCommand.ts

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,36 @@ export interface CreateInvoiceUnitCommandOutput extends CreateInvoiceUnitRespons
8585
* <p>Base exception class for all service exceptions from Invoicing service.</p>
8686
*
8787
* @public
88+
* @example CreateInvoiceUnit
89+
* ```javascript
90+
* //
91+
* const input = {
92+
* "Description": "Example Invoice Unit Description",
93+
* "InvoiceReceiver": "111111111111",
94+
* "Name": "Example Invoice Unit",
95+
* "ResourceTags": [
96+
* {
97+
* "Key": "TagKey",
98+
* "Value": "TagValue"
99+
* }
100+
* ],
101+
* "Rule": {
102+
* "LinkedAccounts": [
103+
* "222222222222"
104+
* ]
105+
* },
106+
* "TaxInheritanceDisabled": false
107+
* };
108+
* const command = new CreateInvoiceUnitCommand(input);
109+
* const response = await client.send(command);
110+
* /* response ==
111+
* {
112+
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678"
113+
* }
114+
* *\/
115+
* // example id: example-1
116+
* ```
117+
*
88118
*/
89119
export class CreateInvoiceUnitCommand extends $Command
90120
.classBuilder<

clients/client-invoicing/src/commands/DeleteInvoiceUnitCommand.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,22 @@ export interface DeleteInvoiceUnitCommandOutput extends DeleteInvoiceUnitRespons
7676
* <p>Base exception class for all service exceptions from Invoicing service.</p>
7777
*
7878
* @public
79+
* @example DeleteInvoiceUnit
80+
* ```javascript
81+
* //
82+
* const input = {
83+
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678"
84+
* };
85+
* const command = new DeleteInvoiceUnitCommand(input);
86+
* const response = await client.send(command);
87+
* /* response ==
88+
* {
89+
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678"
90+
* }
91+
* *\/
92+
* // example id: example-1
93+
* ```
94+
*
7995
*/
8096
export class DeleteInvoiceUnitCommand extends $Command
8197
.classBuilder<

clients/client-invoicing/src/commands/GetInvoiceUnitCommand.ts

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,59 @@ export interface GetInvoiceUnitCommandOutput extends GetInvoiceUnitResponse, __M
8686
* <p>Base exception class for all service exceptions from Invoicing service.</p>
8787
*
8888
* @public
89+
* @example GetInvoiceUnit as of current time
90+
* ```javascript
91+
* //
92+
* const input = {
93+
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678"
94+
* };
95+
* const command = new GetInvoiceUnitCommand(input);
96+
* const response = await client.send(command);
97+
* /* response ==
98+
* {
99+
* "Description": "Description changed on 1733788800",
100+
* "InvoiceReceiver": "111111111111",
101+
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678",
102+
* "LastModified": 1733788800,
103+
* "Name": "Example Invoice Unit A",
104+
* "Rule": {
105+
* "LinkedAccounts": [
106+
* "222222222222"
107+
* ]
108+
* },
109+
* "TaxInheritanceDisabled": false
110+
* }
111+
* *\/
112+
* // example id: example-1
113+
* ```
114+
*
115+
* @example GetInvoiceUnit as of specified time
116+
* ```javascript
117+
* //
118+
* const input = {
119+
* "AsOf": 1733097600,
120+
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321"
121+
* };
122+
* const command = new GetInvoiceUnitCommand(input);
123+
* const response = await client.send(command);
124+
* /* response ==
125+
* {
126+
* "Description": "Description changed on 1733011200",
127+
* "InvoiceReceiver": "333333333333",
128+
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321",
129+
* "LastModified": 1733011200,
130+
* "Name": "Example Invoice Unit B",
131+
* "Rule": {
132+
* "LinkedAccounts": [
133+
* "333333333333"
134+
* ]
135+
* },
136+
* "TaxInheritanceDisabled": false
137+
* }
138+
* *\/
139+
* // example id: example-2
140+
* ```
141+
*
89142
*/
90143
export class GetInvoiceUnitCommand extends $Command
91144
.classBuilder<

clients/client-invoicing/src/commands/ListInvoiceUnitsCommand.ts

Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,144 @@ export interface ListInvoiceUnitsCommandOutput extends ListInvoiceUnitsResponse,
9999
* <p>Base exception class for all service exceptions from Invoicing service.</p>
100100
*
101101
* @public
102+
* @example ListInvoiceUnits without filters as of current time
103+
* ```javascript
104+
* //
105+
* const input = {};
106+
* const command = new ListInvoiceUnitsCommand(input);
107+
* const response = await client.send(command);
108+
* /* response ==
109+
* {
110+
* "InvoiceUnits": [
111+
* {
112+
* "Description": "Description changed on 1733788800",
113+
* "InvoiceReceiver": "111111111111",
114+
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678",
115+
* "LastModified": 1733788800,
116+
* "Name": "Example Invoice Unit A",
117+
* "Rule": {
118+
* "LinkedAccounts": [
119+
* "222222222222"
120+
* ]
121+
* },
122+
* "TaxInheritanceDisabled": false
123+
* },
124+
* {
125+
* "Description": "Description changed on 1733788800",
126+
* "InvoiceReceiver": "333333333333",
127+
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321",
128+
* "LastModified": 1733788800,
129+
* "Name": "Example Invoice Unit B",
130+
* "Rule": {
131+
* "LinkedAccounts": [
132+
* "333333333333"
133+
* ]
134+
* },
135+
* "TaxInheritanceDisabled": true
136+
* }
137+
* ]
138+
* }
139+
* *\/
140+
* // example id: example-1
141+
* ```
142+
*
143+
* @example ListInvoiceUnits with filters as of specified time
144+
* ```javascript
145+
* //
146+
* const input = {
147+
* "AsOf": 1733097600,
148+
* "Filters": {
149+
* "InvoiceReceivers": [
150+
* "333333333333"
151+
* ]
152+
* }
153+
* };
154+
* const command = new ListInvoiceUnitsCommand(input);
155+
* const response = await client.send(command);
156+
* /* response ==
157+
* {
158+
* "InvoiceUnits": [
159+
* {
160+
* "Description": "Description changed on 1733011200",
161+
* "InvoiceReceiver": "333333333333",
162+
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321",
163+
* "LastModified": 1733011200,
164+
* "Name": "Example Invoice Unit B",
165+
* "Rule": {
166+
* "LinkedAccounts": [
167+
* "333333333333"
168+
* ]
169+
* },
170+
* "TaxInheritanceDisabled": false
171+
* }
172+
* ]
173+
* }
174+
* *\/
175+
* // example id: example-2
176+
* ```
177+
*
178+
* @example ListInvoiceUnits with pagination - first page
179+
* ```javascript
180+
* //
181+
* const input = {
182+
* "MaxResults": 1
183+
* };
184+
* const command = new ListInvoiceUnitsCommand(input);
185+
* const response = await client.send(command);
186+
* /* response ==
187+
* {
188+
* "InvoiceUnits": [
189+
* {
190+
* "Description": "Description changed on 1733788800",
191+
* "InvoiceReceiver": "111111111111",
192+
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678",
193+
* "LastModified": 1733788800,
194+
* "Name": "Example Invoice Unit A",
195+
* "Rule": {
196+
* "LinkedAccounts": [
197+
* "222222222222"
198+
* ]
199+
* },
200+
* "TaxInheritanceDisabled": false
201+
* }
202+
* ],
203+
* "NextToken": "nextTokenExample"
204+
* }
205+
* *\/
206+
* // example id: example-3
207+
* ```
208+
*
209+
* @example ListInvoiceUnits with pagination - second page
210+
* ```javascript
211+
* //
212+
* const input = {
213+
* "MaxResults": 1,
214+
* "NextToken": "nextTokenExample"
215+
* };
216+
* const command = new ListInvoiceUnitsCommand(input);
217+
* const response = await client.send(command);
218+
* /* response ==
219+
* {
220+
* "InvoiceUnits": [
221+
* {
222+
* "Description": "Description changed on 1733788800",
223+
* "InvoiceReceiver": "333333333333",
224+
* "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321",
225+
* "LastModified": 1733788800,
226+
* "Name": "Example Invoice Unit B",
227+
* "Rule": {
228+
* "LinkedAccounts": [
229+
* "333333333333"
230+
* ]
231+
* },
232+
* "TaxInheritanceDisabled": true
233+
* }
234+
* ]
235+
* }
236+
* *\/
237+
* // example id: example-4
238+
* ```
239+
*
102240
*/
103241
export class ListInvoiceUnitsCommand extends $Command
104242
.classBuilder<

0 commit comments

Comments
 (0)