aws-sdk 2.987.0 → 2.991.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.
Files changed (46) hide show
  1. package/CHANGELOG.md +25 -1
  2. package/README.md +1 -1
  3. package/apis/chime-2018-05-01.min.json +148 -139
  4. package/apis/comprehend-2017-11-27.min.json +114 -97
  5. package/apis/dms-2016-01-01.min.json +3 -0
  6. package/apis/ec2-2016-11-15.min.json +48 -48
  7. package/apis/es-2015-01-01.min.json +14 -4
  8. package/apis/iot-2015-05-28.min.json +136 -119
  9. package/apis/kafkaconnect-2021-09-14.examples.json +5 -0
  10. package/apis/kafkaconnect-2021-09-14.min.json +960 -0
  11. package/apis/kafkaconnect-2021-09-14.paginators.json +22 -0
  12. package/apis/macie2-2020-01-01.min.json +159 -108
  13. package/apis/metadata.json +3 -0
  14. package/apis/opensearch-2021-01-01.min.json +14 -4
  15. package/apis/pinpoint-2016-12-01.min.json +719 -329
  16. package/apis/robomaker-2018-06-29.min.json +138 -86
  17. package/apis/s3-2006-03-01.examples.json +145 -145
  18. package/apis/s3-2006-03-01.min.json +80 -78
  19. package/apis/sagemaker-2017-07-24.min.json +71 -22
  20. package/apis/transcribe-2017-10-26.min.json +30 -6
  21. package/apis/wafv2-2019-07-29.min.json +1 -0
  22. package/clients/all.d.ts +1 -0
  23. package/clients/all.js +2 -1
  24. package/clients/chime.d.ts +10 -5
  25. package/clients/comprehend.d.ts +35 -0
  26. package/clients/dms.d.ts +14 -10
  27. package/clients/ec2.d.ts +73 -73
  28. package/clients/es.d.ts +18 -3
  29. package/clients/iot.d.ts +28 -2
  30. package/clients/kafkaconnect.d.ts +1132 -0
  31. package/clients/kafkaconnect.js +18 -0
  32. package/clients/macie2.d.ts +75 -23
  33. package/clients/opensearch.d.ts +22 -1
  34. package/clients/pinpoint.d.ts +408 -4
  35. package/clients/robomaker.d.ts +85 -4
  36. package/clients/s3.d.ts +53 -44
  37. package/clients/sagemaker.d.ts +90 -17
  38. package/clients/transcribeservice.d.ts +27 -0
  39. package/clients/wafv2.d.ts +22 -18
  40. package/dist/aws-sdk-core-react-native.js +2 -2
  41. package/dist/aws-sdk-react-native.js +55 -18
  42. package/dist/aws-sdk.js +384 -345
  43. package/dist/aws-sdk.min.js +72 -72
  44. package/lib/config_service_placeholders.d.ts +2 -0
  45. package/lib/core.js +1 -1
  46. package/package.json +1 -1
@@ -663,7 +663,7 @@ declare namespace RoboMaker {
663
663
  /**
664
664
  * The sources of the robot application.
665
665
  */
666
- sources: SourceConfigs;
666
+ sources?: SourceConfigs;
667
667
  /**
668
668
  * The robot software suite (ROS distribuition) used by the robot application.
669
669
  */
@@ -672,6 +672,10 @@ declare namespace RoboMaker {
672
672
  * A map that contains tag keys and tag values that are attached to the robot application.
673
673
  */
674
674
  tags?: TagMap;
675
+ /**
676
+ * The object that contains that URI of the Docker image that you use for your robot application.
677
+ */
678
+ environment?: Environment;
675
679
  }
676
680
  export interface CreateRobotApplicationResponse {
677
681
  /**
@@ -706,6 +710,10 @@ declare namespace RoboMaker {
706
710
  * The list of all tags added to the robot application.
707
711
  */
708
712
  tags?: TagMap;
713
+ /**
714
+ * An object that contains the Docker image URI used to a create your robot application.
715
+ */
716
+ environment?: Environment;
709
717
  }
710
718
  export interface CreateRobotApplicationVersionRequest {
711
719
  /**
@@ -716,6 +724,14 @@ declare namespace RoboMaker {
716
724
  * The current revision id for the robot application. If you provide a value and it matches the latest revision ID, a new version will be created.
717
725
  */
718
726
  currentRevisionId?: RevisionId;
727
+ /**
728
+ * The Amazon S3 identifier for the zip file bundle that you use for your robot application.
729
+ */
730
+ s3Etags?: S3Etags;
731
+ /**
732
+ * A SHA256 identifier for the Docker image that you use for your robot application.
733
+ */
734
+ imageDigest?: ImageDigest;
719
735
  }
720
736
  export interface CreateRobotApplicationVersionResponse {
721
737
  /**
@@ -746,6 +762,10 @@ declare namespace RoboMaker {
746
762
  * The revision id of the robot application.
747
763
  */
748
764
  revisionId?: RevisionId;
765
+ /**
766
+ * The object that contains the Docker image URI used to create your robot application.
767
+ */
768
+ environment?: Environment;
749
769
  }
750
770
  export interface CreateRobotRequest {
751
771
  /**
@@ -799,7 +819,7 @@ declare namespace RoboMaker {
799
819
  /**
800
820
  * The sources of the simulation application.
801
821
  */
802
- sources: SourceConfigs;
822
+ sources?: SourceConfigs;
803
823
  /**
804
824
  * The simulation software suite used by the simulation application.
805
825
  */
@@ -816,6 +836,10 @@ declare namespace RoboMaker {
816
836
  * A map that contains tag keys and tag values that are attached to the simulation application.
817
837
  */
818
838
  tags?: TagMap;
839
+ /**
840
+ * The object that contains the Docker image URI used to create your simulation application.
841
+ */
842
+ environment?: Environment;
819
843
  }
820
844
  export interface CreateSimulationApplicationResponse {
821
845
  /**
@@ -858,6 +882,10 @@ declare namespace RoboMaker {
858
882
  * The list of all tags added to the simulation application.
859
883
  */
860
884
  tags?: TagMap;
885
+ /**
886
+ * The object that contains the Docker image URI that you used to create your simulation application.
887
+ */
888
+ environment?: Environment;
861
889
  }
862
890
  export interface CreateSimulationApplicationVersionRequest {
863
891
  /**
@@ -868,6 +896,14 @@ declare namespace RoboMaker {
868
896
  * The current revision id for the simulation application. If you provide a value and it matches the latest revision ID, a new version will be created.
869
897
  */
870
898
  currentRevisionId?: RevisionId;
899
+ /**
900
+ * The Amazon S3 eTag identifier for the zip file bundle that you use to create the simulation application.
901
+ */
902
+ s3Etags?: S3Etags;
903
+ /**
904
+ * The SHA256 digest used to identify the Docker image URI used to created the simulation application.
905
+ */
906
+ imageDigest?: ImageDigest;
871
907
  }
872
908
  export interface CreateSimulationApplicationVersionResponse {
873
909
  /**
@@ -906,6 +942,10 @@ declare namespace RoboMaker {
906
942
  * The revision ID of the simulation application.
907
943
  */
908
944
  revisionId?: RevisionId;
945
+ /**
946
+ * The object that contains the Docker image URI used to create the simulation application.
947
+ */
948
+ environment?: Environment;
909
949
  }
910
950
  export interface CreateSimulationJobRequest {
911
951
  /**
@@ -1511,6 +1551,14 @@ declare namespace RoboMaker {
1511
1551
  * The list of all tags added to the specified robot application.
1512
1552
  */
1513
1553
  tags?: TagMap;
1554
+ /**
1555
+ * The object that contains the Docker image URI used to create the robot application.
1556
+ */
1557
+ environment?: Environment;
1558
+ /**
1559
+ * A SHA256 identifier for the Docker image that you use for your robot application.
1560
+ */
1561
+ imageDigest?: ImageDigest;
1514
1562
  }
1515
1563
  export interface DescribeRobotRequest {
1516
1564
  /**
@@ -1611,6 +1659,14 @@ declare namespace RoboMaker {
1611
1659
  * The list of all tags added to the specified simulation application.
1612
1660
  */
1613
1661
  tags?: TagMap;
1662
+ /**
1663
+ * The object that contains the Docker image URI used to create the simulation application.
1664
+ */
1665
+ environment?: Environment;
1666
+ /**
1667
+ * A SHA256 identifier for the Docker image that you use for your simulation application.
1668
+ */
1669
+ imageDigest?: ImageDigest;
1614
1670
  }
1615
1671
  export interface DescribeSimulationJobBatchRequest {
1616
1672
  /**
@@ -1925,6 +1981,12 @@ declare namespace RoboMaker {
1925
1981
  */
1926
1982
  version?: GenericString;
1927
1983
  }
1984
+ export interface Environment {
1985
+ /**
1986
+ * The Docker image URI for either your robot or simulation applications.
1987
+ */
1988
+ uri?: RepositoryUrl;
1989
+ }
1928
1990
  export type EnvironmentVariableKey = string;
1929
1991
  export type EnvironmentVariableMap = {[key: string]: EnvironmentVariableValue};
1930
1992
  export type EnvironmentVariableValue = string;
@@ -2034,6 +2096,7 @@ declare namespace RoboMaker {
2034
2096
  }
2035
2097
  export type IamRole = string;
2036
2098
  export type Id = string;
2099
+ export type ImageDigest = string;
2037
2100
  export type Integer = number;
2038
2101
  export type InteriorCountPerFloorplan = number;
2039
2102
  export type JobDuration = number;
@@ -2453,6 +2516,7 @@ declare namespace RoboMaker {
2453
2516
  }
2454
2517
  export type RenderingEngineType = "OGRE"|string;
2455
2518
  export type RenderingEngineVersionType = string;
2519
+ export type RepositoryUrl = string;
2456
2520
  export interface RestartSimulationJobRequest {
2457
2521
  /**
2458
2522
  * The Amazon Resource Name (ARN) of the simulation job.
@@ -2603,6 +2667,7 @@ declare namespace RoboMaker {
2603
2667
  export type Robots = Robot[];
2604
2668
  export type S3Bucket = string;
2605
2669
  export type S3Etag = string;
2670
+ export type S3Etags = S3Etag[];
2606
2671
  export type S3Key = string;
2607
2672
  export interface S3KeyOutput {
2608
2673
  /**
@@ -3139,7 +3204,7 @@ declare namespace RoboMaker {
3139
3204
  /**
3140
3205
  * The sources of the robot application.
3141
3206
  */
3142
- sources: SourceConfigs;
3207
+ sources?: SourceConfigs;
3143
3208
  /**
3144
3209
  * The robot software suite (ROS distribution) used by the robot application.
3145
3210
  */
@@ -3148,6 +3213,10 @@ declare namespace RoboMaker {
3148
3213
  * The revision id for the robot application.
3149
3214
  */
3150
3215
  currentRevisionId?: RevisionId;
3216
+ /**
3217
+ * The object that contains the Docker image URI for your robot application.
3218
+ */
3219
+ environment?: Environment;
3151
3220
  }
3152
3221
  export interface UpdateRobotApplicationResponse {
3153
3222
  /**
@@ -3178,6 +3247,10 @@ declare namespace RoboMaker {
3178
3247
  * The revision id of the robot application.
3179
3248
  */
3180
3249
  revisionId?: RevisionId;
3250
+ /**
3251
+ * The object that contains the Docker image URI for your robot application.
3252
+ */
3253
+ environment?: Environment;
3181
3254
  }
3182
3255
  export interface UpdateSimulationApplicationRequest {
3183
3256
  /**
@@ -3187,7 +3260,7 @@ declare namespace RoboMaker {
3187
3260
  /**
3188
3261
  * The sources of the simulation application.
3189
3262
  */
3190
- sources: SourceConfigs;
3263
+ sources?: SourceConfigs;
3191
3264
  /**
3192
3265
  * The simulation software suite used by the simulation application.
3193
3266
  */
@@ -3204,6 +3277,10 @@ declare namespace RoboMaker {
3204
3277
  * The revision id for the robot application.
3205
3278
  */
3206
3279
  currentRevisionId?: RevisionId;
3280
+ /**
3281
+ * The object that contains the Docker image URI for your simulation application.
3282
+ */
3283
+ environment?: Environment;
3207
3284
  }
3208
3285
  export interface UpdateSimulationApplicationResponse {
3209
3286
  /**
@@ -3242,6 +3319,10 @@ declare namespace RoboMaker {
3242
3319
  * The revision id of the simulation application.
3243
3320
  */
3244
3321
  revisionId?: RevisionId;
3322
+ /**
3323
+ * The object that contains the Docker image URI used for your simulation application.
3324
+ */
3325
+ environment?: Environment;
3245
3326
  }
3246
3327
  export interface UpdateWorldTemplateRequest {
3247
3328
  /**