aws-sdk 2.1394.0 → 2.1396.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 CHANGED
@@ -1,7 +1,17 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.1394.0-->
2
+ <!--LATEST=2.1396.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
5
+ ## 2.1396.0
6
+ * feature: AmplifyUIBuilder: AWS Amplify UIBuilder is launching Codegen UI, a new feature that enables you to generate your amplify uibuilder components and forms.
7
+ * feature: FSx: Amazon FSx for NetApp ONTAP now supports joining a storage virtual machine (SVM) to Active Directory after the SVM has been created.
8
+ * feature: OpenSearch: This release adds support for SkipUnavailable connection property for cross cluster search
9
+ * feature: Rekognition: This release adds support for improved accuracy with user vector in Amazon Rekognition Face Search. Adds new APIs: AssociateFaces, CreateUser, DeleteUser, DisassociateFaces, ListUsers, SearchUsers, SearchUsersByImage. Also adds new face metadata that can be stored: user vector.
10
+ * feature: SageMaker: Sagemaker Neo now supports compilation for inferentia2 (ML_INF2) and Trainium1 (ML_TRN1) as available targets. With these devices, you can run your workloads at highest performance with lowest cost. inferentia2 (ML_INF2) is available in CMH and Trainium1 (ML_TRN1) is available in IAD currently
11
+
12
+ ## 2.1395.0
13
+ * feature: Connect: This release adds search APIs for Prompts, Quick Connects and Hours of Operations, which can be used to search for those resources within a Connect Instance.
14
+
5
15
  ## 2.1394.0
6
16
  * feature: Athena: You can now define custom spark properties at start of the session for use cases like cluster encryption, table formats, and general Spark tuning.
7
17
  * feature: ComprehendMedical: This release supports a new set of entities and traits.
package/README.md CHANGED
@@ -71,7 +71,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
71
71
  To use the SDK in the browser, simply add the following script tag to your
72
72
  HTML pages:
73
73
 
74
- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1394.0.min.js"></script>
74
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1396.0.min.js"></script>
75
75
 
76
76
  You can also build a custom browser SDK with your specified set of AWS services.
77
77
  This can allow you to reduce the SDK's size, specify different API versions of
@@ -502,6 +502,44 @@
502
502
  }
503
503
  }
504
504
  },
505
+ "GetCodegenJob": {
506
+ "http": {
507
+ "method": "GET",
508
+ "requestUri": "/app/{appId}/environment/{environmentName}/codegen-jobs/{id}",
509
+ "responseCode": 200
510
+ },
511
+ "input": {
512
+ "type": "structure",
513
+ "required": [
514
+ "appId",
515
+ "environmentName",
516
+ "id"
517
+ ],
518
+ "members": {
519
+ "appId": {
520
+ "location": "uri",
521
+ "locationName": "appId"
522
+ },
523
+ "environmentName": {
524
+ "location": "uri",
525
+ "locationName": "environmentName"
526
+ },
527
+ "id": {
528
+ "location": "uri",
529
+ "locationName": "id"
530
+ }
531
+ }
532
+ },
533
+ "output": {
534
+ "type": "structure",
535
+ "members": {
536
+ "job": {
537
+ "shape": "S32"
538
+ }
539
+ },
540
+ "payload": "job"
541
+ }
542
+ },
505
543
  "GetComponent": {
506
544
  "http": {
507
545
  "method": "GET",
@@ -653,6 +691,70 @@
653
691
  "payload": "theme"
654
692
  }
655
693
  },
694
+ "ListCodegenJobs": {
695
+ "http": {
696
+ "method": "GET",
697
+ "requestUri": "/app/{appId}/environment/{environmentName}/codegen-jobs",
698
+ "responseCode": 200
699
+ },
700
+ "input": {
701
+ "type": "structure",
702
+ "required": [
703
+ "appId",
704
+ "environmentName"
705
+ ],
706
+ "members": {
707
+ "appId": {
708
+ "location": "uri",
709
+ "locationName": "appId"
710
+ },
711
+ "environmentName": {
712
+ "location": "uri",
713
+ "locationName": "environmentName"
714
+ },
715
+ "nextToken": {
716
+ "location": "querystring",
717
+ "locationName": "nextToken"
718
+ },
719
+ "maxResults": {
720
+ "location": "querystring",
721
+ "locationName": "maxResults",
722
+ "type": "integer"
723
+ }
724
+ }
725
+ },
726
+ "output": {
727
+ "type": "structure",
728
+ "required": [
729
+ "entities"
730
+ ],
731
+ "members": {
732
+ "entities": {
733
+ "type": "list",
734
+ "member": {
735
+ "type": "structure",
736
+ "required": [
737
+ "appId",
738
+ "environmentName",
739
+ "id"
740
+ ],
741
+ "members": {
742
+ "appId": {},
743
+ "environmentName": {},
744
+ "id": {},
745
+ "createdAt": {
746
+ "shape": "S17"
747
+ },
748
+ "modifiedAt": {
749
+ "shape": "S17"
750
+ }
751
+ }
752
+ }
753
+ },
754
+ "nextToken": {}
755
+ }
756
+ }
757
+ },
656
758
  "ListComponents": {
657
759
  "http": {
658
760
  "method": "GET",
@@ -930,6 +1032,68 @@
930
1032
  }
931
1033
  }
932
1034
  },
1035
+ "StartCodegenJob": {
1036
+ "http": {
1037
+ "requestUri": "/app/{appId}/environment/{environmentName}/codegen-jobs",
1038
+ "responseCode": 200
1039
+ },
1040
+ "input": {
1041
+ "type": "structure",
1042
+ "required": [
1043
+ "appId",
1044
+ "environmentName",
1045
+ "codegenJobToCreate"
1046
+ ],
1047
+ "members": {
1048
+ "appId": {
1049
+ "location": "uri",
1050
+ "locationName": "appId"
1051
+ },
1052
+ "environmentName": {
1053
+ "location": "uri",
1054
+ "locationName": "environmentName"
1055
+ },
1056
+ "clientToken": {
1057
+ "idempotencyToken": true,
1058
+ "location": "querystring",
1059
+ "locationName": "clientToken"
1060
+ },
1061
+ "codegenJobToCreate": {
1062
+ "type": "structure",
1063
+ "required": [
1064
+ "renderConfig"
1065
+ ],
1066
+ "members": {
1067
+ "renderConfig": {
1068
+ "shape": "S33"
1069
+ },
1070
+ "genericDataSchema": {
1071
+ "shape": "S38"
1072
+ },
1073
+ "autoGenerateForms": {
1074
+ "type": "boolean"
1075
+ },
1076
+ "features": {
1077
+ "shape": "S3q"
1078
+ },
1079
+ "tags": {
1080
+ "shape": "S11"
1081
+ }
1082
+ }
1083
+ }
1084
+ },
1085
+ "payload": "codegenJobToCreate"
1086
+ },
1087
+ "output": {
1088
+ "type": "structure",
1089
+ "members": {
1090
+ "entity": {
1091
+ "shape": "S32"
1092
+ }
1093
+ },
1094
+ "payload": "entity"
1095
+ }
1096
+ },
933
1097
  "UpdateComponent": {
934
1098
  "http": {
935
1099
  "method": "PATCH",
@@ -1819,6 +1983,204 @@
1819
1983
  "S2o": {
1820
1984
  "type": "string",
1821
1985
  "sensitive": true
1986
+ },
1987
+ "S32": {
1988
+ "type": "structure",
1989
+ "required": [
1990
+ "id",
1991
+ "appId",
1992
+ "environmentName"
1993
+ ],
1994
+ "members": {
1995
+ "id": {},
1996
+ "appId": {},
1997
+ "environmentName": {},
1998
+ "renderConfig": {
1999
+ "shape": "S33"
2000
+ },
2001
+ "genericDataSchema": {
2002
+ "shape": "S38"
2003
+ },
2004
+ "autoGenerateForms": {
2005
+ "type": "boolean"
2006
+ },
2007
+ "features": {
2008
+ "shape": "S3q"
2009
+ },
2010
+ "status": {},
2011
+ "statusMessage": {},
2012
+ "asset": {
2013
+ "type": "structure",
2014
+ "members": {
2015
+ "downloadUrl": {}
2016
+ }
2017
+ },
2018
+ "tags": {
2019
+ "shape": "S11"
2020
+ },
2021
+ "createdAt": {
2022
+ "shape": "S17"
2023
+ },
2024
+ "modifiedAt": {
2025
+ "shape": "S17"
2026
+ }
2027
+ }
2028
+ },
2029
+ "S33": {
2030
+ "type": "structure",
2031
+ "members": {
2032
+ "react": {
2033
+ "type": "structure",
2034
+ "members": {
2035
+ "module": {},
2036
+ "target": {},
2037
+ "script": {},
2038
+ "renderTypeDeclarations": {
2039
+ "type": "boolean"
2040
+ },
2041
+ "inlineSourceMap": {
2042
+ "type": "boolean"
2043
+ }
2044
+ }
2045
+ }
2046
+ },
2047
+ "union": true
2048
+ },
2049
+ "S38": {
2050
+ "type": "structure",
2051
+ "required": [
2052
+ "dataSourceType",
2053
+ "models",
2054
+ "enums",
2055
+ "nonModels"
2056
+ ],
2057
+ "members": {
2058
+ "dataSourceType": {},
2059
+ "models": {
2060
+ "type": "map",
2061
+ "key": {},
2062
+ "value": {
2063
+ "type": "structure",
2064
+ "required": [
2065
+ "fields",
2066
+ "primaryKeys"
2067
+ ],
2068
+ "members": {
2069
+ "fields": {
2070
+ "type": "map",
2071
+ "key": {},
2072
+ "value": {
2073
+ "shape": "S3d"
2074
+ }
2075
+ },
2076
+ "isJoinTable": {
2077
+ "type": "boolean"
2078
+ },
2079
+ "primaryKeys": {
2080
+ "type": "list",
2081
+ "member": {}
2082
+ }
2083
+ }
2084
+ }
2085
+ },
2086
+ "enums": {
2087
+ "type": "map",
2088
+ "key": {},
2089
+ "value": {
2090
+ "type": "structure",
2091
+ "required": [
2092
+ "values"
2093
+ ],
2094
+ "members": {
2095
+ "values": {
2096
+ "type": "list",
2097
+ "member": {}
2098
+ }
2099
+ }
2100
+ }
2101
+ },
2102
+ "nonModels": {
2103
+ "type": "map",
2104
+ "key": {},
2105
+ "value": {
2106
+ "type": "structure",
2107
+ "required": [
2108
+ "fields"
2109
+ ],
2110
+ "members": {
2111
+ "fields": {
2112
+ "type": "map",
2113
+ "key": {},
2114
+ "value": {
2115
+ "shape": "S3d"
2116
+ }
2117
+ }
2118
+ }
2119
+ }
2120
+ }
2121
+ }
2122
+ },
2123
+ "S3d": {
2124
+ "type": "structure",
2125
+ "required": [
2126
+ "dataType",
2127
+ "dataTypeValue",
2128
+ "required",
2129
+ "readOnly",
2130
+ "isArray"
2131
+ ],
2132
+ "members": {
2133
+ "dataType": {},
2134
+ "dataTypeValue": {},
2135
+ "required": {
2136
+ "type": "boolean"
2137
+ },
2138
+ "readOnly": {
2139
+ "type": "boolean"
2140
+ },
2141
+ "isArray": {
2142
+ "type": "boolean"
2143
+ },
2144
+ "relationship": {
2145
+ "type": "structure",
2146
+ "required": [
2147
+ "type",
2148
+ "relatedModelName"
2149
+ ],
2150
+ "members": {
2151
+ "type": {},
2152
+ "relatedModelName": {},
2153
+ "relatedModelFields": {
2154
+ "type": "list",
2155
+ "member": {}
2156
+ },
2157
+ "canUnlinkAssociatedModel": {
2158
+ "type": "boolean"
2159
+ },
2160
+ "relatedJoinFieldName": {},
2161
+ "relatedJoinTableName": {},
2162
+ "belongsToFieldOnRelatedModel": {},
2163
+ "associatedFields": {
2164
+ "type": "list",
2165
+ "member": {}
2166
+ },
2167
+ "isHasManyIndex": {
2168
+ "type": "boolean"
2169
+ }
2170
+ }
2171
+ }
2172
+ }
2173
+ },
2174
+ "S3q": {
2175
+ "type": "structure",
2176
+ "members": {
2177
+ "isRelationshipSupported": {
2178
+ "type": "boolean"
2179
+ },
2180
+ "isNonModelSupported": {
2181
+ "type": "boolean"
2182
+ }
2183
+ }
1822
2184
  }
1823
2185
  }
1824
2186
  }
@@ -15,6 +15,12 @@
15
15
  "output_token": "nextToken",
16
16
  "result_key": "entities"
17
17
  },
18
+ "ListCodegenJobs": {
19
+ "input_token": "nextToken",
20
+ "output_token": "nextToken",
21
+ "limit_key": "maxResults",
22
+ "result_key": "entities"
23
+ },
18
24
  "ListComponents": {
19
25
  "input_token": "nextToken",
20
26
  "output_token": "nextToken",