Skip to content

Commit

Permalink
feat(client-transfer): This release updates the max character limit o…
Browse files Browse the repository at this point in the history
…f PreAuthenticationLoginBanner and PostAuthenticationLoginBanner to 4096 characters
  • Loading branch information
awstools committed Oct 6, 2023
1 parent d1c37c9 commit 6b013c1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions clients/client-transfer/src/models/models_0.ts
Expand Up @@ -923,20 +923,21 @@ export interface SftpConnectorConfig {

/**
* @public
* <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>
* <p>The public portion of the host key, or keys, that are used to identify 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>
* <p>The three standard SSH public key format elements are <code><key type></code>,
* <code><body base64></code>, and an optional <code><comment></code>, with spaces
* between each element. Specify only the <code><key type></code> and <code><body
* base64></code>: do not enter the <code><comment></code> portion of the key.</p>
* <p>For the trusted host key, Transfer Family accepts RSA and ECDSA keys.</p>
* <ul>
* <li>
* <p>For RSA keys, the key type is <code>ssh-rsa</code>.</p>
* <p>For RSA keys, the <code><key type></code> string is <code>ssh-rsa</code>.</p>
* </li>
* <li>
* <p>For ECDSA keys, the key type is either <code>ecdsa-sha2-nistp256</code>,
* <code>ecdsa-sha2-nistp384</code>, or <code>ecdsa-sha2-nistp521</code>, depending on the
* size of the key you generated.</p>
* <p>For ECDSA keys, the <code><key type></code> string is either
* <code>ecdsa-sha2-nistp256</code>, <code>ecdsa-sha2-nistp384</code>, or
* <code>ecdsa-sha2-nistp521</code>, depending on the size of the key you generated.</p>
* </li>
* </ul>
*/
Expand Down
6 changes: 3 additions & 3 deletions codegen/sdk-codegen/aws-models/transfer.json
Expand Up @@ -5779,7 +5779,7 @@
"traits": {
"smithy.api#length": {
"min": 0,
"max": 512
"max": 4096
},
"smithy.api#pattern": "^[\\x09-\\x0D\\x20-\\x7E]*$"
}
Expand All @@ -5789,7 +5789,7 @@
"traits": {
"smithy.api#length": {
"min": 0,
"max": 512
"max": 4096
},
"smithy.api#pattern": "^[\\x09-\\x0D\\x20-\\x7E]*$"
}
Expand Down Expand Up @@ -6385,7 +6385,7 @@
"TrustedHostKeys": {
"target": "com.amazonaws.transfer#SftpConnectorTrustedHostKeyList",
"traits": {
"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>"
"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>"
}
}
},
Expand Down

0 comments on commit 6b013c1

Please sign in to comment.