cdk-lambda-subminute 2.0.420 → 2.0.422

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 (34) hide show
  1. package/.jsii +16 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/README.md +1 -1
  4. package/node_modules/aws-sdk/apis/cleanroomsml-2023-09-06.min.json +7 -24
  5. package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +43 -42
  6. package/node_modules/aws-sdk/apis/datazone-2018-05-10.min.json +611 -324
  7. package/node_modules/aws-sdk/apis/datazone-2018-05-10.paginators.json +6 -0
  8. package/node_modules/aws-sdk/apis/docdb-2014-10-31.min.json +22 -0
  9. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +71 -34
  10. package/node_modules/aws-sdk/apis/groundstation-2019-05-23.min.json +12 -0
  11. package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +287 -232
  12. package/node_modules/aws-sdk/apis/medical-imaging-2023-07-19.min.json +50 -8
  13. package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +90 -79
  14. package/node_modules/aws-sdk/clients/cleanroomsml.d.ts +13 -30
  15. package/node_modules/aws-sdk/clients/cloudformation.d.ts +5 -0
  16. package/node_modules/aws-sdk/clients/datazone.d.ts +303 -2
  17. package/node_modules/aws-sdk/clients/docdb.d.ts +21 -0
  18. package/node_modules/aws-sdk/clients/ecs.d.ts +2 -2
  19. package/node_modules/aws-sdk/clients/glue.d.ts +58 -0
  20. package/node_modules/aws-sdk/clients/groundstation.d.ts +20 -4
  21. package/node_modules/aws-sdk/clients/lambda.d.ts +1 -1
  22. package/node_modules/aws-sdk/clients/medialive.d.ts +59 -0
  23. package/node_modules/aws-sdk/clients/medicalimaging.d.ts +53 -5
  24. package/node_modules/aws-sdk/clients/rolesanywhere.d.ts +3 -3
  25. package/node_modules/aws-sdk/clients/securityhub.d.ts +97 -97
  26. package/node_modules/aws-sdk/clients/transfer.d.ts +42 -14
  27. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  28. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +14 -11
  29. package/node_modules/aws-sdk/dist/aws-sdk.js +46 -45
  30. package/node_modules/aws-sdk/dist/aws-sdk.min.js +54 -54
  31. package/node_modules/aws-sdk/lib/core.js +1 -1
  32. package/node_modules/aws-sdk/lib/services/cloudsearchdomain.js +3 -0
  33. package/node_modules/aws-sdk/package.json +1 -1
  34. package/package.json +3 -3
@@ -205,11 +205,11 @@ declare class Transfer extends Service {
205
205
  */
206
206
  describeProfile(callback?: (err: AWSError, data: Transfer.Types.DescribeProfileResponse) => void): Request<Transfer.Types.DescribeProfileResponse, AWSError>;
207
207
  /**
208
- * Describes the security policy that is attached to your file transfer protocol-enabled server. The response contains a description of the security policy's properties. For more information about security policies, see Working with security policies.
208
+ * Describes the security policy that is attached to your server or SFTP connector. The response contains a description of the security policy's properties. For more information about security policies, see Working with security policies for servers or Working with security policies for SFTP connectors.
209
209
  */
210
210
  describeSecurityPolicy(params: Transfer.Types.DescribeSecurityPolicyRequest, callback?: (err: AWSError, data: Transfer.Types.DescribeSecurityPolicyResponse) => void): Request<Transfer.Types.DescribeSecurityPolicyResponse, AWSError>;
211
211
  /**
212
- * Describes the security policy that is attached to your file transfer protocol-enabled server. The response contains a description of the security policy's properties. For more information about security policies, see Working with security policies.
212
+ * Describes the security policy that is attached to your server or SFTP connector. The response contains a description of the security policy's properties. For more information about security policies, see Working with security policies for servers or Working with security policies for SFTP connectors.
213
213
  */
214
214
  describeSecurityPolicy(callback?: (err: AWSError, data: Transfer.Types.DescribeSecurityPolicyResponse) => void): Request<Transfer.Types.DescribeSecurityPolicyResponse, AWSError>;
215
215
  /**
@@ -317,11 +317,11 @@ declare class Transfer extends Service {
317
317
  */
318
318
  listProfiles(callback?: (err: AWSError, data: Transfer.Types.ListProfilesResponse) => void): Request<Transfer.Types.ListProfilesResponse, AWSError>;
319
319
  /**
320
- * Lists the security policies that are attached to your file transfer protocol-enabled servers.
320
+ * Lists the security policies that are attached to your servers and SFTP connectors. For more information about security policies, see Working with security policies for servers or Working with security policies for SFTP connectors.
321
321
  */
322
322
  listSecurityPolicies(params: Transfer.Types.ListSecurityPoliciesRequest, callback?: (err: AWSError, data: Transfer.Types.ListSecurityPoliciesResponse) => void): Request<Transfer.Types.ListSecurityPoliciesResponse, AWSError>;
323
323
  /**
324
- * Lists the security policies that are attached to your file transfer protocol-enabled servers.
324
+ * Lists the security policies that are attached to your servers and SFTP connectors. For more information about security policies, see Working with security policies for servers or Working with security policies for SFTP connectors.
325
325
  */
326
326
  listSecurityPolicies(callback?: (err: AWSError, data: Transfer.Types.ListSecurityPoliciesResponse) => void): Request<Transfer.Types.ListSecurityPoliciesResponse, AWSError>;
327
327
  /**
@@ -562,6 +562,7 @@ declare namespace Transfer {
562
562
  export type CertificateUsageType = "SIGNING"|"ENCRYPTION"|string;
563
563
  export type CompressionEnum = "ZLIB"|"DISABLED"|string;
564
564
  export type ConnectorId = string;
565
+ export type ConnectorSecurityPolicyName = string;
565
566
  export interface CopyStepDetails {
566
567
  /**
567
568
  * The name of the step, used as an identifier.
@@ -686,6 +687,10 @@ declare namespace Transfer {
686
687
  * A structure that contains the parameters for an SFTP connector object.
687
688
  */
688
689
  SftpConfig?: SftpConnectorConfig;
690
+ /**
691
+ * Specifies the name of the security policy for the connector.
692
+ */
693
+ SecurityPolicyName?: ConnectorSecurityPolicyName;
689
694
  }
690
695
  export interface CreateConnectorResponse {
691
696
  /**
@@ -767,7 +772,7 @@ declare namespace Transfer {
767
772
  */
768
773
  ProtocolDetails?: ProtocolDetails;
769
774
  /**
770
- * Specifies the name of the security policy that is attached to the server.
775
+ * Specifies the name of the security policy for the server.
771
776
  */
772
777
  SecurityPolicyName?: SecurityPolicyName;
773
778
  /**
@@ -1117,7 +1122,7 @@ declare namespace Transfer {
1117
1122
  }
1118
1123
  export interface DescribeSecurityPolicyRequest {
1119
1124
  /**
1120
- * Specifies the name of the security policy that is attached to the server.
1125
+ * Specify the text name of the security policy for which you want the details.
1121
1126
  */
1122
1127
  SecurityPolicyName: SecurityPolicyName;
1123
1128
  }
@@ -1335,6 +1340,10 @@ declare namespace Transfer {
1335
1340
  * The list of egress IP addresses of this connector. These IP addresses are assigned automatically when you create the connector.
1336
1341
  */
1337
1342
  ServiceManagedEgressIpAddresses?: ServiceManagedEgressIpAddresses;
1343
+ /**
1344
+ * The text name of the security policy for the specified connector.
1345
+ */
1346
+ SecurityPolicyName?: ConnectorSecurityPolicyName;
1338
1347
  }
1339
1348
  export interface DescribedExecution {
1340
1349
  /**
@@ -1425,29 +1434,41 @@ declare namespace Transfer {
1425
1434
  }
1426
1435
  export interface DescribedSecurityPolicy {
1427
1436
  /**
1428
- * Specifies whether this policy enables Federal Information Processing Standards (FIPS).
1437
+ * Specifies whether this policy enables Federal Information Processing Standards (FIPS). This parameter applies to both server and connector security policies.
1429
1438
  */
1430
1439
  Fips?: Fips;
1431
1440
  /**
1432
- * Specifies the name of the security policy that is attached to the server.
1441
+ * The text name of the specified security policy.
1433
1442
  */
1434
1443
  SecurityPolicyName: SecurityPolicyName;
1435
1444
  /**
1436
- * Specifies the enabled Secure Shell (SSH) cipher encryption algorithms in the security policy that is attached to the server.
1445
+ * Lists the enabled Secure Shell (SSH) cipher encryption algorithms in the security policy that is attached to the server or connector. This parameter applies to both server and connector security policies.
1437
1446
  */
1438
1447
  SshCiphers?: SecurityPolicyOptions;
1439
1448
  /**
1440
- * Specifies the enabled SSH key exchange (KEX) encryption algorithms in the security policy that is attached to the server.
1449
+ * Lists the enabled SSH key exchange (KEX) encryption algorithms in the security policy that is attached to the server or connector. This parameter applies to both server and connector security policies.
1441
1450
  */
1442
1451
  SshKexs?: SecurityPolicyOptions;
1443
1452
  /**
1444
- * Specifies the enabled SSH message authentication code (MAC) encryption algorithms in the security policy that is attached to the server.
1453
+ * Lists the enabled SSH message authentication code (MAC) encryption algorithms in the security policy that is attached to the server or connector. This parameter applies to both server and connector security policies.
1445
1454
  */
1446
1455
  SshMacs?: SecurityPolicyOptions;
1447
1456
  /**
1448
- * Specifies the enabled Transport Layer Security (TLS) cipher encryption algorithms in the security policy that is attached to the server.
1457
+ * Lists the enabled Transport Layer Security (TLS) cipher encryption algorithms in the security policy that is attached to the server. This parameter only applies to security policies for servers.
1449
1458
  */
1450
1459
  TlsCiphers?: SecurityPolicyOptions;
1460
+ /**
1461
+ * Lists the host key algorithms for the security policy. This parameter only applies to security policies for connectors.
1462
+ */
1463
+ SshHostKeyAlgorithms?: SecurityPolicyOptions;
1464
+ /**
1465
+ * The resource type to which the security policy applies, either server or connector.
1466
+ */
1467
+ Type?: SecurityPolicyResourceType;
1468
+ /**
1469
+ * Lists the file transfer protocols that the security policy applies to.
1470
+ */
1471
+ Protocols?: SecurityPolicyProtocols;
1451
1472
  }
1452
1473
  export interface DescribedServer {
1453
1474
  /**
@@ -1503,7 +1524,7 @@ declare namespace Transfer {
1503
1524
  */
1504
1525
  Protocols?: Protocols;
1505
1526
  /**
1506
- * Specifies the name of the security policy that is attached to the server.
1527
+ * Specifies the name of the security policy for the server.
1507
1528
  */
1508
1529
  SecurityPolicyName?: SecurityPolicyName;
1509
1530
  /**
@@ -2510,6 +2531,9 @@ declare namespace Transfer {
2510
2531
  export type SecurityPolicyNames = SecurityPolicyName[];
2511
2532
  export type SecurityPolicyOption = string;
2512
2533
  export type SecurityPolicyOptions = SecurityPolicyOption[];
2534
+ export type SecurityPolicyProtocol = "SFTP"|"FTPS"|string;
2535
+ export type SecurityPolicyProtocols = SecurityPolicyProtocol[];
2536
+ export type SecurityPolicyResourceType = "SERVER"|"CONNECTOR"|string;
2513
2537
  export interface SendWorkflowStepStateRequest {
2514
2538
  /**
2515
2539
  * A unique identifier for the workflow.
@@ -2862,6 +2886,10 @@ declare namespace Transfer {
2862
2886
  * A structure that contains the parameters for an SFTP connector object.
2863
2887
  */
2864
2888
  SftpConfig?: SftpConnectorConfig;
2889
+ /**
2890
+ * Specifies the name of the security policy for the connector.
2891
+ */
2892
+ SecurityPolicyName?: ConnectorSecurityPolicyName;
2865
2893
  }
2866
2894
  export interface UpdateConnectorResponse {
2867
2895
  /**
@@ -2951,7 +2979,7 @@ declare namespace Transfer {
2951
2979
  */
2952
2980
  Protocols?: Protocols;
2953
2981
  /**
2954
- * Specifies the name of the security policy that is attached to the server.
2982
+ * Specifies the name of the security policy for the server.
2955
2983
  */
2956
2984
  SecurityPolicyName?: SecurityPolicyName;
2957
2985
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1590.0',
86
+ VERSION: '2.1592.0',
87
87
 
88
88
  /**
89
89
  * @api private