Skip to content

Commit 6b013c1

Browse files
author
awstools
committed
feat(client-transfer): This release updates the max character limit of PreAuthenticationLoginBanner and PostAuthenticationLoginBanner to 4096 characters
1 parent d1c37c9 commit 6b013c1

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

clients/client-transfer/src/models/models_0.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -923,20 +923,21 @@ export interface SftpConnectorConfig {
923923

924924
/**
925925
* @public
926-
* <p>The public portion of the host key, or keys, that are used to authenticate the user to the external server to which you are connecting. You can use the <code>ssh-keyscan</code> command against the SFTP server to retrieve the necessary key.</p>
926+
* <p>The public portion of the host key, or keys, that are used to identify the external server to which you are connecting.
927+
* You can use the <code>ssh-keyscan</code> command against the SFTP server to retrieve the necessary key.</p>
927928
* <p>The three standard SSH public key format elements are <code><key type></code>,
928929
* <code><body base64></code>, and an optional <code><comment></code>, with spaces
929930
* between each element. Specify only the <code><key type></code> and <code><body
930931
* base64></code>: do not enter the <code><comment></code> portion of the key.</p>
931932
* <p>For the trusted host key, Transfer Family accepts RSA and ECDSA keys.</p>
932933
* <ul>
933934
* <li>
934-
* <p>For RSA keys, the key type is <code>ssh-rsa</code>.</p>
935+
* <p>For RSA keys, the <code><key type></code> string is <code>ssh-rsa</code>.</p>
935936
* </li>
936937
* <li>
937-
* <p>For ECDSA keys, the key type is either <code>ecdsa-sha2-nistp256</code>,
938-
* <code>ecdsa-sha2-nistp384</code>, or <code>ecdsa-sha2-nistp521</code>, depending on the
939-
* size of the key you generated.</p>
938+
* <p>For ECDSA keys, the <code><key type></code> string is either
939+
* <code>ecdsa-sha2-nistp256</code>, <code>ecdsa-sha2-nistp384</code>, or
940+
* <code>ecdsa-sha2-nistp521</code>, depending on the size of the key you generated.</p>
940941
* </li>
941942
* </ul>
942943
*/

codegen/sdk-codegen/aws-models/transfer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5779,7 +5779,7 @@
57795779
"traits": {
57805780
"smithy.api#length": {
57815781
"min": 0,
5782-
"max": 512
5782+
"max": 4096
57835783
},
57845784
"smithy.api#pattern": "^[\\x09-\\x0D\\x20-\\x7E]*$"
57855785
}
@@ -5789,7 +5789,7 @@
57895789
"traits": {
57905790
"smithy.api#length": {
57915791
"min": 0,
5792-
"max": 512
5792+
"max": 4096
57935793
},
57945794
"smithy.api#pattern": "^[\\x09-\\x0D\\x20-\\x7E]*$"
57955795
}
@@ -6385,7 +6385,7 @@
63856385
"TrustedHostKeys": {
63866386
"target": "com.amazonaws.transfer#SftpConnectorTrustedHostKeyList",
63876387
"traits": {
6388-
"smithy.api#documentation": "<p>The public portion of the host key, or keys, that are used to authenticate the user to the external server to which you are connecting. You can use the <code>ssh-keyscan</code> command against the SFTP server to retrieve the necessary key.</p>\n <p>The three standard SSH public key format elements are <code><key type></code>,\n <code><body base64></code>, and an optional <code><comment></code>, with spaces\n between each element. Specify only the <code><key type></code> and <code><body\n base64></code>: do not enter the <code><comment></code> portion of the key.</p>\n <p>For the trusted host key, Transfer Family accepts RSA and ECDSA keys.</p>\n <ul>\n <li>\n <p>For RSA keys, the key type is <code>ssh-rsa</code>.</p>\n </li>\n <li>\n <p>For ECDSA keys, the key type is either <code>ecdsa-sha2-nistp256</code>,\n <code>ecdsa-sha2-nistp384</code>, or <code>ecdsa-sha2-nistp521</code>, depending on the\n size of the key you generated.</p>\n </li>\n </ul>"
6388+
"smithy.api#documentation": "<p>The public portion of the host key, or keys, that are used to identify the external server to which you are connecting.\n You can use the <code>ssh-keyscan</code> command against the SFTP server to retrieve the necessary key.</p>\n <p>The three standard SSH public key format elements are <code><key type></code>,\n <code><body base64></code>, and an optional <code><comment></code>, with spaces\n between each element. Specify only the <code><key type></code> and <code><body\n base64></code>: do not enter the <code><comment></code> portion of the key.</p>\n <p>For the trusted host key, Transfer Family accepts RSA and ECDSA keys.</p>\n <ul>\n <li>\n <p>For RSA keys, the <code><key type></code> string is <code>ssh-rsa</code>.</p>\n </li>\n <li>\n <p>For ECDSA keys, the <code><key type></code> string is either\n <code>ecdsa-sha2-nistp256</code>, <code>ecdsa-sha2-nistp384</code>, or\n <code>ecdsa-sha2-nistp521</code>, depending on the size of the key you generated.</p>\n </li>\n </ul>"
63896389
}
63906390
}
63916391
},

0 commit comments

Comments
 (0)