cdk-lambda-subminute 2.0.436 → 2.0.438
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.
- package/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/bedrock-2023-04-20.min.json +1059 -90
- package/node_modules/aws-sdk/apis/bedrock-2023-04-20.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/bedrock-agent-2023-06-05.min.json +105 -52
- package/node_modules/aws-sdk/apis/bedrock-agent-runtime-2023-07-26.min.json +265 -58
- package/node_modules/aws-sdk/apis/bedrock-runtime-2023-09-30.min.json +24 -0
- package/node_modules/aws-sdk/apis/ce-2017-10-25.min.json +2 -1
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +139 -82
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/payment-cryptography-2021-09-14.min.json +219 -189
- package/node_modules/aws-sdk/apis/payment-cryptography-2021-09-14.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/route53profiles-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/route53profiles-2018-05-10.min.json +598 -0
- package/node_modules/aws-sdk/apis/route53profiles-2018-05-10.paginators.json +22 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +87 -63
- package/node_modules/aws-sdk/apis/servicediscovery-2017-03-14.examples.json +86 -0
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +32 -3
- package/node_modules/aws-sdk/apis/workspaces-web-2020-07-08.min.json +84 -43
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/bedrock.d.ts +1082 -118
- package/node_modules/aws-sdk/clients/bedrockagent.d.ts +80 -2
- package/node_modules/aws-sdk/clients/bedrockagentruntime.d.ts +252 -5
- package/node_modules/aws-sdk/clients/bedrockruntime.d.ts +37 -10
- package/node_modules/aws-sdk/clients/costexplorer.d.ts +11 -7
- package/node_modules/aws-sdk/clients/ec2.d.ts +103 -39
- package/node_modules/aws-sdk/clients/paymentcryptography.d.ts +175 -147
- package/node_modules/aws-sdk/clients/paymentcryptography.js +1 -0
- package/node_modules/aws-sdk/clients/pi.d.ts +5 -5
- package/node_modules/aws-sdk/clients/rds.d.ts +1 -1
- package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +5 -5
- package/node_modules/aws-sdk/clients/route53profiles.d.ts +614 -0
- package/node_modules/aws-sdk/clients/route53profiles.js +18 -0
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +17 -10
- package/node_modules/aws-sdk/clients/servicediscovery.d.ts +4 -4
- package/node_modules/aws-sdk/clients/transfer.d.ts +44 -5
- package/node_modules/aws-sdk/clients/workspacesweb.d.ts +89 -23
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +297 -253
- package/node_modules/aws-sdk/dist/aws-sdk.js +147 -86
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +70 -70
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -9,6 +9,7 @@ Object.defineProperty(apiLoader.services['paymentcryptography'], '2021-09-14', {
|
|
9
9
|
get: function get() {
|
10
10
|
var model = require('../apis/payment-cryptography-2021-09-14.min.json');
|
11
11
|
model.paginators = require('../apis/payment-cryptography-2021-09-14.paginators.json').pagination;
|
12
|
+
model.waiters = require('../apis/payment-cryptography-2021-09-14.waiters2.json').waiters;
|
12
13
|
return model;
|
13
14
|
},
|
14
15
|
enumerable: true,
|
@@ -60,11 +60,11 @@ declare class PI extends Service {
|
|
60
60
|
*/
|
61
61
|
getResourceMetadata(callback?: (err: AWSError, data: PI.Types.GetResourceMetadataResponse) => void): Request<PI.Types.GetResourceMetadataResponse, AWSError>;
|
62
62
|
/**
|
63
|
-
* Retrieve Performance Insights metrics for a set of data sources over a time period. You can provide specific dimension groups and dimensions, and provide
|
63
|
+
* Retrieve Performance Insights metrics for a set of data sources over a time period. You can provide specific dimension groups and dimensions, and provide filtering criteria for each group. You must specify an aggregate function for each metric. Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned.
|
64
64
|
*/
|
65
65
|
getResourceMetrics(params: PI.Types.GetResourceMetricsRequest, callback?: (err: AWSError, data: PI.Types.GetResourceMetricsResponse) => void): Request<PI.Types.GetResourceMetricsResponse, AWSError>;
|
66
66
|
/**
|
67
|
-
* Retrieve Performance Insights metrics for a set of data sources over a time period. You can provide specific dimension groups and dimensions, and provide
|
67
|
+
* Retrieve Performance Insights metrics for a set of data sources over a time period. You can provide specific dimension groups and dimensions, and provide filtering criteria for each group. You must specify an aggregate function for each metric. Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned.
|
68
68
|
*/
|
69
69
|
getResourceMetrics(callback?: (err: AWSError, data: PI.Types.GetResourceMetricsResponse) => void): Request<PI.Types.GetResourceMetricsResponse, AWSError>;
|
70
70
|
/**
|
@@ -487,7 +487,7 @@ declare namespace PI {
|
|
487
487
|
*/
|
488
488
|
Identifier: IdentifierString;
|
489
489
|
/**
|
490
|
-
* An array of one or more queries to perform. Each query must specify a Performance Insights metric
|
490
|
+
* An array of one or more queries to perform. Each query must specify a Performance Insights metric and specify an aggregate function, and you can provide filtering criteria. You must append the aggregate function to the metric. For example, to find the average for the metric db.load you must use db.load.avg. Valid values for aggregate functions include .avg, .min, .max, and .sum.
|
491
491
|
*/
|
492
492
|
MetricQueries: MetricQueryList;
|
493
493
|
/**
|
@@ -726,7 +726,7 @@ declare namespace PI {
|
|
726
726
|
export type MetricKeyDataPointsList = MetricKeyDataPoints[];
|
727
727
|
export interface MetricQuery {
|
728
728
|
/**
|
729
|
-
* The name of a Performance Insights metric to be measured. Valid values for Metric are: db.load.avg - A scaled representation of the number of active sessions for the database engine. db.sampledload.avg - The raw number of active sessions for the database engine. The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide. If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only.
|
729
|
+
* The name of a Performance Insights metric to be measured. Valid values for Metric are: db.load.avg - A scaled representation of the number of active sessions for the database engine. db.sampledload.avg - The raw number of active sessions for the database engine. The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide. The counter metrics listed in Performance Insights operating system counters in the Amazon RDS User Guide. If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only.
|
730
730
|
*/
|
731
731
|
Metric: RequestString;
|
732
732
|
/**
|
@@ -799,7 +799,7 @@ declare namespace PI {
|
|
799
799
|
}
|
800
800
|
export interface ResponseResourceMetricKey {
|
801
801
|
/**
|
802
|
-
* The name of a Performance Insights metric to be measured. Valid values for Metric are: db.load.avg - A scaled representation of the number of active sessions for the database engine. db.sampledload.avg - The raw number of active sessions for the database engine. The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide. If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only.
|
802
|
+
* The name of a Performance Insights metric to be measured. Valid values for Metric are: db.load.avg - A scaled representation of the number of active sessions for the database engine. db.sampledload.avg - The raw number of active sessions for the database engine. The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide. The counter metrics listed in Performance Insights operating system counters in the Amazon RDS User Guide. If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only.
|
803
803
|
*/
|
804
804
|
Metric: String;
|
805
805
|
/**
|
@@ -7254,7 +7254,7 @@ declare namespace RDS {
|
|
7254
7254
|
export type MinimumEngineVersionPerAllowedValueList = MinimumEngineVersionPerAllowedValue[];
|
7255
7255
|
export interface ModifyActivityStreamRequest {
|
7256
7256
|
/**
|
7257
|
-
* The Amazon Resource Name (ARN) of the RDS for Oracle or Microsoft SQL Server DB instance. For example, arn:aws:rds:us-east-1:12345667890:
|
7257
|
+
* The Amazon Resource Name (ARN) of the RDS for Oracle or Microsoft SQL Server DB instance. For example, arn:aws:rds:us-east-1:12345667890:db:my-orcl-db.
|
7258
7258
|
*/
|
7259
7259
|
ResourceArn?: String;
|
7260
7260
|
/**
|
@@ -644,7 +644,7 @@ declare namespace RedshiftServerless {
|
|
644
644
|
*/
|
645
645
|
roleArn: IamRoleArn;
|
646
646
|
/**
|
647
|
-
* The schedule for a one-time (at format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour. Format of at
|
647
|
+
* The schedule for a one-time (at timestamp format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour. Times are in UTC. Format of at timestamp is yyyy-mm-ddThh:mm:ss. For example, 2016-03-04T17:27:00. Format of cron expression is (Minutes Hours Day-of-month Month Day-of-week Year). For example, "(0 10 ? * MON *)". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide.
|
648
648
|
*/
|
649
649
|
schedule: Schedule;
|
650
650
|
/**
|
@@ -1776,11 +1776,11 @@ declare namespace RedshiftServerless {
|
|
1776
1776
|
}
|
1777
1777
|
export interface Schedule {
|
1778
1778
|
/**
|
1779
|
-
* The timestamp of when Amazon Redshift Serverless should run the scheduled action. Format of at
|
1779
|
+
* The timestamp of when Amazon Redshift Serverless should run the scheduled action. Timestamp is in UTC. Format of at expression is yyyy-mm-ddThh:mm:ss. For example, 2016-03-04T17:27:00.
|
1780
1780
|
*/
|
1781
1781
|
at?: Timestamp;
|
1782
1782
|
/**
|
1783
|
-
* The cron expression to use to schedule a recurring scheduled action. Schedule invocations must be separated by at least one hour. Format of cron expressions is
|
1783
|
+
* The cron expression to use to schedule a recurring scheduled action. Schedule invocations must be separated by at least one hour. Times are in UTC. Format of cron expressions is (Minutes Hours Day-of-month Month Day-of-week Year). For example, "(0 10 ? * MON *)". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide.
|
1784
1784
|
*/
|
1785
1785
|
cron?: String;
|
1786
1786
|
}
|
@@ -1803,7 +1803,7 @@ declare namespace RedshiftServerless {
|
|
1803
1803
|
*/
|
1804
1804
|
roleArn?: IamRoleArn;
|
1805
1805
|
/**
|
1806
|
-
* The schedule for a one-time (at format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour. Format of at
|
1806
|
+
* The schedule for a one-time (at timestamp format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour. Times are in UTC. Format of at timestamp is yyyy-mm-ddThh:mm:ss. For example, 2016-03-04T17:27:00. Format of cron expression is (Minutes Hours Day-of-month Month Day-of-week Year). For example, "(0 10 ? * MON *)". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide.
|
1807
1807
|
*/
|
1808
1808
|
schedule?: Schedule;
|
1809
1809
|
/**
|
@@ -2171,7 +2171,7 @@ declare namespace RedshiftServerless {
|
|
2171
2171
|
*/
|
2172
2172
|
roleArn?: IamRoleArn;
|
2173
2173
|
/**
|
2174
|
-
* The schedule for a one-time (at format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour. Format of at
|
2174
|
+
* The schedule for a one-time (at timestamp format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour. Times are in UTC. Format of at timestamp is yyyy-mm-ddThh:mm:ss. For example, 2016-03-04T17:27:00. Format of cron expression is (Minutes Hours Day-of-month Month Day-of-week Year). For example, "(0 10 ? * MON *)". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide.
|
2175
2175
|
*/
|
2176
2176
|
schedule?: Schedule;
|
2177
2177
|
/**
|