@aws-sdk/client-mailmanager 3.751.0 → 3.752.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.
@@ -1828,10 +1828,15 @@ const de_ListRuleSetsResponse = (output, context) => {
1828
1828
  };
1829
1829
  const de_Metadata = (output, context) => {
1830
1830
  return (0, smithy_client_1.take)(output, {
1831
+ ConfigurationSet: smithy_client_1.expectString,
1831
1832
  IngressPointId: smithy_client_1.expectString,
1832
1833
  RuleSetId: smithy_client_1.expectString,
1833
1834
  SenderHostname: smithy_client_1.expectString,
1834
1835
  SenderIpAddress: smithy_client_1.expectString,
1836
+ SendingMethod: smithy_client_1.expectString,
1837
+ SendingPool: smithy_client_1.expectString,
1838
+ SourceArn: smithy_client_1.expectString,
1839
+ SourceIdentity: smithy_client_1.expectString,
1835
1840
  Timestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
1836
1841
  TlsCipherSuite: smithy_client_1.expectString,
1837
1842
  TlsProtocol: smithy_client_1.expectString,
@@ -1868,6 +1873,7 @@ const de_Row = (output, context) => {
1868
1873
  ReceivedTimestamp: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
1869
1874
  SenderHostname: smithy_client_1.expectString,
1870
1875
  SenderIpAddress: smithy_client_1.expectString,
1876
+ SourceArn: smithy_client_1.expectString,
1871
1877
  Subject: smithy_client_1.expectString,
1872
1878
  To: smithy_client_1.expectString,
1873
1879
  XMailer: smithy_client_1.expectString,
@@ -1703,10 +1703,15 @@ const de_ListRuleSetsResponse = (output, context) => {
1703
1703
  };
1704
1704
  const de_Metadata = (output, context) => {
1705
1705
  return take(output, {
1706
+ ConfigurationSet: __expectString,
1706
1707
  IngressPointId: __expectString,
1707
1708
  RuleSetId: __expectString,
1708
1709
  SenderHostname: __expectString,
1709
1710
  SenderIpAddress: __expectString,
1711
+ SendingMethod: __expectString,
1712
+ SendingPool: __expectString,
1713
+ SourceArn: __expectString,
1714
+ SourceIdentity: __expectString,
1710
1715
  Timestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1711
1716
  TlsCipherSuite: __expectString,
1712
1717
  TlsProtocol: __expectString,
@@ -1743,6 +1748,7 @@ const de_Row = (output, context) => {
1743
1748
  ReceivedTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1744
1749
  SenderHostname: __expectString,
1745
1750
  SenderIpAddress: __expectString,
1751
+ SourceArn: __expectString,
1746
1752
  Subject: __expectString,
1747
1753
  To: __expectString,
1748
1754
  XMailer: __expectString,
@@ -52,6 +52,11 @@ declare const GetArchiveMessageCommand_base: {
52
52
  * // SenderIpAddress: "STRING_VALUE",
53
53
  * // TlsCipherSuite: "STRING_VALUE",
54
54
  * // TlsProtocol: "STRING_VALUE",
55
+ * // SendingMethod: "STRING_VALUE",
56
+ * // SourceIdentity: "STRING_VALUE",
57
+ * // SendingPool: "STRING_VALUE",
58
+ * // ConfigurationSet: "STRING_VALUE",
59
+ * // SourceArn: "STRING_VALUE",
55
60
  * // },
56
61
  * // Envelope: { // Envelope
57
62
  * // Helo: "STRING_VALUE",
@@ -68,6 +68,7 @@ declare const GetArchiveSearchResultsCommand_base: {
68
68
  * // "STRING_VALUE",
69
69
  * // ],
70
70
  * // },
71
+ * // SourceArn: "STRING_VALUE",
71
72
  * // },
72
73
  * // ],
73
74
  * // };
@@ -3345,6 +3345,35 @@ export interface Metadata {
3345
3345
  * @public
3346
3346
  */
3347
3347
  TlsProtocol?: string | undefined;
3348
+ /**
3349
+ * <p>The name of the API call used when sent through a configuration set with archiving enabled.</p>
3350
+ * @public
3351
+ */
3352
+ SendingMethod?: string | undefined;
3353
+ /**
3354
+ * <p>The identity name used to authorize the sending action when sent through a configuration set with
3355
+ * archiving enabled.</p>
3356
+ * @public
3357
+ */
3358
+ SourceIdentity?: string | undefined;
3359
+ /**
3360
+ * <p>The name of the dedicated IP pool used when sent through a configuration set with archiving
3361
+ * enabled.</p>
3362
+ * @public
3363
+ */
3364
+ SendingPool?: string | undefined;
3365
+ /**
3366
+ * <p>The name of the configuration set used when sent through a configuration set with archiving
3367
+ * enabled.</p>
3368
+ * @public
3369
+ */
3370
+ ConfigurationSet?: string | undefined;
3371
+ /**
3372
+ * <p>Specifies the archived email source, identified by either a Rule Set's ARN with an Archive action, or a
3373
+ * Configuration Set's Archive ARN.</p>
3374
+ * @public
3375
+ */
3376
+ SourceArn?: string | undefined;
3348
3377
  }
3349
3378
  /**
3350
3379
  * <p>The response containing details about the requested archived email message.</p>
@@ -3595,7 +3624,16 @@ export interface Row {
3595
3624
  */
3596
3625
  SenderHostname?: string | undefined;
3597
3626
  /**
3598
- * <p>The IP address of the host from which the email was received.</p>
3627
+ * <ul>
3628
+ * <li>
3629
+ * <p>Mail archived with Mail Manager: The IP address of the client that connects to
3630
+ * the ingress endpoint.</p>
3631
+ * </li>
3632
+ * <li>
3633
+ * <p>Mail sent through a configuration set with the
3634
+ * archiving option enabled: The IP address of the client that makes the SendEmail API call.</p>
3635
+ * </li>
3636
+ * </ul>
3599
3637
  * @public
3600
3638
  */
3601
3639
  SenderIpAddress?: string | undefined;
@@ -3604,6 +3642,12 @@ export interface Row {
3604
3642
  * @public
3605
3643
  */
3606
3644
  Envelope?: Envelope | undefined;
3645
+ /**
3646
+ * <p>Specifies the archived email source, identified by either a Rule Set's ARN with an Archive action, or a
3647
+ * Configuration Set's Archive ARN.</p>
3648
+ * @public
3649
+ */
3650
+ SourceArn?: string | undefined;
3607
3651
  }
3608
3652
  /**
3609
3653
  * <p>The response containing search results from a completed archive search.</p>
@@ -1358,6 +1358,11 @@ export interface Metadata {
1358
1358
  SenderIpAddress?: string | undefined;
1359
1359
  TlsCipherSuite?: string | undefined;
1360
1360
  TlsProtocol?: string | undefined;
1361
+ SendingMethod?: string | undefined;
1362
+ SourceIdentity?: string | undefined;
1363
+ SendingPool?: string | undefined;
1364
+ ConfigurationSet?: string | undefined;
1365
+ SourceArn?: string | undefined;
1361
1366
  }
1362
1367
  export interface GetArchiveMessageResponse {
1363
1368
  MessageDownloadLink?: string | undefined;
@@ -1422,6 +1427,7 @@ export interface Row {
1422
1427
  SenderHostname?: string | undefined;
1423
1428
  SenderIpAddress?: string | undefined;
1424
1429
  Envelope?: Envelope | undefined;
1430
+ SourceArn?: string | undefined;
1425
1431
  }
1426
1432
  export interface GetArchiveSearchResultsResponse {
1427
1433
  Rows?: Row[] | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mailmanager",
3
3
  "description": "AWS SDK for JavaScript Mailmanager Client for Node.js, Browser and React Native",
4
- "version": "3.751.0",
4
+ "version": "3.752.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",