cdk-comprehend-s3olap 2.0.41 → 2.0.44
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-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +20 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +117 -6
- package/node_modules/aws-sdk/apis/athena-2017-05-18.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/devops-guru-2020-12-01.min.json +174 -35
- package/node_modules/aws-sdk/apis/devops-guru-2020-12-01.paginators.json +17 -0
- package/node_modules/aws-sdk/apis/docdb-2014-10-31.min.json +11 -0
- package/node_modules/aws-sdk/apis/frauddetector-2019-11-15.min.json +249 -94
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +56 -47
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +260 -59
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +73 -72
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +54 -29
- package/node_modules/aws-sdk/apis/network-firewall-2020-11-12.min.json +91 -48
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +0 -3
- package/node_modules/aws-sdk/apis/sagemaker-edge-2020-09-23.min.json +84 -4
- package/node_modules/aws-sdk/clients/acmpca.d.ts +2 -2
- package/node_modules/aws-sdk/clients/athena.d.ts +127 -0
- package/node_modules/aws-sdk/clients/cloudwatch.d.ts +40 -1
- package/node_modules/aws-sdk/clients/devopsguru.d.ts +188 -0
- package/node_modules/aws-sdk/clients/dms.d.ts +2 -2
- package/node_modules/aws-sdk/clients/docdb.d.ts +20 -0
- package/node_modules/aws-sdk/clients/frauddetector.d.ts +176 -5
- package/node_modules/aws-sdk/clients/glue.d.ts +3 -3
- package/node_modules/aws-sdk/clients/iot.d.ts +14 -2
- package/node_modules/aws-sdk/clients/iotsitewise.d.ts +192 -0
- package/node_modules/aws-sdk/clients/kendra.d.ts +12 -7
- package/node_modules/aws-sdk/clients/networkfirewall.d.ts +53 -2
- package/node_modules/aws-sdk/clients/rds.d.ts +87 -87
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +1 -1
- package/node_modules/aws-sdk/clients/sagemakeredge.d.ts +146 -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 +15 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +235 -85
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +93 -93
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -759,6 +759,10 @@ declare namespace DocDB {
|
|
759
759
|
* The identifier of the cluster that the instance will belong to.
|
760
760
|
*/
|
761
761
|
DBClusterIdentifier: String;
|
762
|
+
/**
|
763
|
+
* A value that indicates whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied.
|
764
|
+
*/
|
765
|
+
CopyTagsToSnapshot?: BooleanOptional;
|
762
766
|
/**
|
763
767
|
* A value that specifies the order in which an Amazon DocumentDB replica is promoted to the primary instance after a failure of the existing primary instance. Default: 1 Valid values: 0-15
|
764
768
|
*/
|
@@ -975,6 +979,10 @@ declare namespace DocDB {
|
|
975
979
|
* Provides a list of the Identity and Access Management (IAM) roles that are associated with the cluster. (IAM) roles that are associated with a cluster grant permission for the cluster to access other Amazon Web Services services on your behalf.
|
976
980
|
*/
|
977
981
|
AssociatedRoles?: DBClusterRoles;
|
982
|
+
/**
|
983
|
+
* Identifies the clone group to which the DB cluster is associated.
|
984
|
+
*/
|
985
|
+
CloneGroupId?: String;
|
978
986
|
/**
|
979
987
|
* Specifies the time when the cluster was created, in Universal Coordinated Time (UTC).
|
980
988
|
*/
|
@@ -1314,6 +1322,10 @@ declare namespace DocDB {
|
|
1314
1322
|
* The identifier of the CA certificate for this DB instance.
|
1315
1323
|
*/
|
1316
1324
|
CACertificateIdentifier?: String;
|
1325
|
+
/**
|
1326
|
+
* A value that indicates whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied.
|
1327
|
+
*/
|
1328
|
+
CopyTagsToSnapshot?: BooleanOptional;
|
1317
1329
|
/**
|
1318
1330
|
* A value that specifies the order in which an Amazon DocumentDB replica is promoted to the primary instance after a failure of the existing primary instance.
|
1319
1331
|
*/
|
@@ -2170,6 +2182,10 @@ declare namespace DocDB {
|
|
2170
2182
|
* Indicates the certificate that needs to be associated with the instance.
|
2171
2183
|
*/
|
2172
2184
|
CACertificateIdentifier?: String;
|
2185
|
+
/**
|
2186
|
+
* A value that indicates whether to copy all tags from the DB instance to snapshots of the DB instance. By default, tags are not copied.
|
2187
|
+
*/
|
2188
|
+
CopyTagsToSnapshot?: BooleanOptional;
|
2173
2189
|
/**
|
2174
2190
|
* A value that specifies the order in which an Amazon DocumentDB replica is promoted to the primary instance after a failure of the existing primary instance. Default: 1 Valid values: 0-15
|
2175
2191
|
*/
|
@@ -2564,6 +2580,10 @@ declare namespace DocDB {
|
|
2564
2580
|
* The name of the new cluster to be created. Constraints: Must contain from 1 to 63 letters, numbers, or hyphens. The first character must be a letter. Cannot end with a hyphen or contain two consecutive hyphens.
|
2565
2581
|
*/
|
2566
2582
|
DBClusterIdentifier: String;
|
2583
|
+
/**
|
2584
|
+
* The type of restore to be performed. You can specify one of the following values: full-copy - The new DB cluster is restored as a full copy of the source DB cluster. copy-on-write - The new DB cluster is restored as a clone of the source DB cluster. Constraints: You can't specify copy-on-write if the engine version of the source DB cluster is earlier than 1.11. If you don't specify a RestoreType value, then the new DB cluster is restored as a full copy of the source DB cluster.
|
2585
|
+
*/
|
2586
|
+
RestoreType?: String;
|
2567
2587
|
/**
|
2568
2588
|
* The identifier of the source cluster from which to restore. Constraints: Must match the identifier of an existing DBCluster.
|
2569
2589
|
*/
|
@@ -553,6 +553,71 @@ declare class FraudDetector extends Service {
|
|
553
553
|
updateVariable(callback?: (err: AWSError, data: FraudDetector.Types.UpdateVariableResult) => void): Request<FraudDetector.Types.UpdateVariableResult, AWSError>;
|
554
554
|
}
|
555
555
|
declare namespace FraudDetector {
|
556
|
+
export interface ATIMetricDataPoint {
|
557
|
+
/**
|
558
|
+
* The challenge rate. This indicates the percentage of login events that the model recommends to challenge such as one-time password, multi-factor authentication, and investigations.
|
559
|
+
*/
|
560
|
+
cr?: float;
|
561
|
+
/**
|
562
|
+
* The anomaly discovery rate. This metric quantifies the percentage of anomalies that can be detected by the model at the selected score threshold. A lower score threshold increases the percentage of anomalies captured by the model, but would also require challenging a larger percentage of login events, leading to a higher customer friction.
|
563
|
+
*/
|
564
|
+
adr?: float;
|
565
|
+
/**
|
566
|
+
* The model's threshold that specifies an acceptable fraud capture rate. For example, a threshold of 500 means any model score 500 or above is labeled as fraud.
|
567
|
+
*/
|
568
|
+
threshold?: float;
|
569
|
+
/**
|
570
|
+
* The account takeover discovery rate. This metric quantifies the percentage of account compromise events that can be detected by the model at the selected score threshold. This metric is only available if 50 or more entities with at-least one labeled account takeover event is present in the ingested dataset.
|
571
|
+
*/
|
572
|
+
atodr?: float;
|
573
|
+
}
|
574
|
+
export type ATIMetricDataPointsList = ATIMetricDataPoint[];
|
575
|
+
export interface ATIModelPerformance {
|
576
|
+
/**
|
577
|
+
* The anomaly separation index (ASI) score. This metric summarizes the overall ability of the model to separate anomalous activities from the normal behavior. Depending on the business, a large fraction of these anomalous activities can be malicious and correspond to the account takeover attacks. A model with no separability power will have the lowest possible ASI score of 0.5, whereas the a model with a high separability power will have the highest possible ASI score of 1.0
|
578
|
+
*/
|
579
|
+
asi?: float;
|
580
|
+
}
|
581
|
+
export interface ATITrainingMetricsValue {
|
582
|
+
/**
|
583
|
+
* The model's performance metrics data points.
|
584
|
+
*/
|
585
|
+
metricDataPoints?: ATIMetricDataPointsList;
|
586
|
+
/**
|
587
|
+
* The model's overall performance scores.
|
588
|
+
*/
|
589
|
+
modelPerformance?: ATIModelPerformance;
|
590
|
+
}
|
591
|
+
export interface AggregatedLogOddsMetric {
|
592
|
+
/**
|
593
|
+
* The names of all the variables.
|
594
|
+
*/
|
595
|
+
variableNames: ListOfStrings;
|
596
|
+
/**
|
597
|
+
* The relative importance of the variables in the list to the other event variable.
|
598
|
+
*/
|
599
|
+
aggregatedVariablesImportance: float;
|
600
|
+
}
|
601
|
+
export interface AggregatedVariablesImpactExplanation {
|
602
|
+
/**
|
603
|
+
* The names of all the event variables that were used to derive the aggregated variables.
|
604
|
+
*/
|
605
|
+
eventVariableNames?: ListOfStrings;
|
606
|
+
/**
|
607
|
+
* The relative impact of the aggregated variables in terms of magnitude on the prediction scores.
|
608
|
+
*/
|
609
|
+
relativeImpact?: string;
|
610
|
+
/**
|
611
|
+
* The raw, uninterpreted value represented as log-odds of the fraud. These values are usually between -10 to +10, but range from -infinity to +infinity. A positive value indicates that the variables drove the risk score up. A negative value indicates that the variables drove the risk score down.
|
612
|
+
*/
|
613
|
+
logOddsImpact?: float;
|
614
|
+
}
|
615
|
+
export interface AggregatedVariablesImportanceMetrics {
|
616
|
+
/**
|
617
|
+
* List of variables' metrics.
|
618
|
+
*/
|
619
|
+
logOddsMetrics?: ListOfAggregatedLogOddsMetrics;
|
620
|
+
}
|
556
621
|
export type AsyncJobStatus = "IN_PROGRESS_INITIALIZING"|"IN_PROGRESS"|"CANCEL_IN_PROGRESS"|"CANCELED"|"COMPLETE"|"FAILED"|string;
|
557
622
|
export interface BatchCreateVariableError {
|
558
623
|
/**
|
@@ -1004,7 +1069,7 @@ declare namespace FraudDetector {
|
|
1004
1069
|
export type DataType = "STRING"|"INTEGER"|"FLOAT"|"BOOLEAN"|string;
|
1005
1070
|
export interface DataValidationMetrics {
|
1006
1071
|
/**
|
1007
|
-
* The file-specific model training validation messages.
|
1072
|
+
* The file-specific model training data validation messages.
|
1008
1073
|
*/
|
1009
1074
|
fileLevelMessages?: fileValidationMessageList;
|
1010
1075
|
/**
|
@@ -2231,7 +2296,7 @@ declare namespace FraudDetector {
|
|
2231
2296
|
/**
|
2232
2297
|
* The label mapper maps the Amazon Fraud Detector supported model classification labels (FRAUD, LEGIT) to the appropriate event type labels. For example, if "FRAUD" and "LEGIT" are Amazon Fraud Detector supported labels, this mapper could be: {"FRAUD" => ["0"], "LEGIT" => ["1"]} or {"FRAUD" => ["false"], "LEGIT" => ["true"]} or {"FRAUD" => ["fraud", "abuse"], "LEGIT" => ["legit", "safe"]}. The value part of the mapper is a list, because you may have multiple label variants from your event type for a single Amazon Fraud Detector label.
|
2233
2298
|
*/
|
2234
|
-
labelMapper
|
2299
|
+
labelMapper?: labelMapper;
|
2235
2300
|
/**
|
2236
2301
|
* The action to take for unlabeled events.
|
2237
2302
|
*/
|
@@ -2278,6 +2343,8 @@ declare namespace FraudDetector {
|
|
2278
2343
|
*/
|
2279
2344
|
nextToken?: string;
|
2280
2345
|
}
|
2346
|
+
export type ListOfAggregatedLogOddsMetrics = AggregatedLogOddsMetric[];
|
2347
|
+
export type ListOfAggregatedVariablesImpactExplanations = AggregatedVariablesImpactExplanation[];
|
2281
2348
|
export type ListOfEvaluatedExternalModels = EvaluatedExternalModel[];
|
2282
2349
|
export type ListOfEvaluatedModelVersions = EvaluatedModelVersion[];
|
2283
2350
|
export type ListOfEventPredictionSummaries = EventPredictionSummary[];
|
@@ -2438,7 +2505,7 @@ declare namespace FraudDetector {
|
|
2438
2505
|
scores?: ModelPredictionMap;
|
2439
2506
|
}
|
2440
2507
|
export type ModelSource = "SAGEMAKER"|string;
|
2441
|
-
export type ModelTypeEnum = "ONLINE_FRAUD_INSIGHTS"|"TRANSACTION_FRAUD_INSIGHTS"|string;
|
2508
|
+
export type ModelTypeEnum = "ONLINE_FRAUD_INSIGHTS"|"TRANSACTION_FRAUD_INSIGHTS"|"ACCOUNT_TAKEOVER_INSIGHTS"|string;
|
2442
2509
|
export interface ModelVersion {
|
2443
2510
|
/**
|
2444
2511
|
* The model ID.
|
@@ -2506,6 +2573,10 @@ declare namespace FraudDetector {
|
|
2506
2573
|
* The model version ARN.
|
2507
2574
|
*/
|
2508
2575
|
arn?: fraudDetectorArn;
|
2576
|
+
/**
|
2577
|
+
* The training result details. The details include the relative importance of the variables.
|
2578
|
+
*/
|
2579
|
+
trainingResultV2?: TrainingResultV2;
|
2509
2580
|
}
|
2510
2581
|
export interface ModelVersionEvaluation {
|
2511
2582
|
/**
|
@@ -2524,6 +2595,41 @@ declare namespace FraudDetector {
|
|
2524
2595
|
export type ModelVersionStatus = "ACTIVE"|"INACTIVE"|"TRAINING_CANCELLED"|string;
|
2525
2596
|
export type NameList = string[];
|
2526
2597
|
export type NonEmptyListOfStrings = string[];
|
2598
|
+
export interface OFIMetricDataPoint {
|
2599
|
+
/**
|
2600
|
+
* The false positive rate. This is the percentage of total legitimate events that are incorrectly predicted as fraud.
|
2601
|
+
*/
|
2602
|
+
fpr?: float;
|
2603
|
+
/**
|
2604
|
+
* The percentage of fraud events correctly predicted as fraudulent as compared to all events predicted as fraudulent.
|
2605
|
+
*/
|
2606
|
+
precision?: float;
|
2607
|
+
/**
|
2608
|
+
* The true positive rate. This is the percentage of total fraud the model detects. Also known as capture rate.
|
2609
|
+
*/
|
2610
|
+
tpr?: float;
|
2611
|
+
/**
|
2612
|
+
* The model threshold that specifies an acceptable fraud capture rate. For example, a threshold of 500 means any model score 500 or above is labeled as fraud.
|
2613
|
+
*/
|
2614
|
+
threshold?: float;
|
2615
|
+
}
|
2616
|
+
export type OFIMetricDataPointsList = OFIMetricDataPoint[];
|
2617
|
+
export interface OFIModelPerformance {
|
2618
|
+
/**
|
2619
|
+
* The area under the curve (auc). This summarizes the total positive rate (tpr) and false positive rate (FPR) across all possible model score thresholds.
|
2620
|
+
*/
|
2621
|
+
auc?: float;
|
2622
|
+
}
|
2623
|
+
export interface OFITrainingMetricsValue {
|
2624
|
+
/**
|
2625
|
+
* The model's performance metrics data points.
|
2626
|
+
*/
|
2627
|
+
metricDataPoints?: OFIMetricDataPointsList;
|
2628
|
+
/**
|
2629
|
+
* The model's overall performance score.
|
2630
|
+
*/
|
2631
|
+
modelPerformance?: OFIModelPerformance;
|
2632
|
+
}
|
2527
2633
|
export interface Outcome {
|
2528
2634
|
/**
|
2529
2635
|
* The outcome name.
|
@@ -2553,6 +2659,10 @@ declare namespace FraudDetector {
|
|
2553
2659
|
* The details of the event variable's impact on the prediction score.
|
2554
2660
|
*/
|
2555
2661
|
variableImpactExplanations?: listOfVariableImpactExplanations;
|
2662
|
+
/**
|
2663
|
+
* The details of the aggregated variables impact on the prediction score. Account Takeover Insights (ATI) model uses event variables from the login data you provide to continuously calculate a set of variables (aggregated variables) based on historical events. For example, your ATI model might calculate the number of times an user has logged in using the same IP address. In this case, event variables used to derive the aggregated variables are IP address and user.
|
2664
|
+
*/
|
2665
|
+
aggregatedVariablesImpactExplanations?: ListOfAggregatedVariablesImpactExplanations;
|
2556
2666
|
}
|
2557
2667
|
export interface PredictionTimeRange {
|
2558
2668
|
/**
|
@@ -2806,6 +2916,41 @@ declare namespace FraudDetector {
|
|
2806
2916
|
}
|
2807
2917
|
export interface SendEventResult {
|
2808
2918
|
}
|
2919
|
+
export interface TFIMetricDataPoint {
|
2920
|
+
/**
|
2921
|
+
* The false positive rate. This is the percentage of total legitimate events that are incorrectly predicted as fraud.
|
2922
|
+
*/
|
2923
|
+
fpr?: float;
|
2924
|
+
/**
|
2925
|
+
* The percentage of fraud events correctly predicted as fraudulent as compared to all events predicted as fraudulent.
|
2926
|
+
*/
|
2927
|
+
precision?: float;
|
2928
|
+
/**
|
2929
|
+
* The true positive rate. This is the percentage of total fraud the model detects. Also known as capture rate.
|
2930
|
+
*/
|
2931
|
+
tpr?: float;
|
2932
|
+
/**
|
2933
|
+
* The model threshold that specifies an acceptable fraud capture rate. For example, a threshold of 500 means any model score 500 or above is labeled as fraud.
|
2934
|
+
*/
|
2935
|
+
threshold?: float;
|
2936
|
+
}
|
2937
|
+
export type TFIMetricDataPointsList = TFIMetricDataPoint[];
|
2938
|
+
export interface TFIModelPerformance {
|
2939
|
+
/**
|
2940
|
+
* The area under the curve (auc). This summarizes the total positive rate (tpr) and false positive rate (FPR) across all possible model score thresholds.
|
2941
|
+
*/
|
2942
|
+
auc?: float;
|
2943
|
+
}
|
2944
|
+
export interface TFITrainingMetricsValue {
|
2945
|
+
/**
|
2946
|
+
* The model's performance metrics data points.
|
2947
|
+
*/
|
2948
|
+
metricDataPoints?: TFIMetricDataPointsList;
|
2949
|
+
/**
|
2950
|
+
* The model performance score.
|
2951
|
+
*/
|
2952
|
+
modelPerformance?: TFIModelPerformance;
|
2953
|
+
}
|
2809
2954
|
export interface Tag {
|
2810
2955
|
/**
|
2811
2956
|
* A tag key.
|
@@ -2834,7 +2979,7 @@ declare namespace FraudDetector {
|
|
2834
2979
|
* The training data schema variables.
|
2835
2980
|
*/
|
2836
2981
|
modelVariables: ListOfStrings;
|
2837
|
-
labelSchema
|
2982
|
+
labelSchema?: LabelSchema;
|
2838
2983
|
}
|
2839
2984
|
export type TrainingDataSourceEnum = "EXTERNAL_EVENTS"|"INGESTED_EVENTS"|string;
|
2840
2985
|
export interface TrainingMetrics {
|
@@ -2847,6 +2992,20 @@ declare namespace FraudDetector {
|
|
2847
2992
|
*/
|
2848
2993
|
metricDataPoints?: metricDataPointsList;
|
2849
2994
|
}
|
2995
|
+
export interface TrainingMetricsV2 {
|
2996
|
+
/**
|
2997
|
+
* The Online Fraud Insights (OFI) model training metric details.
|
2998
|
+
*/
|
2999
|
+
ofi?: OFITrainingMetricsValue;
|
3000
|
+
/**
|
3001
|
+
* The Transaction Fraud Insights (TFI) model training metric details.
|
3002
|
+
*/
|
3003
|
+
tfi?: TFITrainingMetricsValue;
|
3004
|
+
/**
|
3005
|
+
* The Account Takeover Insights (ATI) model training metric details.
|
3006
|
+
*/
|
3007
|
+
ati?: ATITrainingMetricsValue;
|
3008
|
+
}
|
2850
3009
|
export interface TrainingResult {
|
2851
3010
|
/**
|
2852
3011
|
* The validation metrics.
|
@@ -2861,6 +3020,18 @@ declare namespace FraudDetector {
|
|
2861
3020
|
*/
|
2862
3021
|
variableImportanceMetrics?: VariableImportanceMetrics;
|
2863
3022
|
}
|
3023
|
+
export interface TrainingResultV2 {
|
3024
|
+
dataValidationMetrics?: DataValidationMetrics;
|
3025
|
+
/**
|
3026
|
+
* The training metric details.
|
3027
|
+
*/
|
3028
|
+
trainingMetricsV2?: TrainingMetricsV2;
|
3029
|
+
variableImportanceMetrics?: VariableImportanceMetrics;
|
3030
|
+
/**
|
3031
|
+
* The variable importance metrics of the aggregated variables. Account Takeover Insights (ATI) model uses event variables from the login data you provide to continuously calculate a set of variables (aggregated variables) based on historical events. For example, your ATI model might calculate the number of times an user has logged in using the same IP address. In this case, event variables used to derive the aggregated variables are IP address and user.
|
3032
|
+
*/
|
3033
|
+
aggregatedVariablesImportanceMetrics?: AggregatedVariablesImportanceMetrics;
|
3034
|
+
}
|
2864
3035
|
export type UnlabeledEventsTreatment = "IGNORE"|"FRAUD"|"LEGIT"|string;
|
2865
3036
|
export interface UntagResourceRequest {
|
2866
3037
|
/**
|
@@ -3212,7 +3383,7 @@ declare namespace FraudDetector {
|
|
3212
3383
|
export type identifier = string;
|
3213
3384
|
export type integer = number;
|
3214
3385
|
export type labelList = Label[];
|
3215
|
-
export type labelMapper = {[key: string]:
|
3386
|
+
export type labelMapper = {[key: string]: ListOfStrings};
|
3216
3387
|
export type labelsMaxResults = number;
|
3217
3388
|
export type listOfEntities = Entity[];
|
3218
3389
|
export type listOfVariableImpactExplanations = VariableImpactExplanation[];
|
@@ -7117,7 +7117,7 @@ declare namespace Glue {
|
|
7117
7117
|
*/
|
7118
7118
|
ExecutionTime?: ExecutionTime;
|
7119
7119
|
/**
|
7120
|
-
* The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status.
|
7120
|
+
* The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. This value overrides the timeout value set in the parent job. Streaming jobs do not have a timeout. The default for non-streaming jobs is 2,880 minutes (48 hours).
|
7121
7121
|
*/
|
7122
7122
|
Timeout?: Timeout;
|
7123
7123
|
/**
|
@@ -7149,7 +7149,7 @@ declare namespace Glue {
|
|
7149
7149
|
*/
|
7150
7150
|
GlueVersion?: GlueVersionString;
|
7151
7151
|
/**
|
7152
|
-
* This field populates only
|
7152
|
+
* This field populates only for Auto Scaling job runs, and represents the total time each executor ran during the lifecycle of a job run in seconds, multiplied by a DPU factor (1 for G.1X, 2 for G.2X, or 0.25 for G.025X workers). This value may be different than the executionEngineRuntime * MaxCapacity as in the case of Auto Scaling jobs, as the number of executors running at a given time may be less than the MaxCapacity. Therefore, it is possible that the value of DPUSeconds is less than executionEngineRuntime * MaxCapacity.
|
7153
7153
|
*/
|
7154
7154
|
DPUSeconds?: NullableDouble;
|
7155
7155
|
}
|
@@ -9920,7 +9920,7 @@ declare namespace Glue {
|
|
9920
9920
|
*/
|
9921
9921
|
AllocatedCapacity?: IntegerValue;
|
9922
9922
|
/**
|
9923
|
-
* The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status.
|
9923
|
+
* The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. This value overrides the timeout value set in the parent job. Streaming jobs do not have a timeout. The default for non-streaming jobs is 2,880 minutes (48 hours).
|
9924
9924
|
*/
|
9925
9925
|
Timeout?: Timeout;
|
9926
9926
|
/**
|
@@ -52,11 +52,11 @@ declare class Iot extends Service {
|
|
52
52
|
*/
|
53
53
|
attachPolicy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
54
54
|
/**
|
55
|
-
* Attaches the specified policy to the specified principal (certificate or other credential). Note: This action is deprecated.
|
55
|
+
* Attaches the specified policy to the specified principal (certificate or other credential). Note: This action is deprecated and works as expected for backward compatibility, but we won't add enhancements. Use AttachPolicy instead. Requires permission to access the AttachPrincipalPolicy action.
|
56
56
|
*/
|
57
57
|
attachPrincipalPolicy(params: Iot.Types.AttachPrincipalPolicyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
58
58
|
/**
|
59
|
-
* Attaches the specified policy to the specified principal (certificate or other credential). Note: This action is deprecated.
|
59
|
+
* Attaches the specified policy to the specified principal (certificate or other credential). Note: This action is deprecated and works as expected for backward compatibility, but we won't add enhancements. Use AttachPolicy instead. Requires permission to access the AttachPrincipalPolicy action.
|
60
60
|
*/
|
61
61
|
attachPrincipalPolicy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
62
62
|
/**
|
@@ -6395,6 +6395,12 @@ declare namespace Iot {
|
|
6395
6395
|
export type IndexNamesList = IndexName[];
|
6396
6396
|
export type IndexSchema = string;
|
6397
6397
|
export type IndexStatus = "ACTIVE"|"BUILDING"|"REBUILDING"|string;
|
6398
|
+
export interface IndexingFilter {
|
6399
|
+
/**
|
6400
|
+
* The shadow names that you select to index. The default maximum number of shadow names for indexing is 10. To increase the limit, see Amazon Web Services IoT Device Management Quotas in the Amazon Web Services General Reference.
|
6401
|
+
*/
|
6402
|
+
namedShadowNames?: NamedShadowNamesFilter;
|
6403
|
+
}
|
6398
6404
|
export type InlineDocument = string;
|
6399
6405
|
export type InputName = string;
|
6400
6406
|
export interface IotAnalyticsAction {
|
@@ -8574,6 +8580,7 @@ declare namespace Iot {
|
|
8574
8580
|
export type MqttPassword = Buffer|Uint8Array|Blob|string;
|
8575
8581
|
export type MqttUsername = string;
|
8576
8582
|
export type NamedShadowIndexingMode = "OFF"|"ON"|string;
|
8583
|
+
export type NamedShadowNamesFilter = ShadowName[];
|
8577
8584
|
export type NamespaceId = string;
|
8578
8585
|
export type NextToken = string;
|
8579
8586
|
export type NonCompliantChecksCount = number;
|
@@ -9539,6 +9546,7 @@ declare namespace Iot {
|
|
9539
9546
|
*/
|
9540
9547
|
disableAllLogs?: DisableAllLogs;
|
9541
9548
|
}
|
9549
|
+
export type ShadowName = string;
|
9542
9550
|
export interface SigV4Authorization {
|
9543
9551
|
/**
|
9544
9552
|
* The signing region.
|
@@ -10219,6 +10227,10 @@ declare namespace Iot {
|
|
10219
10227
|
* Contains custom field names and their data type.
|
10220
10228
|
*/
|
10221
10229
|
customFields?: Fields;
|
10230
|
+
/**
|
10231
|
+
* Provides additional filters for specific data sources. Named shadow is the only data source that currently supports and requires a filter. To add named shadows to your fleet indexing configuration, set namedShadowIndexingMode to be ON and specify your shadow names in filter.
|
10232
|
+
*/
|
10233
|
+
filter?: IndexingFilter;
|
10222
10234
|
}
|
10223
10235
|
export type ThingIndexingMode = "OFF"|"REGISTRY"|"REGISTRY_AND_SHADOW"|string;
|
10224
10236
|
export type ThingName = string;
|