@aws-sdk/client-sesv2 3.752.0 → 3.753.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -65,6 +65,18 @@ declare const PutConfigurationSetArchivingOptionsCommand_base: {
65
65
  * <p>Base exception class for all service exceptions from SESv2 service.</p>
66
66
  *
67
67
  * @public
68
+ * @example Used to associate an MailManager archive with a ConfigurationSet.
69
+ * ```javascript
70
+ * // This example associates an archive arn with a configuration set.
71
+ * const input = {
72
+ * "ArchiveArn": "arn:aws:ses:us-west-2:123456789012:mailmanager-archive/a-abcdefghijklmnopqrstuvwxyz",
73
+ * "ConfigurationSetName": "sample-configuration-name"
74
+ * };
75
+ * const command = new PutConfigurationSetArchivingOptionsCommand(input);
76
+ * await client.send(command);
77
+ * // example id: put-configuration-set-archiving-options-example-1737363685
78
+ * ```
79
+ *
68
80
  */
69
81
  export declare class PutConfigurationSetArchivingOptionsCommand extends PutConfigurationSetArchivingOptionsCommand_base {
70
82
  /** @internal type navigation helper, not in runtime. */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sesv2",
3
3
  "description": "AWS SDK for JavaScript Sesv2 Client for Node.js, Browser and React Native",
4
- "version": "3.752.0",
4
+ "version": "3.753.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-sesv2",