@aws-sdk/client-transfer 3.490.0 → 3.491.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.
@@ -69,6 +69,9 @@ declare const DescribeConnectorCommand_base: {
69
69
  * // "STRING_VALUE",
70
70
  * // ],
71
71
  * // },
72
+ * // ServiceManagedEgressIpAddresses: [ // ServiceManagedEgressIpAddresses
73
+ * // "STRING_VALUE",
74
+ * // ],
72
75
  * // },
73
76
  * // };
74
77
  *
@@ -114,6 +114,9 @@ declare const DescribeServerCommand_base: {
114
114
  * // S3StorageOptions: { // S3StorageOptions
115
115
  * // DirectoryListingOptimization: "ENABLED" || "DISABLED",
116
116
  * // },
117
+ * // As2ServiceManagedEgressIpAddresses: [ // ServiceManagedEgressIpAddresses
118
+ * // "STRING_VALUE",
119
+ * // ],
117
120
  * // },
118
121
  * // };
119
122
  *
@@ -1079,7 +1079,7 @@ export interface IdentityProviderDetails {
1079
1079
  InvocationRole?: string;
1080
1080
  /**
1081
1081
  * @public
1082
- * <p>The identifier of the Directory Service directory that you want to stop sharing.</p>
1082
+ * <p>The identifier of the Directory Service directory that you want to use as your identity provider.</p>
1083
1083
  */
1084
1084
  DirectoryId?: string;
1085
1085
  /**
@@ -2729,6 +2729,11 @@ export interface DescribedConnector {
2729
2729
  * <p>A structure that contains the parameters for an SFTP connector object.</p>
2730
2730
  */
2731
2731
  SftpConfig?: SftpConnectorConfig;
2732
+ /**
2733
+ * @public
2734
+ * <p>The list of egress IP addresses of this connector. These IP addresses are assigned automatically when you create the connector.</p>
2735
+ */
2736
+ ServiceManagedEgressIpAddresses?: string[];
2732
2737
  }
2733
2738
  /**
2734
2739
  * @public
@@ -3456,6 +3461,14 @@ export interface DescribedServer {
3456
3461
  * <code>Type</code> to <code>FILE</code> if you want a mapping to have a file target.</p>
3457
3462
  */
3458
3463
  S3StorageOptions?: S3StorageOptions;
3464
+ /**
3465
+ * @public
3466
+ * <p>The list of egress IP addresses of this server. These IP addresses are only relevant
3467
+ * for servers that use the AS2 protocol. They are used for sending asynchronous MDNs.</p>
3468
+ * <p>These IP addresses are assigned automatically when you create an AS2 server. Additionally,
3469
+ * if you update an existing server and add the AS2 protocol, static IP addresses are assigned as well.</p>
3470
+ */
3471
+ As2ServiceManagedEgressIpAddresses?: string[];
3459
3472
  }
3460
3473
  /**
3461
3474
  * @public
@@ -536,6 +536,7 @@ export interface DescribedConnector {
536
536
  LoggingRole?: string;
537
537
  Tags?: Tag[];
538
538
  SftpConfig?: SftpConnectorConfig;
539
+ ServiceManagedEgressIpAddresses?: string[];
539
540
  }
540
541
  export interface DescribeConnectorResponse {
541
542
  Connector: DescribedConnector | undefined;
@@ -661,6 +662,7 @@ export interface DescribedServer {
661
662
  WorkflowDetails?: WorkflowDetails;
662
663
  StructuredLogDestinations?: string[];
663
664
  S3StorageOptions?: S3StorageOptions;
665
+ As2ServiceManagedEgressIpAddresses?: string[];
664
666
  }
665
667
  export interface SshPublicKey {
666
668
  DateImported: Date | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-transfer",
3
3
  "description": "AWS SDK for JavaScript Transfer Client for Node.js, Browser and React Native",
4
- "version": "3.490.0",
4
+ "version": "3.491.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",