cdk-lambda-subminute 2.0.419 → 2.0.421

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/datazone-2018-05-10.min.json +706 -496
  5. package/node_modules/aws-sdk/apis/datazone-2018-05-10.paginators.json +6 -0
  6. package/node_modules/aws-sdk/apis/deadline-2023-10-12.examples.json +5 -0
  7. package/node_modules/aws-sdk/apis/deadline-2023-10-12.min.json +6906 -0
  8. package/node_modules/aws-sdk/apis/deadline-2023-10-12.paginators.json +160 -0
  9. package/node_modules/aws-sdk/apis/deadline-2023-10-12.waiters2.json +131 -0
  10. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +71 -34
  11. package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +113 -99
  12. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  13. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +13 -12
  14. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  15. package/node_modules/aws-sdk/clients/all.js +2 -1
  16. package/node_modules/aws-sdk/clients/cloudwatch.d.ts +19 -15
  17. package/node_modules/aws-sdk/clients/datazone.d.ts +305 -75
  18. package/node_modules/aws-sdk/clients/deadline.d.ts +6639 -0
  19. package/node_modules/aws-sdk/clients/deadline.js +19 -0
  20. package/node_modules/aws-sdk/clients/ecs.d.ts +2 -2
  21. package/node_modules/aws-sdk/clients/emr.d.ts +2 -2
  22. package/node_modules/aws-sdk/clients/glue.d.ts +58 -0
  23. package/node_modules/aws-sdk/clients/lightsail.d.ts +33 -0
  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/dist/aws-sdk-core-react-native.js +3 -2
  27. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +54 -9
  28. package/node_modules/aws-sdk/dist/aws-sdk.js +20 -15
  29. package/node_modules/aws-sdk/dist/aws-sdk.min.js +19 -19
  30. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  31. package/node_modules/aws-sdk/lib/core.js +1 -1
  32. package/node_modules/aws-sdk/lib/event_listeners.js +1 -0
  33. package/node_modules/aws-sdk/package.json +1 -1
  34. package/package.json +3 -3
@@ -0,0 +1,19 @@
1
+ require('../lib/node_loader');
2
+ var AWS = require('../lib/core');
3
+ var Service = AWS.Service;
4
+ var apiLoader = AWS.apiLoader;
5
+
6
+ apiLoader.services['deadline'] = {};
7
+ AWS.Deadline = Service.defineService('deadline', ['2023-10-12']);
8
+ Object.defineProperty(apiLoader.services['deadline'], '2023-10-12', {
9
+ get: function get() {
10
+ var model = require('../apis/deadline-2023-10-12.min.json');
11
+ model.paginators = require('../apis/deadline-2023-10-12.paginators.json').pagination;
12
+ model.waiters = require('../apis/deadline-2023-10-12.waiters2.json').waiters;
13
+ return model;
14
+ },
15
+ enumerable: true,
16
+ configurable: true
17
+ });
18
+
19
+ module.exports = AWS.Deadline;
@@ -1599,7 +1599,7 @@ declare namespace ECS {
1599
1599
  */
1600
1600
  maximumPercent?: BoxedInteger;
1601
1601
  /**
1602
- * If a service is using the rolling update (ECS) deployment type, the minimumHealthyPercent represents a lower limit on the number of your service's tasks that must remain in the RUNNING state during a deployment, as a percentage of the desiredCount (rounded up to the nearest integer). This parameter enables you to deploy without using additional cluster capacity. For example, if your service has a desiredCount of four tasks and a minimumHealthyPercent of 50%, the service scheduler may stop two existing tasks to free up cluster capacity before starting two new tasks. For services that do not use a load balancer, the following should be noted: A service is considered healthy if all essential containers within the tasks in the service pass their health checks. If a task has no essential containers with a health check defined, the service scheduler will wait for 40 seconds after a task reaches a RUNNING state before the task is counted towards the minimum healthy percent total. If a task has one or more essential containers with a health check defined, the service scheduler will wait for the task to reach a healthy status before counting it towards the minimum healthy percent total. A task is considered healthy when all essential containers within the task have passed their health checks. The amount of time the service scheduler can wait for is determined by the container health check settings. For services that do use a load balancer, the following should be noted: If a task has no essential containers with a health check defined, the service scheduler will wait for the load balancer target group health check to return a healthy status before counting the task towards the minimum healthy percent total. If a task has an essential container with a health check defined, the service scheduler will wait for both the task to reach a healthy status and the load balancer target group health check to return a healthy status before counting the task towards the minimum healthy percent total. If a service is using either the blue/green (CODE_DEPLOY) or EXTERNAL deployment types and is running tasks that use the EC2 launch type, the minimum healthy percent value is set to the default value and is used to define the lower limit on the number of the tasks in the service that remain in the RUNNING state while the container instances are in the DRAINING state. If a service is using either the blue/green (CODE_DEPLOY) or EXTERNAL deployment types and is running tasks that use the Fargate launch type, the minimum healthy percent value is not used, although it is returned when describing your service.
1602
+ * If a service is using the rolling update (ECS) deployment type, the minimumHealthyPercent represents a lower limit on the number of your service's tasks that must remain in the RUNNING state during a deployment, as a percentage of the desiredCount (rounded up to the nearest integer). This parameter enables you to deploy without using additional cluster capacity. For example, if your service has a desiredCount of four tasks and a minimumHealthyPercent of 50%, the service scheduler may stop two existing tasks to free up cluster capacity before starting two new tasks. For services that do not use a load balancer, the following should be noted: A service is considered healthy if all essential containers within the tasks in the service pass their health checks. If a task has no essential containers with a health check defined, the service scheduler will wait for 40 seconds after a task reaches a RUNNING state before the task is counted towards the minimum healthy percent total. If a task has one or more essential containers with a health check defined, the service scheduler will wait for the task to reach a healthy status before counting it towards the minimum healthy percent total. A task is considered healthy when all essential containers within the task have passed their health checks. The amount of time the service scheduler can wait for is determined by the container health check settings. For services that do use a load balancer, the following should be noted: If a task has no essential containers with a health check defined, the service scheduler will wait for the load balancer target group health check to return a healthy status before counting the task towards the minimum healthy percent total. If a task has an essential container with a health check defined, the service scheduler will wait for both the task to reach a healthy status and the load balancer target group health check to return a healthy status before counting the task towards the minimum healthy percent total. The default value for a replica service for minimumHealthyPercent is 100%. The default minimumHealthyPercent value for a service using the DAEMON service schedule is 0% for the CLI, the Amazon Web Services SDKs, and the APIs and 50% for the Amazon Web Services Management Console. The minimum number of healthy tasks during a deployment is the desiredCount multiplied by the minimumHealthyPercent/100, rounded up to the nearest integer value. If a service is using either the blue/green (CODE_DEPLOY) or EXTERNAL deployment types and is running tasks that use the EC2 launch type, the minimum healthy percent value is set to the default value and is used to define the lower limit on the number of the tasks in the service that remain in the RUNNING state while the container instances are in the DRAINING state. If a service is using either the blue/green (CODE_DEPLOY) or EXTERNAL deployment types and is running tasks that use the Fargate launch type, the minimum healthy percent value is not used, although it is returned when describing your service.
1603
1603
  */
1604
1604
  minimumHealthyPercent?: BoxedInteger;
1605
1605
  /**
@@ -3127,7 +3127,7 @@ declare namespace ECS {
3127
3127
  */
3128
3128
  tags?: Tags;
3129
3129
  /**
3130
- * The family and revision (family:revision) or full ARN of the task definition to run. If a revision isn't specified, the latest ACTIVE revision is used. When you create a policy for run-task, you can set the resource to be the latest task definition revision, or a specific revision. The full ARN value must match the value that you specified as the Resource of the principal's permissions policy. When you specify the policy resource as the latest task definition version (by setting the Resource in the policy to arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName), then set this value to arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName. When you specify the policy resource as a specific task definition version (by setting the Resource in the policy to arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:1 or arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*), then set this value to arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:1. For more information, see Policy Resources for Amazon ECS in the Amazon Elastic Container Service developer Guide.
3130
+ * The family and revision (family:revision) or full ARN of the task definition to run. If a revision isn't specified, the latest ACTIVE revision is used. The full ARN value must match the value that you specified as the Resource of the principal's permissions policy. When you specify a task definition, you must either specify a specific revision, or all revisions in the ARN. To specify a specific revision, include the revision number in the ARN. For example, to specify revision 2, use arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:2. To specify all revisions, use the wildcard (*) in the ARN. For example, to specify all revisions, use arn:aws:ecs:us-east-1:111122223333:task-definition/TaskFamilyName:*. For more information, see Policy Resources for Amazon ECS in the Amazon Elastic Container Service Developer Guide.
3131
3131
  */
3132
3132
  taskDefinition: String;
3133
3133
  /**
@@ -761,7 +761,7 @@ declare namespace EMR {
761
761
  */
762
762
  Id?: ClusterId;
763
763
  /**
764
- * The name of the cluster.
764
+ * The name of the cluster. This parameter can't contain the characters <, >, $, |, or ` (backtick).
765
765
  */
766
766
  Name?: String;
767
767
  /**
@@ -2278,7 +2278,7 @@ declare namespace EMR {
2278
2278
  */
2279
2279
  Placement?: PlacementType;
2280
2280
  /**
2281
- * Specifies whether the cluster should remain available after completing all steps. Defaults to true. For more information about configuring cluster termination, see Control Cluster Termination in the EMR Management Guide.
2281
+ * Specifies whether the cluster should remain available after completing all steps. Defaults to false. For more information about configuring cluster termination, see Control Cluster Termination in the EMR Management Guide.
2282
2282
  */
2283
2283
  KeepJobFlowAliveWhenNoSteps?: Boolean;
2284
2284
  /**
@@ -8329,10 +8329,18 @@ declare namespace Glue {
8329
8329
  * A cryptographically generated query identifier generated by Glue or Lake Formation.
8330
8330
  */
8331
8331
  QueryAuthorizationId?: HashString;
8332
+ /**
8333
+ * Specifies whether the view supports the SQL dialects of one or more different query engines and can therefore be read by those engines.
8334
+ */
8335
+ IsMultiDialectView?: Boolean;
8332
8336
  /**
8333
8337
  * The resource ARN of the parent resource extracted from the request.
8334
8338
  */
8335
8339
  ResourceArn?: ArnString;
8340
+ /**
8341
+ * A flag that instructs the engine not to push user-provided operations into the logical plan of the view during query planning. However, if set this flag does not guarantee that the engine will comply. Refer to the engine's documentation to understand the guarantees provided, if any.
8342
+ */
8343
+ IsProtected?: Boolean;
8336
8344
  /**
8337
8345
  * The Lake Formation data permissions of the caller on the table. Used to authorize the call when no view context is found.
8338
8346
  */
@@ -13075,6 +13083,14 @@ declare namespace Glue {
13075
13083
  * A FederatedTable structure that references an entity outside the Glue Data Catalog.
13076
13084
  */
13077
13085
  FederatedTable?: FederatedTable;
13086
+ /**
13087
+ * A structure that contains all the information that defines the view, including the dialect or dialects for the view, and the query.
13088
+ */
13089
+ ViewDefinition?: ViewDefinition;
13090
+ /**
13091
+ * Specifies whether the view supports the SQL dialects of one or more different query engines and can therefore be read by those engines.
13092
+ */
13093
+ IsMultiDialectView?: NullableBoolean;
13078
13094
  }
13079
13095
  export interface TableError {
13080
13096
  /**
@@ -14356,8 +14372,50 @@ declare namespace Glue {
14356
14372
  export type VersionLongNumber = number;
14357
14373
  export type VersionString = string;
14358
14374
  export type VersionsString = string;
14375
+ export interface ViewDefinition {
14376
+ /**
14377
+ * You can set this flag as true to instruct the engine not to push user-provided operations into the logical plan of the view during query planning. However, setting this flag does not guarantee that the engine will comply. Refer to the engine's documentation to understand the guarantees provided, if any.
14378
+ */
14379
+ IsProtected?: NullableBoolean;
14380
+ /**
14381
+ * The definer of a view in SQL.
14382
+ */
14383
+ Definer?: ArnString;
14384
+ /**
14385
+ * A list of table Amazon Resource Names (ARNs).
14386
+ */
14387
+ SubObjects?: ViewSubObjectsList;
14388
+ /**
14389
+ * A list of representations.
14390
+ */
14391
+ Representations?: ViewRepresentationList;
14392
+ }
14359
14393
  export type ViewDialect = "REDSHIFT"|"ATHENA"|"SPARK"|string;
14360
14394
  export type ViewDialectVersionString = string;
14395
+ export interface ViewRepresentation {
14396
+ /**
14397
+ * The dialect of the query engine.
14398
+ */
14399
+ Dialect?: ViewDialect;
14400
+ /**
14401
+ * The version of the dialect of the query engine. For example, 3.0.0.
14402
+ */
14403
+ DialectVersion?: ViewDialectVersionString;
14404
+ /**
14405
+ * The SELECT query provided by the customer during CREATE VIEW DDL. This SQL is not used during a query on a view (ViewExpandedText is used instead). ViewOriginalText is used for cases like SHOW CREATE VIEW where users want to see the original DDL command that created the view.
14406
+ */
14407
+ ViewOriginalText?: ViewTextString;
14408
+ /**
14409
+ * The expanded SQL for the view. This SQL is used by engines while processing a query on a view. Engines may perform operations during view creation to transform ViewOriginalText to ViewExpandedText. For example: Fully qualify identifiers: SELECT * from table1 → SELECT * from db1.table1
14410
+ */
14411
+ ViewExpandedText?: ViewTextString;
14412
+ /**
14413
+ * Dialects marked as stale are no longer valid and must be updated before they can be queried in their respective query engines.
14414
+ */
14415
+ IsStale?: NullableBoolean;
14416
+ }
14417
+ export type ViewRepresentationList = ViewRepresentation[];
14418
+ export type ViewSubObjectsList = ArnString[];
14361
14419
  export type ViewTextString = string;
14362
14420
  export type WorkerType = "Standard"|"G.1X"|"G.2X"|"G.025X"|"G.4X"|"G.8X"|"Z.2X"|string;
14363
14421
  export interface Workflow {
@@ -2795,6 +2795,14 @@ declare namespace Lightsail {
2795
2795
  * The tag keys and optional values to add to the distribution during create. Use the TagResource action to tag a resource after it's created.
2796
2796
  */
2797
2797
  tags?: TagList;
2798
+ /**
2799
+ * The name of the SSL/TLS certificate that you want to attach to the distribution. Use the GetCertificates action to get a list of certificate names that you can specify.
2800
+ */
2801
+ certificateName?: ResourceName;
2802
+ /**
2803
+ * The minimum TLS protocol version for the SSL/TLS certificate.
2804
+ */
2805
+ viewerMinimumTlsProtocolVersion?: ViewerMinimumTlsProtocolVersionEnum;
2798
2806
  }
2799
2807
  export interface CreateDistributionResult {
2800
2808
  /**
@@ -5322,6 +5330,10 @@ declare namespace Lightsail {
5322
5330
  * The protocol that your Amazon Lightsail distribution uses when establishing a connection with your origin to pull content.
5323
5331
  */
5324
5332
  protocolPolicy?: OriginProtocolPolicyEnum;
5333
+ /**
5334
+ * The amount of time, in seconds, that the distribution waits for a response after forwarding a request to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.
5335
+ */
5336
+ responseTimeout?: integer;
5325
5337
  }
5326
5338
  export interface Instance {
5327
5339
  /**
@@ -5848,6 +5860,10 @@ declare namespace Lightsail {
5848
5860
  * The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide.
5849
5861
  */
5850
5862
  tags?: TagList;
5863
+ /**
5864
+ * The minimum TLS protocol version that the distribution can use to communicate with viewers.
5865
+ */
5866
+ viewerMinimumTlsProtocolVersion?: string;
5851
5867
  }
5852
5868
  export interface LoadBalancer {
5853
5869
  /**
@@ -6301,6 +6317,10 @@ declare namespace Lightsail {
6301
6317
  * The protocol that your Amazon Lightsail distribution uses when establishing a connection with your origin to pull content.
6302
6318
  */
6303
6319
  protocolPolicy?: OriginProtocolPolicyEnum;
6320
+ /**
6321
+ * The amount of time, in seconds, that the distribution waits for a response after forwarding a request to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.
6322
+ */
6323
+ responseTimeout?: integer;
6304
6324
  }
6305
6325
  export type OriginProtocolPolicyEnum = "http-only"|"https-only"|string;
6306
6326
  export type PartnerIdList = NonEmptyString[];
@@ -7531,6 +7551,18 @@ declare namespace Lightsail {
7531
7551
  * Indicates whether to enable the distribution.
7532
7552
  */
7533
7553
  isEnabled?: boolean;
7554
+ /**
7555
+ * Use this parameter to update the minimum TLS protocol version for the SSL/TLS certificate that's attached to the distribution.
7556
+ */
7557
+ viewerMinimumTlsProtocolVersion?: ViewerMinimumTlsProtocolVersionEnum;
7558
+ /**
7559
+ * The name of the SSL/TLS certificate that you want to attach to the distribution. Only certificates with a status of ISSUED can be attached to a distribution. Use the GetCertificates action to get a list of certificate names that you can specify.
7560
+ */
7561
+ certificateName?: ResourceName;
7562
+ /**
7563
+ * Indicates whether the default SSL/TLS certificate is attached to the distribution. The default value is true. When true, the distribution uses the default domain name such as d111111abcdef8.cloudfront.net. Set this value to false to attach a new certificate to the distribution.
7564
+ */
7565
+ useDefaultCertificate?: boolean;
7534
7566
  }
7535
7567
  export interface UpdateDistributionResult {
7536
7568
  /**
@@ -7670,6 +7702,7 @@ declare namespace Lightsail {
7670
7702
  */
7671
7703
  operations?: OperationList;
7672
7704
  }
7705
+ export type ViewerMinimumTlsProtocolVersionEnum = "TLSv1.1_2016"|"TLSv1.2_2018"|"TLSv1.2_2019"|"TLSv1.2_2021"|string;
7673
7706
  export type double = number;
7674
7707
  export type float = number;
7675
7708
  export type integer = number;
@@ -242,7 +242,7 @@ declare namespace RolesAnywhere {
242
242
  export type Boolean = boolean;
243
243
  export interface CreateProfileRequest {
244
244
  /**
245
- * Used to determine how long sessions vended using this profile are valid for. See the Expiration section of the CreateSession API documentation page for more details.
245
+ * Used to determine how long sessions vended using this profile are valid for. See the Expiration section of the CreateSession API documentation page for more details. In requests, if this value is not provided, the default value will be 3600.
246
246
  */
247
247
  durationSeconds?: CreateProfileRequestDurationSecondsInteger;
248
248
  /**
@@ -541,7 +541,7 @@ declare namespace RolesAnywhere {
541
541
  */
542
542
  createdBy?: String;
543
543
  /**
544
- * Used to determine how long sessions vended using this profile are valid for. See the Expiration section of the CreateSession API documentation page for more details.
544
+ * Used to determine how long sessions vended using this profile are valid for. See the Expiration section of the CreateSession API documentation page for more details. In requests, if this value is not provided, the default value will be 3600.
545
545
  */
546
546
  durationSeconds?: Integer;
547
547
  /**
@@ -837,7 +837,7 @@ declare namespace RolesAnywhere {
837
837
  export type UpdateCrlRequestCrlDataBlob = Buffer|Uint8Array|Blob|string;
838
838
  export interface UpdateProfileRequest {
839
839
  /**
840
- * Used to determine how long sessions vended using this profile are valid for. See the Expiration section of the CreateSession API documentation page for more details.
840
+ * Used to determine how long sessions vended using this profile are valid for. See the Expiration section of the CreateSession API documentation page for more details. In requests, if this value is not provided, the default value will be 3600.
841
841
  */
842
842
  durationSeconds?: UpdateProfileRequestDurationSecondsInteger;
843
843
  /**