cdk-lambda-subminute 2.0.389 → 2.0.390
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/batch-2016-08-10.min.json +387 -115
- package/node_modules/aws-sdk/apis/bedrock-agent-runtime-2023-07-26.min.json +28 -21
- package/node_modules/aws-sdk/apis/ce-2017-10-25.min.json +140 -105
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +61 -61
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +12 -12
- package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +126 -123
- package/node_modules/aws-sdk/clients/batch.d.ts +395 -36
- package/node_modules/aws-sdk/clients/bedrockagentruntime.d.ts +7 -1
- package/node_modules/aws-sdk/clients/costexplorer.d.ts +40 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +2 -1
- package/node_modules/aws-sdk/clients/iot.d.ts +11 -10
- package/node_modules/aws-sdk/clients/wafv2.d.ts +5 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +7 -7
- package/node_modules/aws-sdk/dist/aws-sdk.js +216 -181
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +102 -102
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -186,12 +186,17 @@ declare namespace BedrockAgentRuntime {
|
|
186
186
|
export interface KnowledgeBaseRetrieveAndGenerateConfiguration {
|
187
187
|
knowledgeBaseId: KnowledgeBaseId;
|
188
188
|
modelArn: BedrockModelArn;
|
189
|
+
retrievalConfiguration?: KnowledgeBaseRetrievalConfiguration;
|
189
190
|
}
|
190
191
|
export interface KnowledgeBaseVectorSearchConfiguration {
|
191
192
|
/**
|
192
193
|
* Top-K results to retrieve from knowledge base.
|
193
194
|
*/
|
194
|
-
numberOfResults
|
195
|
+
numberOfResults?: KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger;
|
196
|
+
/**
|
197
|
+
* Override the type of query to be performed on data store
|
198
|
+
*/
|
199
|
+
overrideSearchType?: SearchType;
|
195
200
|
}
|
196
201
|
export type KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger = number;
|
197
202
|
export type LambdaArn = string;
|
@@ -358,6 +363,7 @@ declare namespace BedrockAgentRuntime {
|
|
358
363
|
location?: RetrievalResultLocation;
|
359
364
|
}
|
360
365
|
export type RetrievedReferences = RetrievedReference[];
|
366
|
+
export type SearchType = "HYBRID"|"SEMANTIC"|string;
|
361
367
|
export interface ServiceQuotaExceededException {
|
362
368
|
message?: NonBlankString;
|
363
369
|
}
|
@@ -91,6 +91,14 @@ declare class CostExplorer extends Service {
|
|
91
91
|
* Retrieves the cost anomaly subscription objects for your account. You can filter using a list of cost anomaly monitor Amazon Resource Names (ARNs).
|
92
92
|
*/
|
93
93
|
getAnomalySubscriptions(callback?: (err: AWSError, data: CostExplorer.Types.GetAnomalySubscriptionsResponse) => void): Request<CostExplorer.Types.GetAnomalySubscriptionsResponse, AWSError>;
|
94
|
+
/**
|
95
|
+
* Retrieves estimated usage records for hourly granularity or resource-level data at daily granularity.
|
96
|
+
*/
|
97
|
+
getApproximateUsageRecords(params: CostExplorer.Types.GetApproximateUsageRecordsRequest, callback?: (err: AWSError, data: CostExplorer.Types.GetApproximateUsageRecordsResponse) => void): Request<CostExplorer.Types.GetApproximateUsageRecordsResponse, AWSError>;
|
98
|
+
/**
|
99
|
+
* Retrieves estimated usage records for hourly granularity or resource-level data at daily granularity.
|
100
|
+
*/
|
101
|
+
getApproximateUsageRecords(callback?: (err: AWSError, data: CostExplorer.Types.GetApproximateUsageRecordsResponse) => void): Request<CostExplorer.Types.GetApproximateUsageRecordsResponse, AWSError>;
|
94
102
|
/**
|
95
103
|
* Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric that you want the request to return. For example, you can specify BlendedCosts or UsageQuantity. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Management account in an organization in Organizations have access to all member accounts. For information about filter limitations, see Quotas and restrictions in the Billing and Cost Management User Guide.
|
96
104
|
*/
|
@@ -452,6 +460,8 @@ declare namespace CostExplorer {
|
|
452
460
|
}
|
453
461
|
export type AnomalySubscriptionFrequency = "DAILY"|"IMMEDIATE"|"WEEKLY"|string;
|
454
462
|
export type AnomalySubscriptions = AnomalySubscription[];
|
463
|
+
export type ApproximateUsageRecordsPerService = {[key: string]: NonNegativeLong};
|
464
|
+
export type ApproximationDimension = "SERVICE"|"RESOURCE"|string;
|
455
465
|
export type Arn = string;
|
456
466
|
export type AttributeType = string;
|
457
467
|
export type AttributeValue = string;
|
@@ -1262,6 +1272,34 @@ declare namespace CostExplorer {
|
|
1262
1272
|
*/
|
1263
1273
|
NextPageToken?: NextPageToken;
|
1264
1274
|
}
|
1275
|
+
export interface GetApproximateUsageRecordsRequest {
|
1276
|
+
/**
|
1277
|
+
* How granular you want the data to be. You can enable data at hourly or daily granularity.
|
1278
|
+
*/
|
1279
|
+
Granularity: Granularity;
|
1280
|
+
/**
|
1281
|
+
* The service metadata for the service or services you want to query. If not specified, all elements are returned.
|
1282
|
+
*/
|
1283
|
+
Services?: UsageServices;
|
1284
|
+
/**
|
1285
|
+
* The service to evaluate for the usage records. You can choose resource-level data at daily granularity, or hourly granularity with or without resource-level data.
|
1286
|
+
*/
|
1287
|
+
ApproximationDimension: ApproximationDimension;
|
1288
|
+
}
|
1289
|
+
export interface GetApproximateUsageRecordsResponse {
|
1290
|
+
/**
|
1291
|
+
* The service metadata for the service or services in the response.
|
1292
|
+
*/
|
1293
|
+
Services?: ApproximateUsageRecordsPerService;
|
1294
|
+
/**
|
1295
|
+
* The total number of usage records for all services in the services list.
|
1296
|
+
*/
|
1297
|
+
TotalRecords?: NonNegativeLong;
|
1298
|
+
/**
|
1299
|
+
* The lookback period that's used for the estimation.
|
1300
|
+
*/
|
1301
|
+
LookbackPeriod?: DateInterval;
|
1302
|
+
}
|
1265
1303
|
export interface GetCostAndUsageRequest {
|
1266
1304
|
/**
|
1267
1305
|
* Sets the start date and end date for retrieving Amazon Web Services costs. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.
|
@@ -2158,6 +2196,7 @@ declare namespace CostExplorer {
|
|
2158
2196
|
}
|
2159
2197
|
export type NextPageToken = string;
|
2160
2198
|
export type NonNegativeInteger = number;
|
2199
|
+
export type NonNegativeLong = number;
|
2161
2200
|
export type NullableNonNegativeDouble = number;
|
2162
2201
|
export type NumericOperator = "EQUAL"|"GREATER_THAN_OR_EQUAL"|"LESS_THAN_OR_EQUAL"|"GREATER_THAN"|"LESS_THAN"|"BETWEEN"|string;
|
2163
2202
|
export type OfferingClass = "STANDARD"|"CONVERTIBLE"|string;
|
@@ -3338,6 +3377,7 @@ declare namespace CostExplorer {
|
|
3338
3377
|
*/
|
3339
3378
|
EffectiveStart?: ZonedDateTime;
|
3340
3379
|
}
|
3380
|
+
export type UsageServices = GenericString[];
|
3341
3381
|
export interface UtilizationByTime {
|
3342
3382
|
/**
|
3343
3383
|
* The period of time that this utilization was used for.
|
@@ -21996,6 +21996,7 @@ declare namespace EC2 {
|
|
21996
21996
|
*/
|
21997
21997
|
NextToken?: NextToken;
|
21998
21998
|
}
|
21999
|
+
export type GetNetworkInsightsAccessScopeAnalysisFindingsMaxResults = number;
|
21999
22000
|
export interface GetNetworkInsightsAccessScopeAnalysisFindingsRequest {
|
22000
22001
|
/**
|
22001
22002
|
* The ID of the Network Access Scope analysis.
|
@@ -22004,7 +22005,7 @@ declare namespace EC2 {
|
|
22004
22005
|
/**
|
22005
22006
|
* The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
|
22006
22007
|
*/
|
22007
|
-
MaxResults?:
|
22008
|
+
MaxResults?: GetNetworkInsightsAccessScopeAnalysisFindingsMaxResults;
|
22008
22009
|
/**
|
22009
22010
|
* The token for the next page of results.
|
22010
22011
|
*/
|
@@ -2393,7 +2393,7 @@ declare namespace Iot {
|
|
2393
2393
|
*/
|
2394
2394
|
comment?: Comment;
|
2395
2395
|
/**
|
2396
|
-
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is
|
2396
|
+
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.
|
2397
2397
|
*/
|
2398
2398
|
namespaceId?: NamespaceId;
|
2399
2399
|
}
|
@@ -3812,7 +3812,7 @@ declare namespace Iot {
|
|
3812
3812
|
*/
|
3813
3813
|
tags?: TagList;
|
3814
3814
|
/**
|
3815
|
-
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is
|
3815
|
+
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.
|
3816
3816
|
*/
|
3817
3817
|
namespaceId?: NamespaceId;
|
3818
3818
|
/**
|
@@ -4705,7 +4705,7 @@ declare namespace Iot {
|
|
4705
4705
|
*/
|
4706
4706
|
force?: ForceFlag;
|
4707
4707
|
/**
|
4708
|
-
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is
|
4708
|
+
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.
|
4709
4709
|
*/
|
4710
4710
|
namespaceId?: NamespaceId;
|
4711
4711
|
}
|
@@ -4719,7 +4719,7 @@ declare namespace Iot {
|
|
4719
4719
|
*/
|
4720
4720
|
force?: ForceFlag;
|
4721
4721
|
/**
|
4722
|
-
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is
|
4722
|
+
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.
|
4723
4723
|
*/
|
4724
4724
|
namespaceId?: NamespaceId;
|
4725
4725
|
}
|
@@ -7069,7 +7069,7 @@ declare namespace Iot {
|
|
7069
7069
|
*/
|
7070
7070
|
timeoutConfig?: TimeoutConfig;
|
7071
7071
|
/**
|
7072
|
-
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is
|
7072
|
+
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.
|
7073
7073
|
*/
|
7074
7074
|
namespaceId?: NamespaceId;
|
7075
7075
|
/**
|
@@ -8009,7 +8009,7 @@ declare namespace Iot {
|
|
8009
8009
|
*/
|
8010
8010
|
status?: JobExecutionStatus;
|
8011
8011
|
/**
|
8012
|
-
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is
|
8012
|
+
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.
|
8013
8013
|
*/
|
8014
8014
|
namespaceId?: NamespaceId;
|
8015
8015
|
/**
|
@@ -8081,7 +8081,7 @@ declare namespace Iot {
|
|
8081
8081
|
*/
|
8082
8082
|
thingGroupId?: ThingGroupId;
|
8083
8083
|
/**
|
8084
|
-
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is
|
8084
|
+
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.
|
8085
8085
|
*/
|
8086
8086
|
namespaceId?: NamespaceId;
|
8087
8087
|
}
|
@@ -10268,9 +10268,9 @@ declare namespace Iot {
|
|
10268
10268
|
*/
|
10269
10269
|
nextToken?: NextToken;
|
10270
10270
|
/**
|
10271
|
-
* The maximum number of results to return per page at one time. The response might contain fewer results but will never contain more.
|
10271
|
+
* The maximum number of results to return per page at one time. This maximum number cannot exceed 100. The response might contain fewer results but will never contain more. You can use nextToken to retrieve the next set of results until nextToken returns NULL.
|
10272
10272
|
*/
|
10273
|
-
maxResults?:
|
10273
|
+
maxResults?: SearchQueryMaxResults;
|
10274
10274
|
/**
|
10275
10275
|
* The query version.
|
10276
10276
|
*/
|
@@ -10290,6 +10290,7 @@ declare namespace Iot {
|
|
10290
10290
|
*/
|
10291
10291
|
thingGroups?: ThingGroupDocumentList;
|
10292
10292
|
}
|
10293
|
+
export type SearchQueryMaxResults = number;
|
10293
10294
|
export type SearchableAttributes = AttributeName[];
|
10294
10295
|
export type Seconds = number;
|
10295
10296
|
export type SecurityGroupId = string;
|
@@ -11833,7 +11834,7 @@ declare namespace Iot {
|
|
11833
11834
|
*/
|
11834
11835
|
timeoutConfig?: TimeoutConfig;
|
11835
11836
|
/**
|
11836
|
-
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is
|
11837
|
+
* The namespace used to indicate that a job is a customer-managed job. When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format. $aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/ The namespaceId feature is only supported by IoT Greengrass at this time. For more information, see Setting up IoT Greengrass core devices.
|
11837
11838
|
*/
|
11838
11839
|
namespaceId?: NamespaceId;
|
11839
11840
|
/**
|
@@ -1164,6 +1164,7 @@ declare namespace WAFV2 {
|
|
1164
1164
|
export type EntityDescription = string;
|
1165
1165
|
export type EntityId = string;
|
1166
1166
|
export type EntityName = string;
|
1167
|
+
export type EvaluationWindowSec = number;
|
1167
1168
|
export interface ExcludedRule {
|
1168
1169
|
/**
|
1169
1170
|
* The name of the rule whose action you want to override to Count.
|
@@ -2496,6 +2497,10 @@ declare namespace WAFV2 {
|
|
2496
2497
|
* The limit on requests per 5-minute period for a single aggregation instance for the rate-based rule. If the rate-based statement includes a ScopeDownStatement, this limit is applied only to the requests that match the statement. Examples: If you aggregate on just the IP address, this is the limit on requests from any single IP address. If you aggregate on the HTTP method and the query argument name "city", then this is the limit on requests for any single method, city pair.
|
2497
2498
|
*/
|
2498
2499
|
Limit: RateLimit;
|
2500
|
+
/**
|
2501
|
+
* The amount of time, in seconds, that WAF should include in its request counts, looking back from the current time. For example, for a setting of 120, when WAF checks the rate, it counts the requests for the 2 minutes immediately preceding the current time. Valid settings are 60, 120, 300, and 600. This setting doesn't determine how often WAF checks the rate, but how far back it looks each time it checks. WAF checks the rate about every 10 seconds. Default: 300 (5 minutes)
|
2502
|
+
*/
|
2503
|
+
EvaluationWindowSec?: EvaluationWindowSec;
|
2499
2504
|
/**
|
2500
2505
|
* Setting that indicates how to aggregate the request counts. Web requests that are missing any of the components specified in the aggregation keys are omitted from the rate-based rule evaluation and handling. CONSTANT - Count and limit the requests that match the rate-based rule's scope-down statement. With this option, the counted requests aren't further aggregated. The scope-down statement is the only specification used. When the count of all requests that satisfy the scope-down statement goes over the limit, WAF applies the rule action to all requests that satisfy the scope-down statement. With this option, you must configure the ScopeDownStatement property. CUSTOM_KEYS - Aggregate the request counts using one or more web request components as the aggregate keys. With this option, you must specify the aggregate keys in the CustomKeys property. To aggregate on only the IP address or only the forwarded IP address, don't use custom keys. Instead, set the aggregate key type to IP or FORWARDED_IP. FORWARDED_IP - Aggregate the request counts on the first IP address in an HTTP header. With this option, you must specify the header to use in the ForwardedIPConfig property. To aggregate on a combination of the forwarded IP address with other aggregate keys, use CUSTOM_KEYS. IP - Aggregate the request counts on the IP address from the web request origin. To aggregate on a combination of the IP address with other aggregate keys, use CUSTOM_KEYS.
|
2501
2506
|
*/
|