cdk-lambda-subminute 2.0.269 → 2.0.270

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 (32) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/CHANGELOG.md +13 -1
  4. package/node_modules/aws-sdk/README.md +1 -1
  5. package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +28 -6
  6. package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.min.json +721 -79
  7. package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.paginators.json +18 -0
  8. package/node_modules/aws-sdk/apis/managedblockchain-query-2023-05-04.min.json +111 -0
  9. package/node_modules/aws-sdk/apis/managedblockchain-query-2023-05-04.paginators.json +6 -0
  10. package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +78 -59
  11. package/node_modules/aws-sdk/apis/redshift-2012-12-01.min.json +205 -184
  12. package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.min.json +34 -18
  13. package/node_modules/aws-sdk/apis/sesv2-2019-09-27.min.json +40 -18
  14. package/node_modules/aws-sdk/clients/cloudformation.d.ts +1 -1
  15. package/node_modules/aws-sdk/clients/drs.d.ts +27 -1
  16. package/node_modules/aws-sdk/clients/entityresolution.d.ts +650 -12
  17. package/node_modules/aws-sdk/clients/managedblockchainquery.d.ts +125 -9
  18. package/node_modules/aws-sdk/clients/mediapackagev2.d.ts +13 -13
  19. package/node_modules/aws-sdk/clients/opensearch.d.ts +46 -6
  20. package/node_modules/aws-sdk/clients/redshift.d.ts +47 -7
  21. package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +42 -2
  22. package/node_modules/aws-sdk/clients/sesv2.d.ts +43 -3
  23. package/node_modules/aws-sdk/clients/transfer.d.ts +8 -8
  24. package/node_modules/aws-sdk/clients/xray.d.ts +2 -2
  25. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +45 -13
  26. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +98 -34
  27. package/node_modules/aws-sdk/dist/aws-sdk.js +208 -187
  28. package/node_modules/aws-sdk/dist/aws-sdk.min.js +28 -28
  29. package/node_modules/aws-sdk/lib/core.js +1 -1
  30. package/node_modules/aws-sdk/lib/s3/managed_upload.d.ts +1 -1
  31. package/node_modules/aws-sdk/package.json +1 -1
  32. package/package.json +2 -2
@@ -777,6 +777,7 @@ declare namespace SESV2 {
777
777
  }
778
778
  export type AdditionalContactEmailAddress = string;
779
779
  export type AdditionalContactEmailAddresses = AdditionalContactEmailAddress[];
780
+ export type AdminEmail = string;
780
781
  export type AmazonResourceName = string;
781
782
  export type AttributesData = string;
782
783
  export type BatchGetMetricDataQueries = BatchGetMetricDataQuery[];
@@ -1655,7 +1656,7 @@ declare namespace SESV2 {
1655
1656
  */
1656
1657
  Simple?: Message;
1657
1658
  /**
1658
- * The raw email message. The message has to meet the following criteria: The message has to contain a header and a body, separated by one blank line. All of the required header fields must be present in the message. Each part of a multipart MIME message must be formatted properly. If you include attachments, they must be in a file format that the Amazon SES API v2 supports. The entire message must be Base64 encoded. If any of the MIME parts in your message contain content that is outside of the 7-bit ASCII character range, you should encode that content to ensure that recipients' email clients render the message properly. The length of any single line of text in the message can't exceed 1,000 characters. This restriction is defined in RFC 5321.
1659
+ * The raw email message. The message has to meet the following criteria: The message has to contain a header and a body, separated by one blank line. All of the required header fields must be present in the message. Each part of a multipart MIME message must be formatted properly. If you include attachments, they must be in a file format that the Amazon SES API v2 supports. The raw data of the message needs to base64-encoded if you are accessing Amazon SES directly through the HTTPS interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base 64-encoding for you. If any of the MIME parts in your message contain content that is outside of the 7-bit ASCII character range, you should encode that content to ensure that recipients' email clients render the message properly. The length of any single line of text in the message can't exceed 1,000 characters. This restriction is defined in RFC 5321.
1659
1660
  */
1660
1661
  Raw?: RawMessage;
1661
1662
  /**
@@ -2257,6 +2258,10 @@ declare namespace SESV2 {
2257
2258
  * The verification status of the identity. The status can be one of the following: PENDING – The verification process was initiated, but Amazon SES hasn't yet been able to verify the identity. SUCCESS – The verification process completed successfully. FAILED – The verification process failed. TEMPORARY_FAILURE – A temporary issue is preventing Amazon SES from determining the verification status of the identity. NOT_STARTED – The verification process hasn't been initiated for the identity.
2258
2259
  */
2259
2260
  VerificationStatus?: VerificationStatus;
2261
+ /**
2262
+ * An object that contains additional information about the verification status for the identity.
2263
+ */
2264
+ VerificationInfo?: VerificationInfo;
2260
2265
  }
2261
2266
  export interface GetEmailTemplateRequest {
2262
2267
  /**
@@ -2729,7 +2734,7 @@ declare namespace SESV2 {
2729
2734
  */
2730
2735
  NextToken?: NextToken;
2731
2736
  /**
2732
- * The number of results to show in a single call to ListEmailTemplates. If the number of results is larger than the number you specified in this parameter, then the response includes a NextToken element, which you can use to obtain additional results. The value you specify has to be at least 1, and can be no more than 10.
2737
+ * The number of results to show in a single call to ListEmailTemplates. If the number of results is larger than the number you specified in this parameter, then the response includes a NextToken element, which you can use to obtain additional results. The value you specify has to be at least 1, and can be no more than 100.
2733
2738
  */
2734
2739
  PageSize?: MaxItems;
2735
2740
  }
@@ -3081,6 +3086,7 @@ declare namespace SESV2 {
3081
3086
  export type PolicyMap = {[key: string]: Policy};
3082
3087
  export type PolicyName = string;
3083
3088
  export type PoolName = string;
3089
+ export type PrimaryNameServer = string;
3084
3090
  export type PrivateKey = string;
3085
3091
  export type ProcessedRecordsCount = number;
3086
3092
  export interface PutAccountDedicatedIpWarmupAttributesRequest {
@@ -3360,7 +3366,7 @@ declare namespace SESV2 {
3360
3366
  export type QueryIdentifier = string;
3361
3367
  export interface RawMessage {
3362
3368
  /**
3363
- * The raw email message. The message has to meet the following criteria: The message has to contain a header and a body, separated by one blank line. All of the required header fields must be present in the message. Each part of a multipart MIME message must be formatted properly. Attachments must be in a file format that the Amazon SES supports. The entire message must be Base64 encoded. If any of the MIME parts in your message contain content that is outside of the 7-bit ASCII character range, you should encode that content to ensure that recipients' email clients render the message properly. The length of any single line of text in the message can't exceed 1,000 characters. This restriction is defined in RFC 5321.
3369
+ * The raw email message. The message has to meet the following criteria: The message has to contain a header and a body, separated by one blank line. All of the required header fields must be present in the message. Each part of a multipart MIME message must be formatted properly. Attachments must be in a file format that the Amazon SES supports. The raw data of the message needs to base64-encoded if you are accessing Amazon SES directly through the HTTPS interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base 64-encoding for you. If any of the MIME parts in your message contain content that is outside of the 7-bit ASCII character range, you should encode that content to ensure that recipients' email clients render the message properly. The length of any single line of text in the message can't exceed 1,000 characters. This restriction is defined in RFC 5321.
3364
3370
  */
3365
3371
  Data: RawMessageData;
3366
3372
  }
@@ -3438,6 +3444,20 @@ declare namespace SESV2 {
3438
3444
  }
3439
3445
  export type ReviewStatus = "PENDING"|"FAILED"|"GRANTED"|"DENIED"|string;
3440
3446
  export type S3Url = string;
3447
+ export interface SOARecord {
3448
+ /**
3449
+ * Primary name server specified in the SOA record.
3450
+ */
3451
+ PrimaryNameServer?: PrimaryNameServer;
3452
+ /**
3453
+ * Administrative contact email from the SOA record.
3454
+ */
3455
+ AdminEmail?: AdminEmail;
3456
+ /**
3457
+ * Serial number from the SOA record.
3458
+ */
3459
+ SerialNumber?: SerialNumber;
3460
+ }
3441
3461
  export type ScalingMode = "STANDARD"|"MANAGED"|string;
3442
3462
  export type Selector = string;
3443
3463
  export interface SendBulkEmailRequest {
@@ -3574,6 +3594,7 @@ declare namespace SESV2 {
3574
3594
  }
3575
3595
  export type SendingPoolName = string;
3576
3596
  export type SentLast24Hours = number;
3597
+ export type SerialNumber = number;
3577
3598
  export interface SnsDestination {
3578
3599
  /**
3579
3600
  * The Amazon Resource Name (ARN) of the Amazon SNS topic to publish email events to. For more information about Amazon SNS topics, see the Amazon SNS Developer Guide.
@@ -3905,6 +3926,25 @@ declare namespace SESV2 {
3905
3926
  */
3906
3927
  GuardianOptions?: GuardianOptions;
3907
3928
  }
3929
+ export type VerificationError = "SERVICE_ERROR"|"DNS_SERVER_ERROR"|"HOST_NOT_FOUND"|"TYPE_NOT_FOUND"|"INVALID_VALUE"|string;
3930
+ export interface VerificationInfo {
3931
+ /**
3932
+ * The last time a verification attempt was made for this identity.
3933
+ */
3934
+ LastCheckedTimestamp?: Timestamp;
3935
+ /**
3936
+ * The last time a successful verification was made for this identity.
3937
+ */
3938
+ LastSuccessTimestamp?: Timestamp;
3939
+ /**
3940
+ * Provides the reason for the failure describing why Amazon SES was not able to successfully verify the identity. Below are the possible values: INVALID_VALUE – Amazon SES was able to find the record, but the value contained within the record was invalid. Ensure you have published the correct values for the record. TYPE_NOT_FOUND – The queried hostname exists but does not have the requested type of DNS record. Ensure that you have published the correct type of DNS record. HOST_NOT_FOUND – The queried hostname does not exist or was not reachable at the time of the request. Ensure that you have published the required DNS record(s). SERVICE_ERROR – A temporary issue is preventing Amazon SES from determining the verification status of the domain. DNS_SERVER_ERROR – The DNS server encountered an issue and was unable to complete the request.
3941
+ */
3942
+ ErrorType?: VerificationError;
3943
+ /**
3944
+ * An object that contains information about the start of authority (SOA) record associated with the identity.
3945
+ */
3946
+ SOARecord?: SOARecord;
3947
+ }
3908
3948
  export type VerificationStatus = "PENDING"|"SUCCESS"|"FAILED"|"TEMPORARY_FAILURE"|"NOT_STARTED"|string;
3909
3949
  export type Volume = number;
3910
3950
  export interface VolumeStatistics {
@@ -582,7 +582,7 @@ 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. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
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 PATH.
586
586
  */
587
587
  HomeDirectory?: HomeDirectory;
588
588
  /**
@@ -791,7 +791,7 @@ 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. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
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 PATH.
795
795
  */
796
796
  HomeDirectory?: HomeDirectory;
797
797
  /**
@@ -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. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
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 PATH.
1173
1173
  */
1174
1174
  HomeDirectory?: HomeDirectory;
1175
1175
  /**
@@ -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. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
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 PATH.
1533
1533
  */
1534
1534
  HomeDirectory?: HomeDirectory;
1535
1535
  /**
@@ -2122,7 +2122,7 @@ 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. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
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 PATH.
2126
2126
  */
2127
2127
  HomeDirectory?: HomeDirectory;
2128
2128
  /**
@@ -2326,7 +2326,7 @@ 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. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
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 PATH.
2330
2330
  */
2331
2331
  HomeDirectory?: HomeDirectory;
2332
2332
  /**
@@ -2704,7 +2704,7 @@ 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. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
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 PATH.
2708
2708
  */
2709
2709
  HomeDirectory?: HomeDirectory;
2710
2710
  /**
@@ -2945,7 +2945,7 @@ 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. The HomeDirectory parameter is only used if HomeDirectoryType is set to LOGICAL.
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 PATH.
2949
2949
  */
2950
2950
  HomeDirectory?: HomeDirectory;
2951
2951
  /**
@@ -993,7 +993,7 @@ declare namespace XRay {
993
993
  */
994
994
  EndTime: Timestamp;
995
995
  /**
996
- * A parameter to indicate whether to query trace summaries by TraceId or Event time.
996
+ * A parameter to indicate whether to query trace summaries by TraceId, Event (trace update time), or Service (segment end time).
997
997
  */
998
998
  TimeRangeType?: TimeRangeType;
999
999
  /**
@@ -1879,7 +1879,7 @@ declare namespace XRay {
1879
1879
  BackendConnectionErrors?: BackendConnectionErrors;
1880
1880
  }
1881
1881
  export type TelemetryRecordList = TelemetryRecord[];
1882
- export type TimeRangeType = "TraceId"|"Event"|string;
1882
+ export type TimeRangeType = "TraceId"|"Event"|"Service"|string;
1883
1883
  export interface TimeSeriesServiceStatistics {
1884
1884
  /**
1885
1885
  * Timestamp of the window for which statistics are aggregated.
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1473.0',
86
+ VERSION: '2.1474.0',
87
87
 
88
88
  /**
89
89
  * @api private
@@ -9897,43 +9897,75 @@ return /******/ (function(modules) { // webpackBootstrap
9897
9897
  /* eslint no-invalid-this: 1 */
9898
9898
 
9899
9899
  var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';
9900
- var slice = Array.prototype.slice;
9901
9900
  var toStr = Object.prototype.toString;
9901
+ var max = Math.max;
9902
9902
  var funcType = '[object Function]';
9903
9903
 
9904
+ var concatty = function concatty(a, b) {
9905
+ var arr = [];
9906
+
9907
+ for (var i = 0; i < a.length; i += 1) {
9908
+ arr[i] = a[i];
9909
+ }
9910
+ for (var j = 0; j < b.length; j += 1) {
9911
+ arr[j + a.length] = b[j];
9912
+ }
9913
+
9914
+ return arr;
9915
+ };
9916
+
9917
+ var slicy = function slicy(arrLike, offset) {
9918
+ var arr = [];
9919
+ for (var i = offset || 0, j = 0; i < arrLike.length; i += 1, j += 1) {
9920
+ arr[j] = arrLike[i];
9921
+ }
9922
+ return arr;
9923
+ };
9924
+
9925
+ var joiny = function (arr, joiner) {
9926
+ var str = '';
9927
+ for (var i = 0; i < arr.length; i += 1) {
9928
+ str += arr[i];
9929
+ if (i + 1 < arr.length) {
9930
+ str += joiner;
9931
+ }
9932
+ }
9933
+ return str;
9934
+ };
9935
+
9904
9936
  module.exports = function bind(that) {
9905
9937
  var target = this;
9906
- if (typeof target !== 'function' || toStr.call(target) !== funcType) {
9938
+ if (typeof target !== 'function' || toStr.apply(target) !== funcType) {
9907
9939
  throw new TypeError(ERROR_MESSAGE + target);
9908
9940
  }
9909
- var args = slice.call(arguments, 1);
9941
+ var args = slicy(arguments, 1);
9910
9942
 
9911
9943
  var bound;
9912
9944
  var binder = function () {
9913
9945
  if (this instanceof bound) {
9914
9946
  var result = target.apply(
9915
9947
  this,
9916
- args.concat(slice.call(arguments))
9948
+ concatty(args, arguments)
9917
9949
  );
9918
9950
  if (Object(result) === result) {
9919
9951
  return result;
9920
9952
  }
9921
9953
  return this;
9922
- } else {
9923
- return target.apply(
9924
- that,
9925
- args.concat(slice.call(arguments))
9926
- );
9927
9954
  }
9955
+ return target.apply(
9956
+ that,
9957
+ concatty(args, arguments)
9958
+ );
9959
+
9928
9960
  };
9929
9961
 
9930
- var boundLength = Math.max(0, target.length - args.length);
9962
+ var boundLength = max(0, target.length - args.length);
9931
9963
  var boundArgs = [];
9932
9964
  for (var i = 0; i < boundLength; i++) {
9933
- boundArgs.push('$' + i);
9965
+ boundArgs[i] = '$' + i;
9934
9966
  }
9935
9967
 
9936
- bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder);
9968
+ bound = Function('binder', 'return function (' + joiny(boundArgs, ',') + '){ return binder.apply(this,arguments); }')(binder);
9937
9969
 
9938
9970
  if (target.prototype) {
9939
9971
  var Empty = function Empty() {};