diff --git a/CHANGELOG.md b/CHANGELOG.md index 807411c5de4c..9ef45b4450ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03) + + +### Features + +* **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)) +* **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)) +* **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)) +* **clients:** update client endpoints as of 2024-12-03 ([25460cc](https://github.com/aws/aws-sdk-js-v3/commit/25460cc85363edd371eb774f40d7875dc1964dcd)) + + + + + # [3.703.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.702.0...v3.703.0) (2024-12-02) diff --git a/clients/client-bedrock-runtime/CHANGELOG.md b/clients/client-bedrock-runtime/CHANGELOG.md index b9529047e3e4..864af53f6efa 100644 --- a/clients/client-bedrock-runtime/CHANGELOG.md +++ b/clients/client-bedrock-runtime/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03) + + +### Features + +* **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)) + + + + + # [3.699.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.698.0...v3.699.0) (2024-11-22) **Note:** Version bump only for package @aws-sdk/client-bedrock-runtime diff --git a/clients/client-bedrock-runtime/package.json b/clients/client-bedrock-runtime/package.json index 6a771151cc1a..78e42eb8ee33 100644 --- a/clients/client-bedrock-runtime/package.json +++ b/clients/client-bedrock-runtime/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-bedrock-runtime", "description": "AWS SDK for JavaScript Bedrock Runtime Client for Node.js, Browser and React Native", - "version": "3.699.0", + "version": "3.704.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-bedrock-runtime", diff --git a/clients/client-invoicing/CHANGELOG.md b/clients/client-invoicing/CHANGELOG.md index 206d796938a8..b2e7c6967c23 100644 --- a/clients/client-invoicing/CHANGELOG.md +++ b/clients/client-invoicing/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03) + +**Note:** Version bump only for package @aws-sdk/client-invoicing + + + + + # [3.703.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.702.0...v3.703.0) (2024-12-02) diff --git a/clients/client-invoicing/package.json b/clients/client-invoicing/package.json index 398e6eead9ae..f2f1f7455d4e 100644 --- a/clients/client-invoicing/package.json +++ b/clients/client-invoicing/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-invoicing", "description": "AWS SDK for JavaScript Invoicing Client for Node.js, Browser and React Native", - "version": "3.703.0", + "version": "3.704.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-invoicing/src/commands/BatchGetInvoiceProfileCommand.ts b/clients/client-invoicing/src/commands/BatchGetInvoiceProfileCommand.ts index d2ec3b38e996..bae375b2a980 100644 --- a/clients/client-invoicing/src/commands/BatchGetInvoiceProfileCommand.ts +++ b/clients/client-invoicing/src/commands/BatchGetInvoiceProfileCommand.ts @@ -100,6 +100,38 @@ export interface BatchGetInvoiceProfileCommandOutput extends BatchGetInvoiceProf *
Base exception class for all service exceptions from Invoicing service.
* * @public + * @example BatchGetInvoiceProfile + * ```javascript + * // + * const input = { + * "AccountIds": [ + * "111111111111" + * ] + * }; + * const command = new BatchGetInvoiceProfileCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "Profiles": [ + * { + * "AccountId": "111111111111", + * "Issuer": "Test", + * "ReceiverAddress": { + * "AddressLine1": "Test", + * "City": "Test", + * "CountryCode": "LU", + * "PostalCode": "Test", + * "StateOrRegion": "Test" + * }, + * "ReceiverEmail": "test@amazon.com", + * "ReceiverName": "TestAccount" + * } + * ] + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class BatchGetInvoiceProfileCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/CreateInvoiceUnitCommand.ts b/clients/client-invoicing/src/commands/CreateInvoiceUnitCommand.ts index 28c59493e458..690204d9f59c 100644 --- a/clients/client-invoicing/src/commands/CreateInvoiceUnitCommand.ts +++ b/clients/client-invoicing/src/commands/CreateInvoiceUnitCommand.ts @@ -85,6 +85,36 @@ export interface CreateInvoiceUnitCommandOutput extends CreateInvoiceUnitRespons *Base exception class for all service exceptions from Invoicing service.
* * @public + * @example CreateInvoiceUnit + * ```javascript + * // + * const input = { + * "Description": "Example Invoice Unit Description", + * "InvoiceReceiver": "111111111111", + * "Name": "Example Invoice Unit", + * "ResourceTags": [ + * { + * "Key": "TagKey", + * "Value": "TagValue" + * } + * ], + * "Rule": { + * "LinkedAccounts": [ + * "222222222222" + * ] + * }, + * "TaxInheritanceDisabled": false + * }; + * const command = new CreateInvoiceUnitCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class CreateInvoiceUnitCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/DeleteInvoiceUnitCommand.ts b/clients/client-invoicing/src/commands/DeleteInvoiceUnitCommand.ts index 500542372603..080a4ca7848c 100644 --- a/clients/client-invoicing/src/commands/DeleteInvoiceUnitCommand.ts +++ b/clients/client-invoicing/src/commands/DeleteInvoiceUnitCommand.ts @@ -76,6 +76,22 @@ export interface DeleteInvoiceUnitCommandOutput extends DeleteInvoiceUnitRespons *Base exception class for all service exceptions from Invoicing service.
* * @public + * @example DeleteInvoiceUnit + * ```javascript + * // + * const input = { + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * }; + * const command = new DeleteInvoiceUnitCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class DeleteInvoiceUnitCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/GetInvoiceUnitCommand.ts b/clients/client-invoicing/src/commands/GetInvoiceUnitCommand.ts index f29e78607843..2db2a41ddba8 100644 --- a/clients/client-invoicing/src/commands/GetInvoiceUnitCommand.ts +++ b/clients/client-invoicing/src/commands/GetInvoiceUnitCommand.ts @@ -86,6 +86,59 @@ export interface GetInvoiceUnitCommandOutput extends GetInvoiceUnitResponse, __M *Base exception class for all service exceptions from Invoicing service.
* * @public + * @example GetInvoiceUnit as of current time + * ```javascript + * // + * const input = { + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * }; + * const command = new GetInvoiceUnitCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "Description": "Description changed on 1733788800", + * "InvoiceReceiver": "111111111111", + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678", + * "LastModified": 1733788800, + * "Name": "Example Invoice Unit A", + * "Rule": { + * "LinkedAccounts": [ + * "222222222222" + * ] + * }, + * "TaxInheritanceDisabled": false + * } + * *\/ + * // example id: example-1 + * ``` + * + * @example GetInvoiceUnit as of specified time + * ```javascript + * // + * const input = { + * "AsOf": 1733097600, + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321" + * }; + * const command = new GetInvoiceUnitCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "Description": "Description changed on 1733011200", + * "InvoiceReceiver": "333333333333", + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321", + * "LastModified": 1733011200, + * "Name": "Example Invoice Unit B", + * "Rule": { + * "LinkedAccounts": [ + * "333333333333" + * ] + * }, + * "TaxInheritanceDisabled": false + * } + * *\/ + * // example id: example-2 + * ``` + * */ export class GetInvoiceUnitCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/ListInvoiceUnitsCommand.ts b/clients/client-invoicing/src/commands/ListInvoiceUnitsCommand.ts index 9b9c46553dce..213bb5704424 100644 --- a/clients/client-invoicing/src/commands/ListInvoiceUnitsCommand.ts +++ b/clients/client-invoicing/src/commands/ListInvoiceUnitsCommand.ts @@ -99,6 +99,144 @@ export interface ListInvoiceUnitsCommandOutput extends ListInvoiceUnitsResponse, *Base exception class for all service exceptions from Invoicing service.
* * @public + * @example ListInvoiceUnits without filters as of current time + * ```javascript + * // + * const input = {}; + * const command = new ListInvoiceUnitsCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "InvoiceUnits": [ + * { + * "Description": "Description changed on 1733788800", + * "InvoiceReceiver": "111111111111", + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678", + * "LastModified": 1733788800, + * "Name": "Example Invoice Unit A", + * "Rule": { + * "LinkedAccounts": [ + * "222222222222" + * ] + * }, + * "TaxInheritanceDisabled": false + * }, + * { + * "Description": "Description changed on 1733788800", + * "InvoiceReceiver": "333333333333", + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321", + * "LastModified": 1733788800, + * "Name": "Example Invoice Unit B", + * "Rule": { + * "LinkedAccounts": [ + * "333333333333" + * ] + * }, + * "TaxInheritanceDisabled": true + * } + * ] + * } + * *\/ + * // example id: example-1 + * ``` + * + * @example ListInvoiceUnits with filters as of specified time + * ```javascript + * // + * const input = { + * "AsOf": 1733097600, + * "Filters": { + * "InvoiceReceivers": [ + * "333333333333" + * ] + * } + * }; + * const command = new ListInvoiceUnitsCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "InvoiceUnits": [ + * { + * "Description": "Description changed on 1733011200", + * "InvoiceReceiver": "333333333333", + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321", + * "LastModified": 1733011200, + * "Name": "Example Invoice Unit B", + * "Rule": { + * "LinkedAccounts": [ + * "333333333333" + * ] + * }, + * "TaxInheritanceDisabled": false + * } + * ] + * } + * *\/ + * // example id: example-2 + * ``` + * + * @example ListInvoiceUnits with pagination - first page + * ```javascript + * // + * const input = { + * "MaxResults": 1 + * }; + * const command = new ListInvoiceUnitsCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "InvoiceUnits": [ + * { + * "Description": "Description changed on 1733788800", + * "InvoiceReceiver": "111111111111", + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678", + * "LastModified": 1733788800, + * "Name": "Example Invoice Unit A", + * "Rule": { + * "LinkedAccounts": [ + * "222222222222" + * ] + * }, + * "TaxInheritanceDisabled": false + * } + * ], + * "NextToken": "nextTokenExample" + * } + * *\/ + * // example id: example-3 + * ``` + * + * @example ListInvoiceUnits with pagination - second page + * ```javascript + * // + * const input = { + * "MaxResults": 1, + * "NextToken": "nextTokenExample" + * }; + * const command = new ListInvoiceUnitsCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "InvoiceUnits": [ + * { + * "Description": "Description changed on 1733788800", + * "InvoiceReceiver": "333333333333", + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/87654321", + * "LastModified": 1733788800, + * "Name": "Example Invoice Unit B", + * "Rule": { + * "LinkedAccounts": [ + * "333333333333" + * ] + * }, + * "TaxInheritanceDisabled": true + * } + * ] + * } + * *\/ + * // example id: example-4 + * ``` + * */ export class ListInvoiceUnitsCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/ListTagsForResourceCommand.ts b/clients/client-invoicing/src/commands/ListTagsForResourceCommand.ts index 3631c9b4cf19..0d4efd1f50d9 100644 --- a/clients/client-invoicing/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-invoicing/src/commands/ListTagsForResourceCommand.ts @@ -81,6 +81,27 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes *Base exception class for all service exceptions from Invoicing service.
* * @public + * @example ListTagsForResource + * ```javascript + * // + * const input = { + * "ResourceArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * }; + * const command = new ListTagsForResourceCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "ResourceTags": [ + * { + * "Key": "TagKey", + * "Value": "TagValue" + * } + * ] + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/TagResourceCommand.ts b/clients/client-invoicing/src/commands/TagResourceCommand.ts index 6cf7f04ad655..917bb59bb11d 100644 --- a/clients/client-invoicing/src/commands/TagResourceCommand.ts +++ b/clients/client-invoicing/src/commands/TagResourceCommand.ts @@ -84,6 +84,23 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat *Base exception class for all service exceptions from Invoicing service.
* * @public + * @example TagResource + * ```javascript + * // + * const input = { + * "ResourceArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678", + * "ResourceTags": [ + * { + * "Key": "TagKey", + * "Value": "TagValue" + * } + * ] + * }; + * const command = new TagResourceCommand(input); + * await client.send(command); + * // example id: example-1 + * ``` + * */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/UntagResourceCommand.ts b/clients/client-invoicing/src/commands/UntagResourceCommand.ts index f2dd4a28cf1f..7b3cb44f6af6 100644 --- a/clients/client-invoicing/src/commands/UntagResourceCommand.ts +++ b/clients/client-invoicing/src/commands/UntagResourceCommand.ts @@ -78,6 +78,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met *Base exception class for all service exceptions from Invoicing service.
* * @public + * @example UntagResource + * ```javascript + * // + * const input = { + * "ResourceArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678", + * "ResourceTagKeys": [ + * "TagKey" + * ] + * }; + * const command = new UntagResourceCommand(input); + * await client.send(command); + * // example id: example-1 + * ``` + * */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-invoicing/src/commands/UpdateInvoiceUnitCommand.ts b/clients/client-invoicing/src/commands/UpdateInvoiceUnitCommand.ts index 2333e60a89be..cd24874420dc 100644 --- a/clients/client-invoicing/src/commands/UpdateInvoiceUnitCommand.ts +++ b/clients/client-invoicing/src/commands/UpdateInvoiceUnitCommand.ts @@ -82,6 +82,47 @@ export interface UpdateInvoiceUnitCommandOutput extends UpdateInvoiceUnitRespons *Base exception class for all service exceptions from Invoicing service.
* * @public + * @example UpdateInvoiceUnit with all updatable fields + * ```javascript + * // + * const input = { + * "Description": "Updated IU description", + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678", + * "Rule": { + * "LinkedAccounts": [ + * "111111111111", + * "222222222222" + * ] + * }, + * "TaxInheritanceDisabled": false + * }; + * const command = new UpdateInvoiceUnitCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * } + * *\/ + * // example id: example-1 + * ``` + * + * @example UpdateInvoiceUnit with specific fields + * ```javascript + * // + * const input = { + * "Description": "Updated IU description. All other fields remain unchanged", + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * }; + * const command = new UpdateInvoiceUnitCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "InvoiceUnitArn": "arn:aws:invoicing::000000000000:invoice-unit/12345678" + * } + * *\/ + * // example id: example-2 + * ``` + * */ export class UpdateInvoiceUnitCommand extends $Command .classBuilder< diff --git a/clients/client-s3-control/CHANGELOG.md b/clients/client-s3-control/CHANGELOG.md index de20963fb85e..45318ed60721 100644 --- a/clients/client-s3-control/CHANGELOG.md +++ b/clients/client-s3-control/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03) + + +### Features + +* **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)) + + + + + # [3.703.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.702.0...v3.703.0) (2024-12-02) diff --git a/clients/client-s3-control/package.json b/clients/client-s3-control/package.json index 9d0014003e7e..09654c18b249 100644 --- a/clients/client-s3-control/package.json +++ b/clients/client-s3-control/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-s3-control", "description": "AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native", - "version": "3.703.0", + "version": "3.704.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline client-s3-control", diff --git a/clients/client-security-ir/CHANGELOG.md b/clients/client-security-ir/CHANGELOG.md index b63d85bfb530..3f31dde3405c 100644 --- a/clients/client-security-ir/CHANGELOG.md +++ b/clients/client-security-ir/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03) + +**Note:** Version bump only for package @aws-sdk/client-security-ir + + + + + # [3.703.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.702.0...v3.703.0) (2024-12-02) diff --git a/clients/client-security-ir/package.json b/clients/client-security-ir/package.json index 7a15afc10752..b2f1837833e8 100644 --- a/clients/client-security-ir/package.json +++ b/clients/client-security-ir/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-security-ir", "description": "AWS SDK for JavaScript Security Ir Client for Node.js, Browser and React Native", - "version": "3.703.0", + "version": "3.704.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/clients/client-security-ir/src/commands/BatchGetMemberAccountDetailsCommand.ts b/clients/client-security-ir/src/commands/BatchGetMemberAccountDetailsCommand.ts index ce64c8781fde..c1b97f2c30b4 100644 --- a/clients/client-security-ir/src/commands/BatchGetMemberAccountDetailsCommand.ts +++ b/clients/client-security-ir/src/commands/BatchGetMemberAccountDetailsCommand.ts @@ -104,6 +104,31 @@ export interface BatchGetMemberAccountDetailsCommandOutput *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke BatchGetMemberAccountDetails + * ```javascript + * // + * const input = { + * "accountIds": [ + * "123412341234" + * ], + * "membershipId": "m-abcd1234efgh" + * }; + * const command = new BatchGetMemberAccountDetailsCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "items": [ + * { + * "accountId": "123412341234", + * "relationshipStatus": "Associated", + * "relationshipType": "Organization" + * } + * ] + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class BatchGetMemberAccountDetailsCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/CancelMembershipCommand.ts b/clients/client-security-ir/src/commands/CancelMembershipCommand.ts index d36b499357ef..b9ce94c07d2b 100644 --- a/clients/client-security-ir/src/commands/CancelMembershipCommand.ts +++ b/clients/client-security-ir/src/commands/CancelMembershipCommand.ts @@ -83,6 +83,22 @@ export interface CancelMembershipCommandOutput extends CancelMembershipResponse, *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke CancelMembership + * ```javascript + * // + * const input = { + * "membershipId": "m-abcd1234efgh" + * }; + * const command = new CancelMembershipCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "membershipId": "m-abcd1234efgh" + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class CancelMembershipCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/CloseCaseCommand.ts b/clients/client-security-ir/src/commands/CloseCaseCommand.ts index c914939bcb3f..b0f02949c685 100644 --- a/clients/client-security-ir/src/commands/CloseCaseCommand.ts +++ b/clients/client-security-ir/src/commands/CloseCaseCommand.ts @@ -84,6 +84,23 @@ export interface CloseCaseCommandOutput extends CloseCaseResponse, __MetadataBea *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke CloseCase + * ```javascript + * // + * const input = { + * "caseId": "8403556009" + * }; + * const command = new CloseCaseCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "caseStatus": "Closed", + * "closedDate": "2024-02-27T17:01:33.000Z" + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class CloseCaseCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/CreateCaseCommand.ts b/clients/client-security-ir/src/commands/CreateCaseCommand.ts index 06f0ef85b35a..1ef8c870f1f1 100644 --- a/clients/client-security-ir/src/commands/CreateCaseCommand.ts +++ b/clients/client-security-ir/src/commands/CreateCaseCommand.ts @@ -115,6 +115,52 @@ export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataB *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke CreateCase + * ```javascript + * // + * const input = { + * "description": "Case description", + * "engagementType": "Investigation", + * "impactedAccounts": [ + * "000000000000", + * "111111111111" + * ], + * "impactedAwsRegions": [ + * { + * "region": "ap-southeast-1" + * } + * ], + * "impactedServices": [ + * "Amazon EC2", + * "Amazon EKS" + * ], + * "reportedIncidentStartDate": "2023-03-27T15:32:01.789Z", + * "resolverType": "Self", + * "threatActorIpAddresses": [ + * { + * "ipAddress": "192.168.192.168", + * "userAgent": "Browser" + * } + * ], + * "title": "My sample case", + * "watchers": [ + * { + * "name": "Alice", + * "email": "alice@example.com", + * "jobTitle": "CEO" + * }, + * { + * "name": "Bob", + * "email": "bob@example.com", + * "jobTitle": "CFO" + * } + * ] + * }; + * const command = new CreateCaseCommand(input); + * await client.send(command); + * // example id: example-1 + * ``` + * */ export class CreateCaseCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/CreateCaseCommentCommand.ts b/clients/client-security-ir/src/commands/CreateCaseCommentCommand.ts index 08d955105f97..4b214c414935 100644 --- a/clients/client-security-ir/src/commands/CreateCaseCommentCommand.ts +++ b/clients/client-security-ir/src/commands/CreateCaseCommentCommand.ts @@ -89,6 +89,23 @@ export interface CreateCaseCommentCommandOutput extends CreateCaseCommentRespons *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke CreateCaseComment + * ```javascript + * // + * const input = { + * "body": "Case comment body.", + * "caseId": "8403556009" + * }; + * const command = new CreateCaseCommentCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "commentId": "000000" + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class CreateCaseCommentCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/CreateMembershipCommand.ts b/clients/client-security-ir/src/commands/CreateMembershipCommand.ts index 213f92520e8c..21e79cc1e83b 100644 --- a/clients/client-security-ir/src/commands/CreateMembershipCommand.ts +++ b/clients/client-security-ir/src/commands/CreateMembershipCommand.ts @@ -104,6 +104,40 @@ export interface CreateMembershipCommandOutput extends CreateMembershipResponse, *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke CreateMembership + * ```javascript + * // + * const input = { + * "incidentResponseTeam": [ + * { + * "name": "Bob Jones", + * "email": "bob.jones@gmail.com", + * "jobTitle": "Security Responder" + * }, + * { + * "name": "Alice", + * "email": "alice@example.com", + * "jobTitle": "CEO" + * } + * ], + * "membershipName": "Example Membership Name.", + * "optInFeatures": [ + * { + * "featureName": "Triage", + * "isEnabled": true + * } + * ] + * }; + * const command = new CreateMembershipCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "membershipId": "m-abcd1234efgh" + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class CreateMembershipCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/GetCaseAttachmentDownloadUrlCommand.ts b/clients/client-security-ir/src/commands/GetCaseAttachmentDownloadUrlCommand.ts index 5276be582508..ca809ee658ea 100644 --- a/clients/client-security-ir/src/commands/GetCaseAttachmentDownloadUrlCommand.ts +++ b/clients/client-security-ir/src/commands/GetCaseAttachmentDownloadUrlCommand.ts @@ -93,6 +93,23 @@ export interface GetCaseAttachmentDownloadUrlCommandOutput *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke GetCaseAttachmentDownloadUrl + * ```javascript + * // + * const input = { + * "attachmentId": "3C5A6B89-1DEF-4C2D-A5B6-123456789ABC", + * "caseId": "8403556009" + * }; + * const command = new GetCaseAttachmentDownloadUrlCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "attachmentPresignedUrl": "https://presignedurl.com" + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class GetCaseAttachmentDownloadUrlCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/GetCaseAttachmentUploadUrlCommand.ts b/clients/client-security-ir/src/commands/GetCaseAttachmentUploadUrlCommand.ts index 0e630b7883c5..02cee97bbee6 100644 --- a/clients/client-security-ir/src/commands/GetCaseAttachmentUploadUrlCommand.ts +++ b/clients/client-security-ir/src/commands/GetCaseAttachmentUploadUrlCommand.ts @@ -91,6 +91,24 @@ export interface GetCaseAttachmentUploadUrlCommandOutput extends GetCaseAttachme *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke GetCaseAttachmentUploadUrl + * ```javascript + * // + * const input = { + * "caseId": "8403556009", + * "contentLength": 1500, + * "fileName": "TestFileName" + * }; + * const command = new GetCaseAttachmentUploadUrlCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "attachmentPresignedUrl": "https://presignedurl.com" + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class GetCaseAttachmentUploadUrlCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/GetCaseCommand.ts b/clients/client-security-ir/src/commands/GetCaseCommand.ts index 75733ba0638b..c7f004e8bdc2 100644 --- a/clients/client-security-ir/src/commands/GetCaseCommand.ts +++ b/clients/client-security-ir/src/commands/GetCaseCommand.ts @@ -128,6 +128,63 @@ export interface GetCaseCommandOutput extends GetCaseResponse, __MetadataBearer *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke GetCase + * ```javascript + * // + * const input = { + * "caseId": "8403556009" + * }; + * const command = new GetCaseCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "actualIncidentStartDate": "2023-03-27T15:32:01.789Z", + * "caseArn": "arn:aws:security-ir:us-west-1:123456789012:case/1234567890", + * "caseStatus": "Submitted", + * "createdDate": "2023-01-27T15:32:01.789Z", + * "description": "Case description", + * "engagementType": "Investigation", + * "impactedAccounts": [ + * "000000000000", + * "111111111111" + * ], + * "impactedAwsRegions": [ + * { + * "region": "ap-southeast-1" + * } + * ], + * "impactedServices": [ + * "Amazon EC2", + * "Amazon EKS" + * ], + * "lastUpdatedDate": "2023-02-27T15:32:01.789Z", + * "pendingAction": "Customer", + * "reportedIncidentStartDate": "2023-03-27T15:32:01.789Z", + * "resolverType": "Self", + * "threatActorIpAddresses": [ + * { + * "ipAddress": "192.168.192.168", + * "userAgent": "Browser" + * } + * ], + * "title": "My sample case", + * "watchers": [ + * { + * "name": "Alice", + * "email": "alice@example.com", + * "jobTitle": "CEO" + * }, + * { + * "name": "Bob", + * "email": "bob@example.com", + * "jobTitle": "CFO" + * } + * ] + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class GetCaseCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/GetMembershipCommand.ts b/clients/client-security-ir/src/commands/GetMembershipCommand.ts index f13f97faf6d4..122adc851c7f 100644 --- a/clients/client-security-ir/src/commands/GetMembershipCommand.ts +++ b/clients/client-security-ir/src/commands/GetMembershipCommand.ts @@ -109,6 +109,49 @@ export interface GetMembershipCommandOutput extends GetMembershipResponse, __Met *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke GetMembership + * ```javascript + * // + * const input = { + * "membershipId": "m-abcd1234efgh" + * }; + * const command = new GetMembershipCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "accountId": "123412341234", + * "customerType": "Standalone", + * "incidentResponseTeam": [ + * { + * "name": "Bob Jones", + * "email": "bob.jones@gmail.com", + * "jobTitle": "Security Responder" + * }, + * { + * "name": "Alice", + * "email": "alice@example.com", + * "jobTitle": "CEO" + * } + * ], + * "membershipActivationTimestamp": "2023-03-27T15:32:01.789Z", + * "membershipArn": "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh", + * "membershipDeactivationTimestamp": "2023-04-27T15:32:01.789Z", + * "membershipId": "m-abcd1234efgh", + * "membershipName": "Example Membership", + * "membershipStatus": "Active", + * "numberOfAccountsCovered": 50, + * "optInFeatures": [ + * { + * "featureName": "Triage", + * "isEnabled": true + * } + * ], + * "region": "af-south-1" + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class GetMembershipCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/ListCaseEditsCommand.ts b/clients/client-security-ir/src/commands/ListCaseEditsCommand.ts index a2e2d8b9592c..bfa3aa6f78c6 100644 --- a/clients/client-security-ir/src/commands/ListCaseEditsCommand.ts +++ b/clients/client-security-ir/src/commands/ListCaseEditsCommand.ts @@ -94,6 +94,30 @@ export interface ListCaseEditsCommandOutput extends ListCaseEditsResponse, __Met *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke ListCaseEdits + * ```javascript + * // + * const input = { + * "caseId": "8403556009" + * }; + * const command = new ListCaseEditsCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "items": [ + * { + * "action": "Add comment", + * "eventTimestamp": "2023-03-27T15:32:01.789Z", + * "message": "Added comment to ask question to responder.", + * "principal": "00000000000" + * } + * ], + * "total": 1 + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class ListCaseEditsCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/ListCasesCommand.ts b/clients/client-security-ir/src/commands/ListCasesCommand.ts index fb3c96295d07..43caab6a14c8 100644 --- a/clients/client-security-ir/src/commands/ListCasesCommand.ts +++ b/clients/client-security-ir/src/commands/ListCasesCommand.ts @@ -99,6 +99,35 @@ export interface ListCasesCommandOutput extends ListCasesResponse, __MetadataBea *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke ListCases + * ```javascript + * // + * const input = { + * "maxResults": 10 + * }; + * const command = new ListCasesCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "items": [ + * { + * "caseArn": "arn:aws:security-ir:us-west-1:123456789012:case/1234567890", + * "caseId": "8403556009", + * "caseStatus": "Acknowledged", + * "createdDate": "2023-01-27T15:32:01.789Z", + * "engagementType": "Security Incident", + * "lastUpdatedDate": "2023-03-27T15:32:01.789Z", + * "pendingAction": "None", + * "resolverType": "Self", + * "title": "Example case title" + * } + * ], + * "total": 1 + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class ListCasesCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/ListCommentsCommand.ts b/clients/client-security-ir/src/commands/ListCommentsCommand.ts index 416a14471ec2..0c6d0050aa75 100644 --- a/clients/client-security-ir/src/commands/ListCommentsCommand.ts +++ b/clients/client-security-ir/src/commands/ListCommentsCommand.ts @@ -96,6 +96,28 @@ export interface ListCommentsCommandOutput extends ListCommentsResponse, __Metad *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke ListComments + * ```javascript + * // + * const input = { + * "caseId": "8403556009" + * }; + * const command = new ListCommentsCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "items": [ + * { + * "body": "Case comment body.", + * "commentId": "000000" + * } + * ], + * "total": 1 + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class ListCommentsCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/ListMembershipsCommand.ts b/clients/client-security-ir/src/commands/ListMembershipsCommand.ts index 81c336741625..c78f77c7009c 100644 --- a/clients/client-security-ir/src/commands/ListMembershipsCommand.ts +++ b/clients/client-security-ir/src/commands/ListMembershipsCommand.ts @@ -93,6 +93,30 @@ export interface ListMembershipsCommandOutput extends ListMembershipsResponse, _ *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke ListMemberships + * ```javascript + * // + * const input = { + * "maxResults": 10 + * }; + * const command = new ListMembershipsCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "items": [ + * { + * "accountId": "123123123123", + * "membershipArn": "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh", + * "membershipId": "m-abcd1234efgh", + * "membershipStatus": "Cancelled", + * "region": "af-south-1" + * } + * ] + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class ListMembershipsCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/ListTagsForResourceCommand.ts b/clients/client-security-ir/src/commands/ListTagsForResourceCommand.ts index 3b0cb0285b22..fbcbb1378345 100644 --- a/clients/client-security-ir/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-security-ir/src/commands/ListTagsForResourceCommand.ts @@ -85,6 +85,25 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke ListTagsForResource + * ```javascript + * // + * const input = { + * "resourceArn": "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh" + * }; + * const command = new ListTagsForResourceCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "tags": { + * "key": "example-tag-key", + * "value": "example-tag-value" + * } + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class ListTagsForResourceCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/TagResourceCommand.ts b/clients/client-security-ir/src/commands/TagResourceCommand.ts index b378387ab423..6082557eca71 100644 --- a/clients/client-security-ir/src/commands/TagResourceCommand.ts +++ b/clients/client-security-ir/src/commands/TagResourceCommand.ts @@ -84,6 +84,21 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke TagResource + * ```javascript + * // + * const input = { + * "resourceArn": "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh", + * "tags": { + * "key": "example-tag-key", + * "value": "example-tag-value" + * } + * }; + * const command = new TagResourceCommand(input); + * await client.send(command); + * // example id: example-1 + * ``` + * */ export class TagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/UntagResourceCommand.ts b/clients/client-security-ir/src/commands/UntagResourceCommand.ts index 2a39c26b57fe..0390a546f23c 100644 --- a/clients/client-security-ir/src/commands/UntagResourceCommand.ts +++ b/clients/client-security-ir/src/commands/UntagResourceCommand.ts @@ -84,6 +84,20 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke UntagResource + * ```javascript + * // + * const input = { + * "resourceArn": "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh", + * "tagKeys": [ + * "example-tag-key" + * ] + * }; + * const command = new UntagResourceCommand(input); + * await client.send(command); + * // example id: example-1 + * ``` + * */ export class UntagResourceCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/UpdateCaseCommand.ts b/clients/client-security-ir/src/commands/UpdateCaseCommand.ts index 41d069ca62c5..e989f8f996eb 100644 --- a/clients/client-security-ir/src/commands/UpdateCaseCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateCaseCommand.ts @@ -134,6 +134,70 @@ export interface UpdateCaseCommandOutput extends UpdateCaseResponse, __MetadataB *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke UpdateCase + * ```javascript + * // + * const input = { + * "actualIncidentStartDate": "2023-03-25T15:32:01.789Z", + * "caseId": "8403556009", + * "description": "Case description", + * "engagementType": "Investigation", + * "impactedAccountsToAdd": [ + * "000000000000" + * ], + * "impactedAccountsToDelete": [ + * "111111111111" + * ], + * "impactedAwsRegionsToAdd": [ + * { + * "region": "ap-southeast-1" + * } + * ], + * "impactedAwsRegionsToDelete": [ + * { + * "region": "us-east-1" + * } + * ], + * "impactedServicesToAdd": [ + * "Amazon EC2" + * ], + * "impactedServicesToDelete": [ + * "Amazon EKS" + * ], + * "reportedIncidentStartDate": "2023-03-27T15:32:01.789Z", + * "threatActorIpAddressesToAdd": [ + * { + * "ipAddress": "190.160.190.160", + * "userAgent": "Browser" + * } + * ], + * "threatActorIpAddressesToDelete": [ + * { + * "ipAddress": "192.168.192.168", + * "userAgent": "Browser" + * } + * ], + * "title": "My sample case", + * "watchersToAdd": [ + * { + * "name": "Same", + * "email": "Sam@example.com", + * "jobTitle": "CEO" + * } + * ], + * "watchersToDelete": [ + * { + * "name": "Bob", + * "email": "bob@example.com", + * "jobTitle": "CFO" + * } + * ] + * }; + * const command = new UpdateCaseCommand(input); + * await client.send(command); + * // example id: example-1 + * ``` + * */ export class UpdateCaseCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/UpdateCaseCommentCommand.ts b/clients/client-security-ir/src/commands/UpdateCaseCommentCommand.ts index edb59fcad2fb..eedc2a60eb3e 100644 --- a/clients/client-security-ir/src/commands/UpdateCaseCommentCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateCaseCommentCommand.ts @@ -91,6 +91,25 @@ export interface UpdateCaseCommentCommandOutput extends UpdateCaseCommentRespons *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke UpdateCaseComment + * ```javascript + * // + * const input = { + * "body": "Updated case comment.", + * "caseId": "8403556009", + * "commentId": "000000" + * }; + * const command = new UpdateCaseCommentCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "body": "Updated case comment.", + * "commentId": "000000" + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class UpdateCaseCommentCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/UpdateCaseStatusCommand.ts b/clients/client-security-ir/src/commands/UpdateCaseStatusCommand.ts index 8e8096f0dc67..3404effa1011 100644 --- a/clients/client-security-ir/src/commands/UpdateCaseStatusCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateCaseStatusCommand.ts @@ -86,6 +86,23 @@ export interface UpdateCaseStatusCommandOutput extends UpdateCaseStatusResponse, *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke UpdateCaseStatus + * ```javascript + * // + * const input = { + * "caseId": "8403556009", + * "caseStatus": "Post-incident Activities" + * }; + * const command = new UpdateCaseStatusCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "caseStatus": "Post-incident Activities" + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class UpdateCaseStatusCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/UpdateMembershipCommand.ts b/clients/client-security-ir/src/commands/UpdateMembershipCommand.ts index 13568ff4c5ec..8b2ecc8f8488 100644 --- a/clients/client-security-ir/src/commands/UpdateMembershipCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateMembershipCommand.ts @@ -99,6 +99,36 @@ export interface UpdateMembershipCommandOutput extends UpdateMembershipResponse, *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke UpdateMembership + * ```javascript + * // + * const input = { + * "incidentResponseTeam": [ + * { + * "name": "Bob Jones", + * "email": "bob.jones@gmail.com", + * "jobTitle": "Security Responder" + * }, + * { + * "name": "Alice", + * "email": "alice@example.com", + * "jobTitle": "CEO" + * } + * ], + * "membershipId": "m-abcd1234efgh", + * "membershipName": "New membership name", + * "optInFeatures": [ + * { + * "featureName": "Triage", + * "isEnabled": true + * } + * ] + * }; + * const command = new UpdateMembershipCommand(input); + * await client.send(command); + * // example id: example-1 + * ``` + * */ export class UpdateMembershipCommand extends $Command .classBuilder< diff --git a/clients/client-security-ir/src/commands/UpdateResolverTypeCommand.ts b/clients/client-security-ir/src/commands/UpdateResolverTypeCommand.ts index 83518fd3011b..264776c575f0 100644 --- a/clients/client-security-ir/src/commands/UpdateResolverTypeCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateResolverTypeCommand.ts @@ -90,6 +90,25 @@ export interface UpdateResolverTypeCommandOutput extends UpdateResolverTypeRespo *Base exception class for all service exceptions from SecurityIR service.
* * @public + * @example Invoke UpdateResolverType + * ```javascript + * // + * const input = { + * "caseId": "8403556009", + * "resolverType": "AWS" + * }; + * const command = new UpdateResolverTypeCommand(input); + * const response = await client.send(command); + * /* response == + * { + * "caseId": "8403556009", + * "caseStatus": "Detection and Analysis", + * "resolverType": "AWS" + * } + * *\/ + * // example id: example-1 + * ``` + * */ export class UpdateResolverTypeCommand extends $Command .classBuilder< diff --git a/clients/client-socialmessaging/CHANGELOG.md b/clients/client-socialmessaging/CHANGELOG.md index 1ff41242810a..03218193783c 100644 --- a/clients/client-socialmessaging/CHANGELOG.md +++ b/clients/client-socialmessaging/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03) + + +### Features + +* **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)) + + + + + # [3.699.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.698.0...v3.699.0) (2024-11-22) **Note:** Version bump only for package @aws-sdk/client-socialmessaging diff --git a/clients/client-socialmessaging/package.json b/clients/client-socialmessaging/package.json index 407d1d8248a8..acf78fa6e372 100644 --- a/clients/client-socialmessaging/package.json +++ b/clients/client-socialmessaging/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/client-socialmessaging", "description": "AWS SDK for JavaScript Socialmessaging Client for Node.js, Browser and React Native", - "version": "3.699.0", + "version": "3.704.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "tsc -p tsconfig.cjs.json", diff --git a/lerna.json b/lerna.json index 49f98d694cbb..fd0f475e249b 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.703.0", + "version": "3.704.0", "npmClient": "yarn", "useWorkspaces": true, "command": { diff --git a/lib/lib-dynamodb/CHANGELOG.md b/lib/lib-dynamodb/CHANGELOG.md index bcf144ce47e8..5027343f675c 100644 --- a/lib/lib-dynamodb/CHANGELOG.md +++ b/lib/lib-dynamodb/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03) + +**Note:** Version bump only for package @aws-sdk/lib-dynamodb + + + + + # [3.699.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.698.0...v3.699.0) (2024-11-22) **Note:** Version bump only for package @aws-sdk/lib-dynamodb diff --git a/lib/lib-dynamodb/package.json b/lib/lib-dynamodb/package.json index e47c92aa200e..ca718a4a217b 100644 --- a/lib/lib-dynamodb/package.json +++ b/lib/lib-dynamodb/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/lib-dynamodb", - "version": "3.699.0", + "version": "3.704.0", "description": "The document client simplifies working with items in Amazon DynamoDB by abstracting away the notion of attribute values.", "main": "./dist-cjs/index.js", "module": "./dist-es/index.js", diff --git a/packages/util-dynamodb/CHANGELOG.md b/packages/util-dynamodb/CHANGELOG.md index 23afcfee5e1e..f2926218fc6b 100644 --- a/packages/util-dynamodb/CHANGELOG.md +++ b/packages/util-dynamodb/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03) + +**Note:** Version bump only for package @aws-sdk/util-dynamodb + + + + + # [3.699.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.698.0...v3.699.0) (2024-11-22) **Note:** Version bump only for package @aws-sdk/util-dynamodb diff --git a/packages/util-dynamodb/package.json b/packages/util-dynamodb/package.json index c63a4cfe34ca..7d1fe4babbed 100644 --- a/packages/util-dynamodb/package.json +++ b/packages/util-dynamodb/package.json @@ -1,6 +1,6 @@ { "name": "@aws-sdk/util-dynamodb", - "version": "3.699.0", + "version": "3.704.0", "scripts": { "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", "build:cjs": "node ../../scripts/compilation/inline util-dynamodb", diff --git a/private/aws-middleware-test/CHANGELOG.md b/private/aws-middleware-test/CHANGELOG.md index a9f55f610514..80bf887183dd 100644 --- a/private/aws-middleware-test/CHANGELOG.md +++ b/private/aws-middleware-test/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.704.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.703.0...v3.704.0) (2024-12-03) + +**Note:** Version bump only for package @aws-sdk/aws-middleware-test + + + + + # [3.703.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.702.0...v3.703.0) (2024-12-02) **Note:** Version bump only for package @aws-sdk/aws-middleware-test diff --git a/private/aws-middleware-test/package.json b/private/aws-middleware-test/package.json index c1e58c3715f7..9c9c9106c5b2 100644 --- a/private/aws-middleware-test/package.json +++ b/private/aws-middleware-test/package.json @@ -1,7 +1,7 @@ { "name": "@aws-sdk/aws-middleware-test", "description": "Integration test suite for AWS middleware", - "version": "3.703.0", + "version": "3.704.0", "scripts": { "build": "exit 0", "build:cjs": "exit 0",