cdk-lambda-subminute 2.0.431 → 2.0.433
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 +55 -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-agent-2023-06-05.min.json +1 -2
- package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +61 -57
- package/node_modules/aws-sdk/apis/emr-serverless-2021-07-13.min.json +62 -55
- package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.min.json +602 -82
- package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +8 -0
- package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +23 -3
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +35 -25
- package/node_modules/aws-sdk/apis/m2-2021-04-28.min.json +83 -6
- package/node_modules/aws-sdk/apis/mediapackagev2-2022-12-25.min.json +131 -8
- package/node_modules/aws-sdk/apis/outposts-2019-12-03.min.json +299 -43
- package/node_modules/aws-sdk/apis/outposts-2019-12-03.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/qbusiness-2023-11-27.min.json +120 -87
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +1182 -1038
- package/node_modules/aws-sdk/apis/rolesanywhere-2018-05-10.min.json +167 -64
- package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.min.json +203 -82
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +262 -128
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.paginators.json +6 -0
- package/node_modules/aws-sdk/clients/bedrockagent.d.ts +35 -35
- package/node_modules/aws-sdk/clients/drs.d.ts +18 -1
- package/node_modules/aws-sdk/clients/ec2.d.ts +33 -33
- package/node_modules/aws-sdk/clients/emrserverless.d.ts +19 -1
- package/node_modules/aws-sdk/clients/entityresolution.d.ts +604 -19
- package/node_modules/aws-sdk/clients/guardduty.d.ts +9 -1
- package/node_modules/aws-sdk/clients/iotwireless.d.ts +71 -40
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +18 -2
- package/node_modules/aws-sdk/clients/m2.d.ts +88 -1
- package/node_modules/aws-sdk/clients/mediapackagev2.d.ts +154 -0
- package/node_modules/aws-sdk/clients/outposts.d.ts +263 -4
- package/node_modules/aws-sdk/clients/qbusiness.d.ts +381 -321
- package/node_modules/aws-sdk/clients/quicksight.d.ts +193 -10
- package/node_modules/aws-sdk/clients/rolesanywhere.d.ts +81 -0
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +6 -6
- package/node_modules/aws-sdk/clients/wellarchitected.d.ts +182 -4
- package/node_modules/aws-sdk/clients/workspaces.d.ts +180 -0
- 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 +21 -21
- package/node_modules/aws-sdk/dist/aws-sdk.js +7 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +8 -8
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/region_config_data.json +4 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -347,6 +347,8 @@ declare namespace EMRServerless {
|
|
347
347
|
*/
|
348
348
|
monitoringConfiguration?: MonitoringConfiguration;
|
349
349
|
}
|
350
|
+
export type ConfigurationPropertyKey = string;
|
351
|
+
export type ConfigurationPropertyValue = string;
|
350
352
|
export type CpuSize = string;
|
351
353
|
export interface CreateApplicationRequest {
|
352
354
|
/**
|
@@ -434,6 +436,7 @@ declare namespace EMRServerless {
|
|
434
436
|
export interface DeleteApplicationResponse {
|
435
437
|
}
|
436
438
|
export type DiskSize = string;
|
439
|
+
export type DiskType = string;
|
437
440
|
export type Double = number;
|
438
441
|
export type Duration = number;
|
439
442
|
export type EncryptionKeyArn = string;
|
@@ -790,6 +793,10 @@ declare namespace EMRServerless {
|
|
790
793
|
* The Amazon CloudWatch configuration for monitoring logs. You can configure your jobs to send log information to CloudWatch.
|
791
794
|
*/
|
792
795
|
cloudWatchLoggingConfiguration?: CloudWatchLoggingConfiguration;
|
796
|
+
/**
|
797
|
+
* The monitoring configuration object you can configure to send metrics to Amazon Managed Service for Prometheus for a job run.
|
798
|
+
*/
|
799
|
+
prometheusMonitoringConfiguration?: PrometheusMonitoringConfiguration;
|
793
800
|
}
|
794
801
|
export interface NetworkConfiguration {
|
795
802
|
/**
|
@@ -802,6 +809,13 @@ declare namespace EMRServerless {
|
|
802
809
|
securityGroupIds?: SecurityGroupIds;
|
803
810
|
}
|
804
811
|
export type NextToken = string;
|
812
|
+
export interface PrometheusMonitoringConfiguration {
|
813
|
+
/**
|
814
|
+
* The remote write URL in the Amazon Managed Service for Prometheus workspace to send metrics to.
|
815
|
+
*/
|
816
|
+
remoteWriteUrl?: PrometheusUrlString;
|
817
|
+
}
|
818
|
+
export type PrometheusUrlString = string;
|
805
819
|
export type Query = string;
|
806
820
|
export type ReleaseLabel = string;
|
807
821
|
export type RequestIdentityUserArn = string;
|
@@ -832,7 +846,7 @@ declare namespace EMRServerless {
|
|
832
846
|
}
|
833
847
|
export type SecurityGroupIds = SecurityGroupString[];
|
834
848
|
export type SecurityGroupString = string;
|
835
|
-
export type SensitivePropertiesMap = {[key: string]:
|
849
|
+
export type SensitivePropertiesMap = {[key: string]: ConfigurationPropertyValue};
|
836
850
|
export interface SparkSubmit {
|
837
851
|
/**
|
838
852
|
* The entry point for the Spark submit job run.
|
@@ -1031,6 +1045,10 @@ declare namespace EMRServerless {
|
|
1031
1045
|
* The disk requirements for every worker instance of the worker type.
|
1032
1046
|
*/
|
1033
1047
|
disk?: DiskSize;
|
1048
|
+
/**
|
1049
|
+
* The disk type for every worker instance of the work type. Shuffle optimized disks have higher performance characteristics and are better for shuffle heavy workloads. Default is STANDARD.
|
1050
|
+
*/
|
1051
|
+
diskType?: DiskType;
|
1034
1052
|
}
|
1035
1053
|
export interface WorkerTypeSpecification {
|
1036
1054
|
/**
|