cdk-lambda-subminute 2.0.312 → 2.0.313

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 +3 -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/cleanrooms-2022-02-17.min.json +1222 -83
  5. package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.paginators.json +36 -0
  6. package/node_modules/aws-sdk/apis/cleanroomsml-2023-09-06.examples.json +5 -0
  7. package/node_modules/aws-sdk/apis/cleanroomsml-2023-09-06.min.json +1226 -0
  8. package/node_modules/aws-sdk/apis/cleanroomsml-2023-09-06.paginators.json +34 -0
  9. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  10. package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +369 -195
  11. package/node_modules/aws-sdk/apis/opensearchserverless-2021-11-01.min.json +49 -46
  12. package/node_modules/aws-sdk/apis/runtime.sagemaker-2017-05-13.min.json +8 -0
  13. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1688 -980
  14. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.paginators.json +18 -0
  15. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  16. package/node_modules/aws-sdk/clients/all.js +2 -1
  17. package/node_modules/aws-sdk/clients/applicationautoscaling.d.ts +31 -31
  18. package/node_modules/aws-sdk/clients/cleanrooms.d.ts +1292 -177
  19. package/node_modules/aws-sdk/clients/cleanroomsml.d.ts +1232 -0
  20. package/node_modules/aws-sdk/clients/cleanroomsml.js +18 -0
  21. package/node_modules/aws-sdk/clients/opensearch.d.ts +170 -1
  22. package/node_modules/aws-sdk/clients/opensearchserverless.d.ts +13 -0
  23. package/node_modules/aws-sdk/clients/sagemaker.d.ts +950 -44
  24. package/node_modules/aws-sdk/clients/sagemakerruntime.d.ts +11 -2
  25. package/node_modules/aws-sdk/clients/sts.d.ts +1 -1
  26. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  27. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +48 -11
  28. package/node_modules/aws-sdk/dist/aws-sdk.js +6 -3
  29. package/node_modules/aws-sdk/dist/aws-sdk.min.js +35 -35
  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/package.json +1 -1
  33. package/package.json +2 -2
  34. package/node_modules/aws-sdk/CHANGELOG.md +0 -9341
@@ -0,0 +1,18 @@
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['cleanroomsml'] = {};
7
+ AWS.CleanRoomsML = Service.defineService('cleanroomsml', ['2023-09-06']);
8
+ Object.defineProperty(apiLoader.services['cleanroomsml'], '2023-09-06', {
9
+ get: function get() {
10
+ var model = require('../apis/cleanroomsml-2023-09-06.min.json');
11
+ model.paginators = require('../apis/cleanroomsml-2023-09-06.paginators.json').pagination;
12
+ return model;
13
+ },
14
+ enumerable: true,
15
+ configurable: true
16
+ });
17
+
18
+ module.exports = AWS.CleanRoomsML;
@@ -19,6 +19,14 @@ declare class OpenSearch extends Service {
19
19
  * Allows the destination Amazon OpenSearch Service domain owner to accept an inbound cross-cluster search connection request. For more information, see Cross-cluster search for Amazon OpenSearch Service.
20
20
  */
21
21
  acceptInboundConnection(callback?: (err: AWSError, data: OpenSearch.Types.AcceptInboundConnectionResponse) => void): Request<OpenSearch.Types.AcceptInboundConnectionResponse, AWSError>;
22
+ /**
23
+ * Adds the data source on the domain.
24
+ */
25
+ addDataSource(params: OpenSearch.Types.AddDataSourceRequest, callback?: (err: AWSError, data: OpenSearch.Types.AddDataSourceResponse) => void): Request<OpenSearch.Types.AddDataSourceResponse, AWSError>;
26
+ /**
27
+ * Adds the data source on the domain.
28
+ */
29
+ addDataSource(callback?: (err: AWSError, data: OpenSearch.Types.AddDataSourceResponse) => void): Request<OpenSearch.Types.AddDataSourceResponse, AWSError>;
22
30
  /**
23
31
  * Attaches tags to an existing Amazon OpenSearch Service domain. Tags are a set of case-sensitive key-value pairs. A domain can have up to 10 tags. For more information, see Tagging Amazon OpenSearch Service domains.
24
32
  */
@@ -83,6 +91,14 @@ declare class OpenSearch extends Service {
83
91
  * Creates an Amazon OpenSearch Service-managed VPC endpoint.
84
92
  */
85
93
  createVpcEndpoint(callback?: (err: AWSError, data: OpenSearch.Types.CreateVpcEndpointResponse) => void): Request<OpenSearch.Types.CreateVpcEndpointResponse, AWSError>;
94
+ /**
95
+ * Deletes the data source.
96
+ */
97
+ deleteDataSource(params: OpenSearch.Types.DeleteDataSourceRequest, callback?: (err: AWSError, data: OpenSearch.Types.DeleteDataSourceResponse) => void): Request<OpenSearch.Types.DeleteDataSourceResponse, AWSError>;
98
+ /**
99
+ * Deletes the data source.
100
+ */
101
+ deleteDataSource(callback?: (err: AWSError, data: OpenSearch.Types.DeleteDataSourceResponse) => void): Request<OpenSearch.Types.DeleteDataSourceResponse, AWSError>;
86
102
  /**
87
103
  * Deletes an Amazon OpenSearch Service domain and all of its data. You can't recover a domain after you delete it.
88
104
  */
@@ -259,6 +275,14 @@ declare class OpenSearch extends Service {
259
275
  * Returns a map of OpenSearch or Elasticsearch versions and the versions you can upgrade them to.
260
276
  */
261
277
  getCompatibleVersions(callback?: (err: AWSError, data: OpenSearch.Types.GetCompatibleVersionsResponse) => void): Request<OpenSearch.Types.GetCompatibleVersionsResponse, AWSError>;
278
+ /**
279
+ * Describes the data source details.
280
+ */
281
+ getDataSource(params: OpenSearch.Types.GetDataSourceRequest, callback?: (err: AWSError, data: OpenSearch.Types.GetDataSourceResponse) => void): Request<OpenSearch.Types.GetDataSourceResponse, AWSError>;
282
+ /**
283
+ * Describes the data source details.
284
+ */
285
+ getDataSource(callback?: (err: AWSError, data: OpenSearch.Types.GetDataSourceResponse) => void): Request<OpenSearch.Types.GetDataSourceResponse, AWSError>;
262
286
  /**
263
287
  * The status of the maintenance action.
264
288
  */
@@ -291,6 +315,14 @@ declare class OpenSearch extends Service {
291
315
  * Returns the most recent status of the last upgrade or upgrade eligibility check performed on an Amazon OpenSearch Service domain.
292
316
  */
293
317
  getUpgradeStatus(callback?: (err: AWSError, data: OpenSearch.Types.GetUpgradeStatusResponse) => void): Request<OpenSearch.Types.GetUpgradeStatusResponse, AWSError>;
318
+ /**
319
+ * A list of the data source details of the domain.
320
+ */
321
+ listDataSources(params: OpenSearch.Types.ListDataSourcesRequest, callback?: (err: AWSError, data: OpenSearch.Types.ListDataSourcesResponse) => void): Request<OpenSearch.Types.ListDataSourcesResponse, AWSError>;
322
+ /**
323
+ * A list of the data source details of the domain.
324
+ */
325
+ listDataSources(callback?: (err: AWSError, data: OpenSearch.Types.ListDataSourcesResponse) => void): Request<OpenSearch.Types.ListDataSourcesResponse, AWSError>;
294
326
  /**
295
327
  * A list of maintenance actions for the domain.
296
328
  */
@@ -427,6 +459,14 @@ declare class OpenSearch extends Service {
427
459
  * Schedules a service software update for an Amazon OpenSearch Service domain. For more information, see Service software updates in Amazon OpenSearch Service.
428
460
  */
429
461
  startServiceSoftwareUpdate(callback?: (err: AWSError, data: OpenSearch.Types.StartServiceSoftwareUpdateResponse) => void): Request<OpenSearch.Types.StartServiceSoftwareUpdateResponse, AWSError>;
462
+ /**
463
+ * Updates the data source on the domain.
464
+ */
465
+ updateDataSource(params: OpenSearch.Types.UpdateDataSourceRequest, callback?: (err: AWSError, data: OpenSearch.Types.UpdateDataSourceResponse) => void): Request<OpenSearch.Types.UpdateDataSourceResponse, AWSError>;
466
+ /**
467
+ * Updates the data source on the domain.
468
+ */
469
+ updateDataSource(callback?: (err: AWSError, data: OpenSearch.Types.UpdateDataSourceResponse) => void): Request<OpenSearch.Types.UpdateDataSourceResponse, AWSError>;
430
470
  /**
431
471
  * Modifies the cluster configuration of the specified Amazon OpenSearch Service domain.
432
472
  */
@@ -510,6 +550,30 @@ declare namespace OpenSearch {
510
550
  export type ActionSeverity = "HIGH"|"MEDIUM"|"LOW"|string;
511
551
  export type ActionStatus = "PENDING_UPDATE"|"IN_PROGRESS"|"FAILED"|"COMPLETED"|"NOT_ELIGIBLE"|"ELIGIBLE"|string;
512
552
  export type ActionType = "SERVICE_SOFTWARE_UPDATE"|"JVM_HEAP_SIZE_TUNING"|"JVM_YOUNG_GEN_TUNING"|string;
553
+ export interface AddDataSourceRequest {
554
+ /**
555
+ * The name of the domain.
556
+ */
557
+ DomainName: DomainName;
558
+ /**
559
+ * The name of the data source.
560
+ */
561
+ Name: DataSourceName;
562
+ /**
563
+ * The type of data source.
564
+ */
565
+ DataSourceType: DataSourceType;
566
+ /**
567
+ * A description of the data source.
568
+ */
569
+ Description?: DataSourceDescription;
570
+ }
571
+ export interface AddDataSourceResponse {
572
+ /**
573
+ * A message associated with the data source.
574
+ */
575
+ Message?: String;
576
+ }
513
577
  export interface AddTagsRequest {
514
578
  /**
515
579
  * Amazon Resource Name (ARN) for the OpenSearch Service domain to which you want to attach resource tags.
@@ -1170,6 +1234,45 @@ declare namespace OpenSearch {
1170
1234
  */
1171
1235
  SkipUnavailable?: SkipUnavailableStatus;
1172
1236
  }
1237
+ export type DataSourceDescription = string;
1238
+ export interface DataSourceDetails {
1239
+ /**
1240
+ * The type of data source.
1241
+ */
1242
+ DataSourceType?: DataSourceType;
1243
+ /**
1244
+ * The name of the data source.
1245
+ */
1246
+ Name?: DataSourceName;
1247
+ /**
1248
+ * A description of the data source.
1249
+ */
1250
+ Description?: DataSourceDescription;
1251
+ }
1252
+ export type DataSourceList = DataSourceDetails[];
1253
+ export type DataSourceName = string;
1254
+ export interface DataSourceType {
1255
+ /**
1256
+ * The data source for the AWS S3 Glue Data Catalog.
1257
+ */
1258
+ S3GlueDataCatalog?: S3GlueDataCatalog;
1259
+ }
1260
+ export interface DeleteDataSourceRequest {
1261
+ /**
1262
+ * The name of the domain.
1263
+ */
1264
+ DomainName: DomainName;
1265
+ /**
1266
+ * The name of the data source.
1267
+ */
1268
+ Name: DataSourceName;
1269
+ }
1270
+ export interface DeleteDataSourceResponse {
1271
+ /**
1272
+ * A message associated with the initiated request.
1273
+ */
1274
+ Message?: String;
1275
+ }
1173
1276
  export interface DeleteDomainRequest {
1174
1277
  /**
1175
1278
  * The name of the domain you want to permanently delete.
@@ -1678,7 +1781,7 @@ declare namespace OpenSearch {
1678
1781
  */
1679
1782
  EnforceHTTPS?: Boolean;
1680
1783
  /**
1681
- * Specify the TLS security policy to apply to the HTTPS endpoint of the domain. Can be one of the following values: Policy-Min-TLS-1-0-2019-07: TLS security policy which supports TLS version 1.0 and higher. Policy-Min-TLS-1-2-2019-07: TLS security policy which supports only TLS version 1.2
1784
+ * Specify the TLS security policy to apply to the HTTPS endpoint of the domain. The policy can be one of the following values: Policy-Min-TLS-1-0-2019-07: TLS security policy which supports TLS version 1.0 to TLS version 1.2 Policy-Min-TLS-1-2-2019-07: TLS security policy which supports only TLS version 1.2 Policy-Min-TLS-1-0-2023-10: TLS security policy which supports TLS version 1.0 to TLS version 1.3 Policy-Min-TLS-1-2-2023-10: TLS security policy which supports TLS version 1.2 to TLS version 1.3 with perfect forward secrecy cipher suites
1682
1785
  */
1683
1786
  TLSSecurityPolicy?: TLSSecurityPolicy;
1684
1787
  /**
@@ -2098,6 +2201,30 @@ declare namespace OpenSearch {
2098
2201
  */
2099
2202
  CompatibleVersions?: CompatibleVersionsList;
2100
2203
  }
2204
+ export interface GetDataSourceRequest {
2205
+ /**
2206
+ * The name of the domain.
2207
+ */
2208
+ DomainName: DomainName;
2209
+ /**
2210
+ * The name of the data source.
2211
+ */
2212
+ Name: DataSourceName;
2213
+ }
2214
+ export interface GetDataSourceResponse {
2215
+ /**
2216
+ * The type of data source.
2217
+ */
2218
+ DataSourceType?: DataSourceType;
2219
+ /**
2220
+ * The name of the data source.
2221
+ */
2222
+ Name?: DataSourceName;
2223
+ /**
2224
+ * A description of the data source.
2225
+ */
2226
+ Description?: DataSourceDescription;
2227
+ }
2101
2228
  export interface GetDomainMaintenanceStatusRequest {
2102
2229
  /**
2103
2230
  * The name of the domain.
@@ -2328,6 +2455,18 @@ declare namespace OpenSearch {
2328
2455
  AdditionalLimits?: AdditionalLimitList;
2329
2456
  }
2330
2457
  export type LimitsByRole = {[key: string]: Limits};
2458
+ export interface ListDataSourcesRequest {
2459
+ /**
2460
+ * The name of the domain.
2461
+ */
2462
+ DomainName: DomainName;
2463
+ }
2464
+ export interface ListDataSourcesResponse {
2465
+ /**
2466
+ * A list of the data sources.
2467
+ */
2468
+ DataSources?: DataSourceList;
2469
+ }
2331
2470
  export interface ListDomainMaintenancesRequest {
2332
2471
  /**
2333
2472
  * The name of the domain.
@@ -3014,6 +3153,12 @@ declare namespace OpenSearch {
3014
3153
  export type RoleArn = string;
3015
3154
  export type RollbackOnDisable = "NO_ROLLBACK"|"DEFAULT_ROLLBACK"|string;
3016
3155
  export type S3BucketName = string;
3156
+ export interface S3GlueDataCatalog {
3157
+ /**
3158
+ * The role ARN for the AWS S3 Glue Data Catalog.
3159
+ */
3160
+ RoleArn?: RoleArn;
3161
+ }
3017
3162
  export type S3Key = string;
3018
3163
  export type SAMLEntityId = string;
3019
3164
  export interface SAMLIdp {
@@ -3301,6 +3446,30 @@ declare namespace OpenSearch {
3301
3446
  export type TotalNumberOfStages = number;
3302
3447
  export type UIntValue = number;
3303
3448
  export type UncompressedPluginSizeInBytes = number;
3449
+ export interface UpdateDataSourceRequest {
3450
+ /**
3451
+ * The name of the domain.
3452
+ */
3453
+ DomainName: DomainName;
3454
+ /**
3455
+ * The name of the data source.
3456
+ */
3457
+ Name: DataSourceName;
3458
+ /**
3459
+ * The type of data source.
3460
+ */
3461
+ DataSourceType: DataSourceType;
3462
+ /**
3463
+ * A description of the data source.
3464
+ */
3465
+ Description?: DataSourceDescription;
3466
+ }
3467
+ export interface UpdateDataSourceResponse {
3468
+ /**
3469
+ * A message associated with the data source.
3470
+ */
3471
+ Message?: String;
3472
+ }
3304
3473
  export interface UpdateDomainConfigRequest {
3305
3474
  /**
3306
3475
  * The name of the domain that you're updating.
@@ -494,6 +494,10 @@ declare namespace OpenSearchServerless {
494
494
  * The name of the collection.
495
495
  */
496
496
  name?: CollectionName;
497
+ /**
498
+ * Details about an OpenSearch Serverless collection.
499
+ */
500
+ standbyReplicas?: StandbyReplicas;
497
501
  /**
498
502
  * The current status of the collection.
499
503
  */
@@ -617,6 +621,10 @@ declare namespace OpenSearchServerless {
617
621
  * The name of the collection.
618
622
  */
619
623
  name?: CollectionName;
624
+ /**
625
+ * Creates details about an OpenSearch Serverless collection.
626
+ */
627
+ standbyReplicas?: StandbyReplicas;
620
628
  /**
621
629
  * The current status of the collection.
622
630
  */
@@ -639,6 +647,10 @@ declare namespace OpenSearchServerless {
639
647
  * Name of the collection.
640
648
  */
641
649
  name: CollectionName;
650
+ /**
651
+ * Indicates whether standby replicas should be used for a collection.
652
+ */
653
+ standbyReplicas?: StandbyReplicas;
642
654
  /**
643
655
  * An arbitrary set of tags (key–value pairs) to associate with the OpenSearch Serverless collection.
644
656
  */
@@ -1473,6 +1485,7 @@ declare namespace OpenSearchServerless {
1473
1485
  type?: SecurityPolicyType;
1474
1486
  }
1475
1487
  export type SecurityPolicyType = "encryption"|"network"|string;
1488
+ export type StandbyReplicas = "ENABLED"|"DISABLED"|string;
1476
1489
  export type String = string;
1477
1490
  export type SubnetId = string;
1478
1491
  export type SubnetIds = SubnetId[];