cdk-lambda-subminute 2.0.255 → 2.0.257

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.
Files changed (39) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/CHANGELOG.md +17 -1
  4. package/node_modules/aws-sdk/README.md +1 -1
  5. package/node_modules/aws-sdk/apis/bedrock-2023-04-20.min.json +430 -184
  6. package/node_modules/aws-sdk/apis/bedrock-2023-04-20.paginators.json +6 -0
  7. package/node_modules/aws-sdk/apis/bedrock-2023-04-20.waiters2.json +5 -0
  8. package/node_modules/aws-sdk/apis/bedrock-runtime-2023-09-30.min.json +11 -0
  9. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +119 -97
  10. package/node_modules/aws-sdk/apis/location-2020-11-19.min.json +53 -30
  11. package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +219 -169
  12. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +1 -0
  13. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +0 -1
  14. package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.min.json +801 -151
  15. package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.paginators.json +15 -0
  16. package/node_modules/aws-sdk/clients/bedrock.d.ts +428 -166
  17. package/node_modules/aws-sdk/clients/bedrock.js +1 -0
  18. package/node_modules/aws-sdk/clients/bedrockruntime.d.ts +8 -5
  19. package/node_modules/aws-sdk/clients/connect.d.ts +58 -21
  20. package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
  21. package/node_modules/aws-sdk/clients/location.d.ts +29 -2
  22. package/node_modules/aws-sdk/clients/managedblockchain.d.ts +3 -3
  23. package/node_modules/aws-sdk/clients/mediaconvert.d.ts +62 -9
  24. package/node_modules/aws-sdk/clients/oam.d.ts +3 -3
  25. package/node_modules/aws-sdk/clients/rds.d.ts +35 -31
  26. package/node_modules/aws-sdk/clients/sagemaker.d.ts +3 -3
  27. package/node_modules/aws-sdk/clients/sts.d.ts +2 -1
  28. package/node_modules/aws-sdk/clients/transfer.d.ts +21 -21
  29. package/node_modules/aws-sdk/clients/wellarchitected.d.ts +586 -16
  30. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +7 -4
  31. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +35 -22
  32. package/node_modules/aws-sdk/dist/aws-sdk.js +176 -130
  33. package/node_modules/aws-sdk/dist/aws-sdk.min.js +71 -71
  34. package/node_modules/aws-sdk/lib/core.js +1 -1
  35. package/node_modules/aws-sdk/package.json +1 -1
  36. package/node_modules/has/package.json +1 -4
  37. package/node_modules/has/src/index.js +5 -2
  38. package/node_modules/has/test/index.js +6 -0
  39. package/package.json +3 -3
@@ -397,11 +397,11 @@ declare class Transfer extends Service {
397
397
  */
398
398
  tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
399
399
  /**
400
- * Tests whether your SFTP connector is set up successfully. We highly recommend that you call this operation to test your ability to transfer files between a Transfer Family server and a trading partner's SFTP server.
400
+ * Tests whether your SFTP connector is set up successfully. We highly recommend that you call this operation to test your ability to transfer files between local Amazon Web Services storage and a trading partner's SFTP server.
401
401
  */
402
402
  testConnection(params: Transfer.Types.TestConnectionRequest, callback?: (err: AWSError, data: Transfer.Types.TestConnectionResponse) => void): Request<Transfer.Types.TestConnectionResponse, AWSError>;
403
403
  /**
404
- * Tests whether your SFTP connector is set up successfully. We highly recommend that you call this operation to test your ability to transfer files between a Transfer Family server and a trading partner's SFTP server.
404
+ * Tests whether your SFTP connector is set up successfully. We highly recommend that you call this operation to test your ability to transfer files between local Amazon Web Services storage and a trading partner's SFTP server.
405
405
  */
406
406
  testConnection(callback?: (err: AWSError, data: Transfer.Types.TestConnectionResponse) => void): Request<Transfer.Types.TestConnectionResponse, AWSError>;
407
407
  /**
@@ -582,11 +582,11 @@ declare namespace Transfer {
582
582
  }
583
583
  export interface CreateAccessRequest {
584
584
  /**
585
- * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory.
585
+ * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
586
586
  */
587
587
  HomeDirectory?: HomeDirectory;
588
588
  /**
589
- * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer protocol clients. If you set it LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users.
589
+ * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer protocol clients. If you set it to LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users. If HomeDirectoryType is LOGICAL, you must provide mappings, using the HomeDirectoryMappings parameter. If, on the other hand, HomeDirectoryType is PATH, you provide an absolute path using the HomeDirectory parameter. You cannot have both HomeDirectory and HomeDirectoryMappings in your template.
590
590
  */
591
591
  HomeDirectoryType?: HomeDirectoryType;
592
592
  /**
@@ -791,11 +791,11 @@ declare namespace Transfer {
791
791
  }
792
792
  export interface CreateUserRequest {
793
793
  /**
794
- * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory.
794
+ * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
795
795
  */
796
796
  HomeDirectory?: HomeDirectory;
797
797
  /**
798
- * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer protocol clients. If you set it LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users.
798
+ * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer protocol clients. If you set it to LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users. If HomeDirectoryType is LOGICAL, you must provide mappings, using the HomeDirectoryMappings parameter. If, on the other hand, HomeDirectoryType is PATH, you provide an absolute path using the HomeDirectory parameter. You cannot have both HomeDirectory and HomeDirectoryMappings in your template.
799
799
  */
800
800
  HomeDirectoryType?: HomeDirectoryType;
801
801
  /**
@@ -1169,7 +1169,7 @@ declare namespace Transfer {
1169
1169
  }
1170
1170
  export interface DescribedAccess {
1171
1171
  /**
1172
- * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory.
1172
+ * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
1173
1173
  */
1174
1174
  HomeDirectory?: HomeDirectory;
1175
1175
  /**
@@ -1177,7 +1177,7 @@ declare namespace Transfer {
1177
1177
  */
1178
1178
  HomeDirectoryMappings?: HomeDirectoryMappings;
1179
1179
  /**
1180
- * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer protocol clients. If you set it LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users.
1180
+ * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer protocol clients. If you set it to LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users. If HomeDirectoryType is LOGICAL, you must provide mappings, using the HomeDirectoryMappings parameter. If, on the other hand, HomeDirectoryType is PATH, you provide an absolute path using the HomeDirectory parameter. You cannot have both HomeDirectory and HomeDirectoryMappings in your template.
1181
1181
  */
1182
1182
  HomeDirectoryType?: HomeDirectoryType;
1183
1183
  /**
@@ -1529,7 +1529,7 @@ declare namespace Transfer {
1529
1529
  */
1530
1530
  Arn: Arn;
1531
1531
  /**
1532
- * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory.
1532
+ * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
1533
1533
  */
1534
1534
  HomeDirectory?: HomeDirectory;
1535
1535
  /**
@@ -1537,7 +1537,7 @@ declare namespace Transfer {
1537
1537
  */
1538
1538
  HomeDirectoryMappings?: HomeDirectoryMappings;
1539
1539
  /**
1540
- * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer protocol clients. If you set it LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users.
1540
+ * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer protocol clients. If you set it to LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users. If HomeDirectoryType is LOGICAL, you must provide mappings, using the HomeDirectoryMappings parameter. If, on the other hand, HomeDirectoryType is PATH, you provide an absolute path using the HomeDirectory parameter. You cannot have both HomeDirectory and HomeDirectoryMappings in your template.
1541
1541
  */
1542
1542
  HomeDirectoryType?: HomeDirectoryType;
1543
1543
  /**
@@ -2078,7 +2078,7 @@ declare namespace Transfer {
2078
2078
  */
2079
2079
  MaxResults?: MaxResults;
2080
2080
  /**
2081
- * When you can get additional results from the ListUsers call, a NextToken parameter is returned in the output. You can then pass in a subsequent command to the NextToken parameter to continue listing additional users.
2081
+ * If there are additional results from the ListUsers call, a NextToken parameter is returned in the output. You can then pass the NextToken to a subsequent ListUsers command, to continue listing additional users.
2082
2082
  */
2083
2083
  NextToken?: NextToken;
2084
2084
  /**
@@ -2122,11 +2122,11 @@ declare namespace Transfer {
2122
2122
  }
2123
2123
  export interface ListedAccess {
2124
2124
  /**
2125
- * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory.
2125
+ * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
2126
2126
  */
2127
2127
  HomeDirectory?: HomeDirectory;
2128
2128
  /**
2129
- * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer protocol clients. If you set it LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users.
2129
+ * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer protocol clients. If you set it to LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users. If HomeDirectoryType is LOGICAL, you must provide mappings, using the HomeDirectoryMappings parameter. If, on the other hand, HomeDirectoryType is PATH, you provide an absolute path using the HomeDirectory parameter. You cannot have both HomeDirectory and HomeDirectoryMappings in your template.
2130
2130
  */
2131
2131
  HomeDirectoryType?: HomeDirectoryType;
2132
2132
  /**
@@ -2326,11 +2326,11 @@ declare namespace Transfer {
2326
2326
  */
2327
2327
  Arn: Arn;
2328
2328
  /**
2329
- * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory.
2329
+ * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
2330
2330
  */
2331
2331
  HomeDirectory?: HomeDirectory;
2332
2332
  /**
2333
- * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer protocol clients. If you set it LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users.
2333
+ * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer protocol clients. If you set it to LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users. If HomeDirectoryType is LOGICAL, you must provide mappings, using the HomeDirectoryMappings parameter. If, on the other hand, HomeDirectoryType is PATH, you provide an absolute path using the HomeDirectory parameter. You cannot have both HomeDirectory and HomeDirectoryMappings in your template.
2334
2334
  */
2335
2335
  HomeDirectoryType?: HomeDirectoryType;
2336
2336
  /**
@@ -2518,7 +2518,7 @@ declare namespace Transfer {
2518
2518
  */
2519
2519
  UserSecretId?: SecretId;
2520
2520
  /**
2521
- * 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 ssh-keyscan command against the SFTP server to retrieve the necessary key. The three standard SSH public key format elements are &lt;key type&gt;, &lt;body base64&gt;, and an optional &lt;comment&gt;, with spaces between each element. For the trusted host key, Transfer Family accepts RSA and ECDSA keys. For RSA keys, the key type is ssh-rsa. For ECDSA keys, the key type is either ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521, depending on the size of the key you generated.
2521
+ * 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 ssh-keyscan command against the SFTP server to retrieve the necessary key. The three standard SSH public key format elements are &lt;key type&gt;, &lt;body base64&gt;, and an optional &lt;comment&gt;, with spaces between each element. Specify only the &lt;key type&gt; and &lt;body base64&gt;: do not enter the &lt;comment&gt; portion of the key. For the trusted host key, Transfer Family accepts RSA and ECDSA keys. For RSA keys, the key type is ssh-rsa. For ECDSA keys, the key type is either ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521, depending on the size of the key you generated.
2522
2522
  */
2523
2523
  TrustedHostKeys?: SftpConnectorTrustedHostKeyList;
2524
2524
  }
@@ -2646,7 +2646,7 @@ declare namespace Transfer {
2646
2646
  */
2647
2647
  Status?: Status;
2648
2648
  /**
2649
- * Returns Connection succeeded if the test is successful. Or, returns a descriptive error message if the test fails. The following list provides the details for some error messages and troubleshooting steps for each. Unable to access secrets manager: Verify that your secret name aligns with the one in Transfer Role permissions. Unknown Host/Connection failed: Verify the server URL in the connector configuration , and verify that the login credentials work successfully outside of the connector. Private key not found: Verify that the secret exists and is formatted correctly. Invalid trusted host keys: Verify that the trusted host key in the connector configuration matches the ssh-keyscan output.
2649
+ * Returns Connection succeeded if the test is successful. Or, returns a descriptive error message if the test fails. The following list provides troubleshooting details, depending on the error message that you receive. Verify that your secret name aligns with the one in Transfer Role permissions. Verify the server URL in the connector configuration , and verify that the login credentials work successfully outside of the connector. Verify that the secret exists and is formatted correctly. Verify that the trusted host key in the connector configuration matches the ssh-keyscan output.
2650
2650
  */
2651
2651
  StatusMessage?: Message;
2652
2652
  }
@@ -2704,11 +2704,11 @@ declare namespace Transfer {
2704
2704
  }
2705
2705
  export interface UpdateAccessRequest {
2706
2706
  /**
2707
- * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory.
2707
+ * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
2708
2708
  */
2709
2709
  HomeDirectory?: HomeDirectory;
2710
2710
  /**
2711
- * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer protocol clients. If you set it LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users.
2711
+ * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer protocol clients. If you set it to LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users. If HomeDirectoryType is LOGICAL, you must provide mappings, using the HomeDirectoryMappings parameter. If, on the other hand, HomeDirectoryType is PATH, you provide an absolute path using the HomeDirectory parameter. You cannot have both HomeDirectory and HomeDirectoryMappings in your template.
2712
2712
  */
2713
2713
  HomeDirectoryType?: HomeDirectoryType;
2714
2714
  /**
@@ -2945,11 +2945,11 @@ declare namespace Transfer {
2945
2945
  }
2946
2946
  export interface UpdateUserRequest {
2947
2947
  /**
2948
- * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory.
2948
+ * The landing directory (folder) for a user when they log in to the server using the client. A HomeDirectory example is /bucket_name/home/mydirectory. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
2949
2949
  */
2950
2950
  HomeDirectory?: HomeDirectory;
2951
2951
  /**
2952
- * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer protocol clients. If you set it LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users.
2952
+ * The type of landing directory (folder) that you want your users' home directory to be when they log in to the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer protocol clients. If you set it to LOGICAL, you need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 or Amazon EFS paths visible to your users. If HomeDirectoryType is LOGICAL, you must provide mappings, using the HomeDirectoryMappings parameter. If, on the other hand, HomeDirectoryType is PATH, you provide an absolute path using the HomeDirectory parameter. You cannot have both HomeDirectory and HomeDirectoryMappings in your template.
2953
2953
  */
2954
2954
  HomeDirectoryType?: HomeDirectoryType;
2955
2955
  /**