aws-sdk 2.1368.0 → 2.1370.0
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/CHANGELOG.md +13 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +178 -149
- package/apis/compute-optimizer-2019-11-01.min.json +60 -21
- package/apis/kendra-2019-02-03.min.json +137 -65
- package/apis/kms-2014-11-01.examples.json +197 -15
- package/apis/kms-2014-11-01.min.json +52 -19
- package/apis/resiliencehub-2020-04-30.min.json +71 -70
- package/apis/sagemaker-2017-07-24.min.json +893 -892
- package/clients/appflow.d.ts +26 -1
- package/clients/computeoptimizer.d.ts +58 -14
- package/clients/connect.d.ts +1 -1
- package/clients/ecs.d.ts +2 -2
- package/clients/kendra.d.ts +92 -5
- package/clients/kms.d.ts +76 -32
- package/clients/resiliencehub.d.ts +12 -3
- package/clients/sagemaker.d.ts +6 -1
- package/dist/aws-sdk-core-react-native.js +10 -1
- package/dist/aws-sdk-react-native.js +18 -10
- package/dist/aws-sdk.js +66 -25
- package/dist/aws-sdk.min.js +43 -43
- package/lib/core.js +1 -1
- package/lib/protocol/json.js +9 -0
- package/lib/services/sqs.js +2 -3
- package/package.json +1 -1
    
        package/clients/sagemaker.d.ts
    CHANGED
    
    | @@ -3158,6 +3158,10 @@ declare namespace SageMaker { | |
| 3158 3158 | 
             
                 * The channel type (optional) is an enum string. The default value is training. Channels for training and validation must share the same ContentType and TargetAttributeName. For information on specifying training and validation channel types, see How to specify training and validation datasets.
         | 
| 3159 3159 | 
             
                 */
         | 
| 3160 3160 | 
             
                ChannelType?: AutoMLChannelType;
         | 
| 3161 | 
            +
                /**
         | 
| 3162 | 
            +
                 * If specified, this column name indicates which column of the dataset should be treated as sample weights for use by the objective metric during the training, evaluation, and the selection of the best model. This column is not considered as a predictive feature. For more information on Autopilot metrics, see Metrics and validation. Sample weights should be numeric, non-negative, with larger values indicating which rows are more important than others. Data points that have invalid or no weight value are excluded. Support for sample weights is available in Ensembling mode only.
         | 
| 3163 | 
            +
                 */
         | 
| 3164 | 
            +
                SampleWeightAttributeName?: SampleWeightAttributeName;
         | 
| 3161 3165 | 
             
              }
         | 
| 3162 3166 | 
             
              export type AutoMLChannelType = "training"|"validation"|string;
         | 
| 3163 3167 | 
             
              export interface AutoMLContainerDefinition {
         | 
| @@ -3259,7 +3263,7 @@ declare namespace SageMaker { | |
| 3259 3263 | 
             
              export type AutoMLJobName = string;
         | 
| 3260 3264 | 
             
              export interface AutoMLJobObjective {
         | 
| 3261 3265 | 
             
                /**
         | 
| 3262 | 
            -
                 * The name of the objective metric used to measure the predictive quality of a machine learning system.  | 
| 3266 | 
            +
                 * The name of the objective metric used to measure the predictive quality of a machine learning system. During training, the model's parameters are updated iteratively to optimize its performance based on the feedback provided by the objective metric when evaluating the model on the validation dataset. For the list of all available metrics supported by Autopilot, see Autopilot metrics. If you do not specify a metric explicitly, the default behavior is to automatically use:    MSE: for regression.    F1: for binary classification    Accuracy: for multiclass classification.  
         | 
| 3263 3267 | 
             
                 */
         | 
| 3264 3268 | 
             
                MetricName: AutoMLMetricEnum;
         | 
| 3265 3269 | 
             
              }
         | 
| @@ -19438,6 +19442,7 @@ declare namespace SageMaker { | |
| 19438 19442 | 
             
              export type SageMakerImageVersionAlias = string;
         | 
| 19439 19443 | 
             
              export type SageMakerImageVersionAliases = SageMakerImageVersionAlias[];
         | 
| 19440 19444 | 
             
              export type SagemakerServicecatalogStatus = "Enabled"|"Disabled"|string;
         | 
| 19445 | 
            +
              export type SampleWeightAttributeName = string;
         | 
| 19441 19446 | 
             
              export type SamplingPercentage = number;
         | 
| 19442 19447 | 
             
              export interface ScheduleConfig {
         | 
| 19443 19448 | 
             
                /**
         | 
| @@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 83 83 | 
             
            	  /**
         | 
| 84 84 | 
             
            	   * @constant
         | 
| 85 85 | 
             
            	   */
         | 
| 86 | 
            -
            	  VERSION: '2. | 
| 86 | 
            +
            	  VERSION: '2.1370.0',
         | 
| 87 87 |  | 
| 88 88 | 
             
            	  /**
         | 
| 89 89 | 
             
            	   * @api private
         | 
| @@ -2435,6 +2435,15 @@ return /******/ (function(modules) { // webpackBootstrap | |
| 2435 2435 | 
             
            	  var builder = new JsonBuilder();
         | 
| 2436 2436 |  | 
| 2437 2437 | 
             
            	  if (version === 1) version = '1.0';
         | 
| 2438 | 
            +
             | 
| 2439 | 
            +
            	  if (api.awsQueryCompatible) {
         | 
| 2440 | 
            +
            	    if (!httpRequest.params) {
         | 
| 2441 | 
            +
            	      httpRequest.params = {};
         | 
| 2442 | 
            +
            	    }
         | 
| 2443 | 
            +
            	    // because Query protocol does this.
         | 
| 2444 | 
            +
            	    Object.assign(httpRequest.params, req.params);
         | 
| 2445 | 
            +
            	  }
         | 
| 2446 | 
            +
             | 
| 2438 2447 | 
             
            	  httpRequest.body = builder.build(req.params || {}, input);
         | 
| 2439 2448 | 
             
            	  httpRequest.headers['Content-Type'] = 'application/x-amz-json-' + version;
         | 
| 2440 2449 | 
             
            	  httpRequest.headers['X-Amz-Target'] = target;
         |