cdk-docker-image-deployment 0.0.156 → 0.0.158

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.
@@ -441,7 +441,7 @@ declare namespace ComputeOptimizer {
441
441
  export type ECSServiceMetricStatistic = "Maximum"|"Average"|string;
442
442
  export interface ECSServiceProjectedMetric {
443
443
  /**
444
- * The name of the projected metric. The following metrics are available: CPU — The percentage of allocated compute units that are currently in use on the ECS service tasks. Memory — The percentage of memory that is currently in use on the ECS service tasks.
444
+ * The name of the projected metric. The following metrics are available: Cpu — The percentage of allocated compute units that are currently in use on the service tasks. Memory — The percentage of memory that's currently in use on the service tasks.
445
445
  */
446
446
  name?: ECSServiceMetricName;
447
447
  /**
@@ -460,7 +460,7 @@ declare namespace ComputeOptimizer {
460
460
  export type ECSServiceProjectedMetrics = ECSServiceProjectedMetric[];
461
461
  export interface ECSServiceProjectedUtilizationMetric {
462
462
  /**
463
- * The name of the projected utilization metric. The following utilization metrics are available: CPU — The percentage of allocated compute units that are currently in use on the ECS service tasks. Memory — The percentage of memory that is currently in use on the ECS service tasks.
463
+ * The name of the projected utilization metric. The following utilization metrics are available: Cpu — The percentage of allocated compute units that are currently in use on the service tasks. Memory — The percentage of memory that's currently in use on the service tasks.
464
464
  */
465
465
  name?: ECSServiceMetricName;
466
466
  /**
@@ -479,47 +479,47 @@ declare namespace ComputeOptimizer {
479
479
  export type ECSServiceProjectedUtilizationMetrics = ECSServiceProjectedUtilizationMetric[];
480
480
  export interface ECSServiceRecommendation {
481
481
  /**
482
- * The Amazon Resource Name (ARN) of the current ECS service. The following is the format of the ARN: arn:aws:ecs:region:aws_account_id:service/cluster-name/service-name
482
+ * The Amazon Resource Name (ARN) of the current Amazon ECS service. The following is the format of the ARN: arn:aws:ecs:region:aws_account_id:service/cluster-name/service-name
483
483
  */
484
484
  serviceArn?: ServiceArn;
485
485
  /**
486
- * The Amazon Web Services account ID of the ECS service.
486
+ * The Amazon Web Services account ID of the Amazon ECS service.
487
487
  */
488
488
  accountId?: AccountId;
489
489
  /**
490
- * The configuration of the current ECS service.
490
+ * The configuration of the current Amazon ECS service.
491
491
  */
492
492
  currentServiceConfiguration?: ServiceConfiguration;
493
493
  /**
494
- * An array of objects that describe the utilization metrics of the ECS service.
494
+ * An array of objects that describe the utilization metrics of the Amazon ECS service.
495
495
  */
496
496
  utilizationMetrics?: ECSServiceUtilizationMetrics;
497
497
  /**
498
- * The number of days the ECS service utilization metrics were analyzed.
498
+ * The number of days the Amazon ECS service utilization metrics were analyzed.
499
499
  */
500
500
  lookbackPeriodInDays?: LookBackPeriodInDays;
501
501
  /**
502
- * The launch type the ECS service is using. Compute Optimizer only supports the Fargate launch type.
502
+ * The launch type the Amazon ECS service is using. Compute Optimizer only supports the Fargate launch type.
503
503
  */
504
504
  launchType?: ECSServiceLaunchType;
505
505
  /**
506
- * The timestamp of when the ECS service recommendation was last generated.
506
+ * The timestamp of when the Amazon ECS service recommendation was last generated.
507
507
  */
508
508
  lastRefreshTimestamp?: LastRefreshTimestamp;
509
509
  /**
510
- * The finding classification of an ECS service. Findings for ECS services include: Underprovisioned — When Compute Optimizer detects that there’s not enough memory or CPU, an ECS service is considered under-provisioned. An under-provisioned ECS service might result in poor application performance. Overprovisioned — When Compute Optimizer detects that there’s excessive memory or CPU, an ECS service is considered over-provisioned. An over-provisioned ECS service might result in additional infrastructure costs. Optimized — When both the CPU and memory of your ECS service meet the performance requirements of your workload, the service is considered optimized.
510
+ * The finding classification of an Amazon ECS service. Findings for Amazon ECS services include: Underprovisioned — When Compute Optimizer detects that there’s not enough memory or CPU, an Amazon ECS service is considered under-provisioned. An under-provisioned service might result in poor application performance. Overprovisioned — When Compute Optimizer detects that there’s excessive memory or CPU, an Amazon ECS service is considered over-provisioned. An over-provisioned service might result in additional infrastructure costs. Optimized — When both the CPU and memory of your Amazon ECS service meet the performance requirements of your workload, the service is considered optimized.
511
511
  */
512
512
  finding?: ECSServiceRecommendationFinding;
513
513
  /**
514
- * The reason for the finding classification of an ECS service. Finding reason codes for ECS services include: CPUUnderprovisioned — The ECS service CPU configuration can be sized up to enhance the performance of your workload. This is identified by analyzing the CPUUtilization metric of the current service during the look-back period. CPUOverprovisioned — The ECS service CPU configuration can be sized down while still meeting the performance requirements of your workload. This is identified by analyzing the CPUUtilization metric of the current service during the look-back period. MemoryUnderprovisioned — The ECS service memory configuration can be sized up to enhance the performance of your workload. This is identified by analyzing the MemoryUtilization metric of the current service during the look-back period. MemoryOverprovisioned — The ECS service memory configuration can be sized down while still meeting the performance requirements of your workload. This is identified by analyzing the MemoryUtilization metric of the current service during the look-back period.
514
+ * The reason for the finding classification of an Amazon ECS service. Finding reason codes for Amazon ECS services include: CPUUnderprovisioned — The service CPU configuration can be sized up to enhance the performance of your workload. This is identified by analyzing the CPUUtilization metric of the current service during the look-back period. CPUOverprovisioned — The service CPU configuration can be sized down while still meeting the performance requirements of your workload. This is identified by analyzing the CPUUtilization metric of the current service during the look-back period. MemoryUnderprovisioned — The service memory configuration can be sized up to enhance the performance of your workload. This is identified by analyzing the MemoryUtilization metric of the current service during the look-back period. MemoryOverprovisioned — The service memory configuration can be sized down while still meeting the performance requirements of your workload. This is identified by analyzing the MemoryUtilization metric of the current service during the look-back period.
515
515
  */
516
516
  findingReasonCodes?: ECSServiceRecommendationFindingReasonCodes;
517
517
  /**
518
- * An array of objects that describe the recommendation options for the ECS service.
518
+ * An array of objects that describe the recommendation options for the Amazon ECS service.
519
519
  */
520
520
  serviceRecommendationOptions?: ECSServiceRecommendationOptions;
521
521
  /**
522
- * The risk of the current ECS service not meeting the performance needs of its workloads. The higher the risk, the more likely the current service can't meet the performance requirements of its workload.
522
+ * The risk of the current Amazon ECS service not meeting the performance needs of its workloads. The higher the risk, the more likely the current service can't meet the performance requirements of its workload.
523
523
  */
524
524
  currentPerformanceRisk?: CurrentPerformanceRisk;
525
525
  }
@@ -540,20 +540,20 @@ declare namespace ComputeOptimizer {
540
540
  export type ECSServiceRecommendationFindingReasonCodes = ECSServiceRecommendationFindingReasonCode[];
541
541
  export interface ECSServiceRecommendationOption {
542
542
  /**
543
- * The memory size of the ECS service recommendation option.
543
+ * The memory size of the Amazon ECS service recommendation option.
544
544
  */
545
545
  memory?: NullableMemory;
546
546
  /**
547
- * The CPU size of the ECS service recommendation option.
547
+ * The CPU size of the Amazon ECS service recommendation option.
548
548
  */
549
549
  cpu?: NullableCpu;
550
550
  savingsOpportunity?: SavingsOpportunity;
551
551
  /**
552
- * An array of objects that describe the projected utilization metrics of the ECS service recommendation option.
552
+ * An array of objects that describe the projected utilization metrics of the Amazon ECS service recommendation option.
553
553
  */
554
554
  projectedUtilizationMetrics?: ECSServiceProjectedUtilizationMetrics;
555
555
  /**
556
- * The CPU and memory size recommendations for the containers within the task of your ECS service.
556
+ * The CPU and memory size recommendations for the containers within the task of your Amazon ECS service.
557
557
  */
558
558
  containerRecommendations?: ContainerRecommendations;
559
559
  }
@@ -561,11 +561,11 @@ declare namespace ComputeOptimizer {
561
561
  export type ECSServiceRecommendations = ECSServiceRecommendation[];
562
562
  export interface ECSServiceRecommendedOptionProjectedMetric {
563
563
  /**
564
- * The recommended CPU size for the ECS service.
564
+ * The recommended CPU size for the Amazon ECS service.
565
565
  */
566
566
  recommendedCpuUnits?: CpuSize;
567
567
  /**
568
- * The recommended memory size for the ECS service.
568
+ * The recommended memory size for the Amazon ECS service.
569
569
  */
570
570
  recommendedMemorySize?: MemorySize;
571
571
  /**
@@ -576,7 +576,7 @@ declare namespace ComputeOptimizer {
576
576
  export type ECSServiceRecommendedOptionProjectedMetrics = ECSServiceRecommendedOptionProjectedMetric[];
577
577
  export interface ECSServiceUtilizationMetric {
578
578
  /**
579
- * The name of the utilization metric. The following utilization metrics are available: Cpu — The amount of CPU units that are used in the service. Memory — The amount of memory that is used in the service.
579
+ * The name of the utilization metric. The following utilization metrics are available: Cpu — The amount of CPU capacity that's used in the service. Memory — The amount of memory that's used in the service.
580
580
  */
581
581
  name?: ECSServiceMetricName;
582
582
  /**
@@ -748,11 +748,11 @@ declare namespace ComputeOptimizer {
748
748
  }
749
749
  export interface ExportECSServiceRecommendationsRequest {
750
750
  /**
751
- * The Amazon Web Services account IDs for the export ECS service recommendations. If your account is the management account or the delegated administrator of an organization, use this parameter to specify the member account you want to export recommendations to. This parameter can't be specified together with the include member accounts parameter. The parameters are mutually exclusive. If this parameter or the include member accounts parameter is omitted, the recommendations for member accounts aren't included in the export. You can specify multiple account IDs per request.
751
+ * The Amazon Web Services account IDs for the export Amazon ECS service recommendations. If your account is the management account or the delegated administrator of an organization, use this parameter to specify the member account you want to export recommendations to. This parameter can't be specified together with the include member accounts parameter. The parameters are mutually exclusive. If this parameter or the include member accounts parameter is omitted, the recommendations for member accounts aren't included in the export. You can specify multiple account IDs per request.
752
752
  */
753
753
  accountIds?: AccountIds;
754
754
  /**
755
- * An array of objects to specify a filter that exports a more specific set of ECS service recommendations.
755
+ * An array of objects to specify a filter that exports a more specific set of Amazon ECS service recommendations.
756
756
  */
757
757
  filters?: ECSServiceRecommendationFilters;
758
758
  /**
@@ -994,7 +994,7 @@ declare namespace ComputeOptimizer {
994
994
  }
995
995
  export interface GetECSServiceRecommendationProjectedMetricsRequest {
996
996
  /**
997
- * The ARN that identifies the ECS service. The following is the format of the ARN: arn:aws:ecs:region:aws_account_id:service/cluster-name/service-name
997
+ * The ARN that identifies the Amazon ECS service. The following is the format of the ARN: arn:aws:ecs:region:aws_account_id:service/cluster-name/service-name
998
998
  */
999
999
  serviceArn: ServiceArn;
1000
1000
  /**
@@ -1022,33 +1022,33 @@ declare namespace ComputeOptimizer {
1022
1022
  }
1023
1023
  export interface GetECSServiceRecommendationsRequest {
1024
1024
  /**
1025
- * The ARN that identifies the ECS service. The following is the format of the ARN: arn:aws:ecs:region:aws_account_id:service/cluster-name/service-name
1025
+ * The ARN that identifies the Amazon ECS service. The following is the format of the ARN: arn:aws:ecs:region:aws_account_id:service/cluster-name/service-name
1026
1026
  */
1027
1027
  serviceArns?: ServiceArns;
1028
1028
  /**
1029
- * The token to advance to the next page of ECS service recommendations.
1029
+ * The token to advance to the next page of Amazon ECS service recommendations.
1030
1030
  */
1031
1031
  nextToken?: NextToken;
1032
1032
  /**
1033
- * The maximum number of ECS service recommendations to return with a single request. To retrieve the remaining results, make another request with the returned nextToken value.
1033
+ * The maximum number of Amazon ECS service recommendations to return with a single request. To retrieve the remaining results, make another request with the returned nextToken value.
1034
1034
  */
1035
1035
  maxResults?: MaxResults;
1036
1036
  /**
1037
- * An array of objects to specify a filter that returns a more specific list of ECS service recommendations.
1037
+ * An array of objects to specify a filter that returns a more specific list of Amazon ECS service recommendations.
1038
1038
  */
1039
1039
  filters?: ECSServiceRecommendationFilters;
1040
1040
  /**
1041
- * Return the ECS service recommendations to the specified Amazon Web Services account IDs. If your account is the management account or the delegated administrator of an organization, use this parameter to return the ECS service recommendations to specific member accounts. You can only specify one account ID per request.
1041
+ * Return the Amazon ECS service recommendations to the specified Amazon Web Services account IDs. If your account is the management account or the delegated administrator of an organization, use this parameter to return the Amazon ECS service recommendations to specific member accounts. You can only specify one account ID per request.
1042
1042
  */
1043
1043
  accountIds?: AccountIds;
1044
1044
  }
1045
1045
  export interface GetECSServiceRecommendationsResponse {
1046
1046
  /**
1047
- * The token to advance to the next page of ECS service recommendations.
1047
+ * The token to advance to the next page of Amazon ECS service recommendations.
1048
1048
  */
1049
1049
  nextToken?: NextToken;
1050
1050
  /**
1051
- * An array of objects that describe the ECS service recommendations.
1051
+ * An array of objects that describe the Amazon ECS service recommendations.
1052
1052
  */
1053
1053
  ecsServiceRecommendations?: ECSServiceRecommendations;
1054
1054
  /**
@@ -1222,7 +1222,7 @@ declare namespace ComputeOptimizer {
1222
1222
  export type High = number;
1223
1223
  export type Identifier = string;
1224
1224
  export type IncludeMemberAccounts = boolean;
1225
- export type InferredWorkloadType = "AmazonEmr"|"ApacheCassandra"|"ApacheHadoop"|"Memcached"|"Nginx"|"PostgreSql"|"Redis"|string;
1225
+ export type InferredWorkloadType = "AmazonEmr"|"ApacheCassandra"|"ApacheHadoop"|"Memcached"|"Nginx"|"PostgreSql"|"Redis"|"Kafka"|string;
1226
1226
  export type InferredWorkloadTypes = InferredWorkloadType[];
1227
1227
  export type InferredWorkloadTypesPreference = "Active"|"Inactive"|string;
1228
1228
  export type InstanceArn = string;
@@ -1282,7 +1282,7 @@ declare namespace ComputeOptimizer {
1282
1282
  */
1283
1283
  effectiveRecommendationPreferences?: EffectiveRecommendationPreferences;
1284
1284
  /**
1285
- * The applications that might be running on the instance as inferred by Compute Optimizer. Compute Optimizer can infer if one of the following applications might be running on the instance: AmazonEmr - Infers that Amazon EMR might be running on the instance. ApacheCassandra - Infers that Apache Cassandra might be running on the instance. ApacheHadoop - Infers that Apache Hadoop might be running on the instance. Memcached - Infers that Memcached might be running on the instance. NGINX - Infers that NGINX might be running on the instance. PostgreSql - Infers that PostgreSQL might be running on the instance. Redis - Infers that Redis might be running on the instance.
1285
+ * The applications that might be running on the instance as inferred by Compute Optimizer. Compute Optimizer can infer if one of the following applications might be running on the instance: AmazonEmr - Infers that Amazon EMR might be running on the instance. ApacheCassandra - Infers that Apache Cassandra might be running on the instance. ApacheHadoop - Infers that Apache Hadoop might be running on the instance. Memcached - Infers that Memcached might be running on the instance. NGINX - Infers that NGINX might be running on the instance. PostgreSql - Infers that PostgreSQL might be running on the instance. Redis - Infers that Redis might be running on the instance. Kafka - Infers that Kafka might be running on the instance.
1286
1286
  */
1287
1287
  inferredWorkloadTypes?: InferredWorkloadTypes;
1288
1288
  }
@@ -1712,23 +1712,23 @@ declare namespace ComputeOptimizer {
1712
1712
  export type ServiceArns = ServiceArn[];
1713
1713
  export interface ServiceConfiguration {
1714
1714
  /**
1715
- * The amount of memory used by the tasks in the ECS service.
1715
+ * The amount of memory used by the tasks in the Amazon ECS service.
1716
1716
  */
1717
1717
  memory?: NullableMemory;
1718
1718
  /**
1719
- * The number of CPU units used by the tasks in the ECS service.
1719
+ * The number of CPU units used by the tasks in the Amazon ECS service.
1720
1720
  */
1721
1721
  cpu?: NullableCpu;
1722
1722
  /**
1723
- * The container configurations within a task of an ECS service.
1723
+ * The container configurations within a task of an Amazon ECS service.
1724
1724
  */
1725
1725
  containerConfigurations?: ContainerConfigurations;
1726
1726
  /**
1727
- * Describes the Auto Scaling configuration methods for an Amazon ECS service. This affects the generated recommendations. For example, if Auto Scaling is configured on a ECS service’s CPU, then Compute Optimizer doesn’t generate CPU size recommendations. The Auto Scaling configuration methods include: TARGET_TRACKING_SCALING_CPU — If the ECS service is configured to use target scaling on CPU, Compute Optimizer doesn't generate CPU recommendations. TARGET_TRACKING_SCALING_MEMORY — If the ECS service is configured to use target scaling on memory, Compute Optimizer doesn't generate memory recommendations. For more information about step scaling and target scaling, see Step scaling policies for Application Auto Scaling and Target tracking scaling policies for Application Auto Scaling in the Application Auto Scaling User Guide.
1727
+ * Describes the Auto Scaling configuration methods for an Amazon ECS service. This affects the generated recommendations. For example, if Auto Scaling is configured on a service’s CPU, then Compute Optimizer doesn’t generate CPU size recommendations. The Auto Scaling configuration methods include: TARGET_TRACKING_SCALING_CPU — If the Amazon ECS service is configured to use target scaling on CPU, Compute Optimizer doesn't generate CPU recommendations. TARGET_TRACKING_SCALING_MEMORY — If the Amazon ECS service is configured to use target scaling on memory, Compute Optimizer doesn't generate memory recommendations. For more information about step scaling and target scaling, see Step scaling policies for Application Auto Scaling and Target tracking scaling policies for Application Auto Scaling in the Application Auto Scaling User Guide.
1728
1728
  */
1729
1729
  autoScalingConfiguration?: AutoScalingConfiguration;
1730
1730
  /**
1731
- * The task definition ARN used by the tasks in the ECS service.
1731
+ * The task definition ARN used by the tasks in the Amazon ECS service.
1732
1732
  */
1733
1733
  taskDefinitionArn?: TaskDefinitionArn;
1734
1734
  }
@@ -1205,7 +1205,7 @@ declare namespace CustomerProfiles {
1205
1205
  */
1206
1206
  WorkflowId?: string1To255;
1207
1207
  /**
1208
- * Boolean to indicate if the Flow associated with the Integration is created via Appflow console or with ObjectTypeName equals _unstructured via API/CLI in flowDefinition
1208
+ * Boolean that shows if the Flow that's associated with the Integration is created in Amazon Appflow, or with ObjectTypeName equals _unstructured via API/CLI in flowDefinition.
1209
1209
  */
1210
1210
  IsUnstructured?: optionalBoolean;
1211
1211
  }
@@ -1618,7 +1618,7 @@ declare namespace CustomerProfiles {
1618
1618
  */
1619
1619
  WorkflowId?: string1To255;
1620
1620
  /**
1621
- * Boolean to indicate if the Flow associated with the Integration is created via Appflow console or with ObjectTypeName equals _unstructured via API/CLI in flowDefinition
1621
+ * Boolean that shows if the Flow that's associated with the Integration is created in Amazon Appflow, or with ObjectTypeName equals _unstructured via API/CLI in flowDefinition.
1622
1622
  */
1623
1623
  IsUnstructured?: optionalBoolean;
1624
1624
  }
@@ -2074,6 +2074,14 @@ declare namespace CustomerProfiles {
2074
2074
  * A list of items used to find a profile returned in a SearchProfiles response. An item is a key-value(s) pair that matches an attribute in the profile. If the optional AdditionalSearchKeys parameter was included in the SearchProfiles request, the FoundByItems list should be interpreted based on the LogicalOperator used in the request: AND - The profile included in the response matched all of the search keys specified in the request. The FoundByItems will include all of the key-value(s) pairs that were specified in the request (as this is a requirement of AND search logic). OR - The profile included in the response matched at least one of the search keys specified in the request. The FoundByItems will include each of the key-value(s) pairs that the profile was found by. The OR relationship is the default behavior if the LogicalOperator parameter is not included in the SearchProfiles request.
2075
2075
  */
2076
2076
  FoundByItems?: foundByList;
2077
+ /**
2078
+ * An alternative to PartyType which accepts any string as input.
2079
+ */
2080
+ PartyTypeString?: string1To255;
2081
+ /**
2082
+ * An alternative to Gender which accepts any string as input.
2083
+ */
2084
+ GenderString?: string1To255;
2077
2085
  }
2078
2086
  export type ProfileIdList = uuid[];
2079
2087
  export type ProfileIdToBeMergedList = uuid[];
@@ -2142,7 +2150,7 @@ declare namespace CustomerProfiles {
2142
2150
  */
2143
2151
  WorkflowId?: string1To255;
2144
2152
  /**
2145
- * Boolean to indicate if the Flow associated with the Integration is created via Appflow console or with ObjectTypeName equals _unstructured via API/CLI in flowDefinition
2153
+ * Boolean that shows if the Flow that's associated with the Integration is created in Amazon Appflow, or with ObjectTypeName equals _unstructured via API/CLI in flowDefinition.
2146
2154
  */
2147
2155
  IsUnstructured?: optionalBoolean;
2148
2156
  }
@@ -2298,7 +2298,7 @@ declare namespace FraudDetector {
2298
2298
  */
2299
2299
  labelMapper?: labelMapper;
2300
2300
  /**
2301
- * The action to take for unlabeled events.
2301
+ * The action to take for unlabeled events. Use IGNORE if you want the unlabeled events to be ignored. This is recommended when the majority of the events in the dataset are labeled. Use FRAUD if you want to categorize all unlabeled events as “Fraud”. This is recommended when most of the events in your dataset are fraudulent. Use LEGIT f you want to categorize all unlabeled events as “Legit”. This is recommended when most of the events in your dataset are legitimate. Use AUTO if you want Amazon Fraud Detector to decide how to use the unlabeled data. This is recommended when there is significant unlabeled events in the dataset. By default, Amazon Fraud Detector ignores the unlabeled data.
2302
2302
  */
2303
2303
  unlabeledEventsTreatment?: UnlabeledEventsTreatment;
2304
2304
  }
@@ -2619,6 +2619,10 @@ declare namespace FraudDetector {
2619
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
2620
  */
2621
2621
  auc?: float;
2622
+ /**
2623
+ * Indicates the range of area under curve (auc) expected from the OFI model. A range greater than 0.1 indicates higher model uncertainity.
2624
+ */
2625
+ uncertaintyRange?: UncertaintyRange;
2622
2626
  }
2623
2627
  export interface OFITrainingMetricsValue {
2624
2628
  /**
@@ -2940,6 +2944,10 @@ declare namespace FraudDetector {
2940
2944
  * 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
2945
  */
2942
2946
  auc?: float;
2947
+ /**
2948
+ * Indicates the range of area under curve (auc) expected from the TFI model. A range greater than 0.1 indicates higher model uncertainity.
2949
+ */
2950
+ uncertaintyRange?: UncertaintyRange;
2943
2951
  }
2944
2952
  export interface TFITrainingMetricsValue {
2945
2953
  /**
@@ -3032,7 +3040,17 @@ declare namespace FraudDetector {
3032
3040
  */
3033
3041
  aggregatedVariablesImportanceMetrics?: AggregatedVariablesImportanceMetrics;
3034
3042
  }
3035
- export type UnlabeledEventsTreatment = "IGNORE"|"FRAUD"|"LEGIT"|string;
3043
+ export interface UncertaintyRange {
3044
+ /**
3045
+ * The lower bound value of the area under curve (auc).
3046
+ */
3047
+ lowerBoundValue: float;
3048
+ /**
3049
+ * The lower bound value of the area under curve (auc).
3050
+ */
3051
+ upperBoundValue: float;
3052
+ }
3053
+ export type UnlabeledEventsTreatment = "IGNORE"|"FRAUD"|"LEGIT"|"AUTO"|string;
3036
3054
  export interface UntagResourceRequest {
3037
3055
  /**
3038
3056
  * The ARN of the resource from which to remove the tag.