aws-sdk 2.1566.0 → 2.1567.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/README.md CHANGED
@@ -69,7 +69,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
69
69
  To use the SDK in the browser, simply add the following script tag to your
70
70
  HTML pages:
71
71
 
72
- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1566.0.min.js"></script>
72
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1567.0.min.js"></script>
73
73
 
74
74
  You can also build a custom browser SDK with your specified set of AWS services.
75
75
  This can allow you to reduce the SDK's size, specify different API versions of
@@ -883,6 +883,36 @@
883
883
  }
884
884
  }
885
885
  },
886
+ "ListTagsForResource": {
887
+ "http": {
888
+ "method": "GET",
889
+ "requestUri": "/tags/{resourceArn}",
890
+ "responseCode": 200
891
+ },
892
+ "input": {
893
+ "type": "structure",
894
+ "required": [
895
+ "resourceArn"
896
+ ],
897
+ "members": {
898
+ "resourceArn": {
899
+ "location": "uri",
900
+ "locationName": "resourceArn"
901
+ }
902
+ }
903
+ },
904
+ "output": {
905
+ "type": "structure",
906
+ "required": [
907
+ "tags"
908
+ ],
909
+ "members": {
910
+ "tags": {
911
+ "shape": "S11"
912
+ }
913
+ }
914
+ }
915
+ },
886
916
  "ListThemes": {
887
917
  "http": {
888
918
  "method": "GET",
@@ -981,7 +1011,8 @@
981
1011
  }
982
1012
  },
983
1013
  "payload": "body"
984
- }
1014
+ },
1015
+ "idempotent": true
985
1016
  },
986
1017
  "RefreshToken": {
987
1018
  "http": {
@@ -1094,6 +1125,64 @@
1094
1125
  "payload": "entity"
1095
1126
  }
1096
1127
  },
1128
+ "TagResource": {
1129
+ "http": {
1130
+ "requestUri": "/tags/{resourceArn}",
1131
+ "responseCode": 200
1132
+ },
1133
+ "input": {
1134
+ "type": "structure",
1135
+ "required": [
1136
+ "resourceArn",
1137
+ "tags"
1138
+ ],
1139
+ "members": {
1140
+ "resourceArn": {
1141
+ "location": "uri",
1142
+ "locationName": "resourceArn"
1143
+ },
1144
+ "tags": {
1145
+ "shape": "S11"
1146
+ }
1147
+ }
1148
+ },
1149
+ "output": {
1150
+ "type": "structure",
1151
+ "members": {}
1152
+ },
1153
+ "idempotent": true
1154
+ },
1155
+ "UntagResource": {
1156
+ "http": {
1157
+ "method": "DELETE",
1158
+ "requestUri": "/tags/{resourceArn}",
1159
+ "responseCode": 200
1160
+ },
1161
+ "input": {
1162
+ "type": "structure",
1163
+ "required": [
1164
+ "resourceArn",
1165
+ "tagKeys"
1166
+ ],
1167
+ "members": {
1168
+ "resourceArn": {
1169
+ "location": "uri",
1170
+ "locationName": "resourceArn"
1171
+ },
1172
+ "tagKeys": {
1173
+ "location": "querystring",
1174
+ "locationName": "tagKeys",
1175
+ "type": "list",
1176
+ "member": {}
1177
+ }
1178
+ }
1179
+ },
1180
+ "output": {
1181
+ "type": "structure",
1182
+ "members": {}
1183
+ },
1184
+ "idempotent": true
1185
+ },
1097
1186
  "UpdateComponent": {
1098
1187
  "http": {
1099
1188
  "method": "PATCH",
@@ -155,6 +155,14 @@ declare class AmplifyUIBuilder extends Service {
155
155
  * Retrieves a list of forms for a specified Amplify app and backend environment.
156
156
  */
157
157
  listForms(callback?: (err: AWSError, data: AmplifyUIBuilder.Types.ListFormsResponse) => void): Request<AmplifyUIBuilder.Types.ListFormsResponse, AWSError>;
158
+ /**
159
+ * Returns a list of tags for a specified Amazon Resource Name (ARN).
160
+ */
161
+ listTagsForResource(params: AmplifyUIBuilder.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: AmplifyUIBuilder.Types.ListTagsForResourceResponse) => void): Request<AmplifyUIBuilder.Types.ListTagsForResourceResponse, AWSError>;
162
+ /**
163
+ * Returns a list of tags for a specified Amazon Resource Name (ARN).
164
+ */
165
+ listTagsForResource(callback?: (err: AWSError, data: AmplifyUIBuilder.Types.ListTagsForResourceResponse) => void): Request<AmplifyUIBuilder.Types.ListTagsForResourceResponse, AWSError>;
158
166
  /**
159
167
  * Retrieves a list of themes for a specified Amplify app and backend environment.
160
168
  */
@@ -187,6 +195,22 @@ declare class AmplifyUIBuilder extends Service {
187
195
  * Starts a code generation job for a specified Amplify app and backend environment.
188
196
  */
189
197
  startCodegenJob(callback?: (err: AWSError, data: AmplifyUIBuilder.Types.StartCodegenJobResponse) => void): Request<AmplifyUIBuilder.Types.StartCodegenJobResponse, AWSError>;
198
+ /**
199
+ * Tags the resource with a tag key and value.
200
+ */
201
+ tagResource(params: AmplifyUIBuilder.Types.TagResourceRequest, callback?: (err: AWSError, data: AmplifyUIBuilder.Types.TagResourceResponse) => void): Request<AmplifyUIBuilder.Types.TagResourceResponse, AWSError>;
202
+ /**
203
+ * Tags the resource with a tag key and value.
204
+ */
205
+ tagResource(callback?: (err: AWSError, data: AmplifyUIBuilder.Types.TagResourceResponse) => void): Request<AmplifyUIBuilder.Types.TagResourceResponse, AWSError>;
206
+ /**
207
+ * Untags a resource with a specified Amazon Resource Name (ARN).
208
+ */
209
+ untagResource(params: AmplifyUIBuilder.Types.UntagResourceRequest, callback?: (err: AWSError, data: AmplifyUIBuilder.Types.UntagResourceResponse) => void): Request<AmplifyUIBuilder.Types.UntagResourceResponse, AWSError>;
210
+ /**
211
+ * Untags a resource with a specified Amazon Resource Name (ARN).
212
+ */
213
+ untagResource(callback?: (err: AWSError, data: AmplifyUIBuilder.Types.UntagResourceResponse) => void): Request<AmplifyUIBuilder.Types.UntagResourceResponse, AWSError>;
190
214
  /**
191
215
  * Updates an existing component.
192
216
  */
@@ -1668,7 +1692,6 @@ declare namespace AmplifyUIBuilder {
1668
1692
  */
1669
1693
  nextToken?: String;
1670
1694
  }
1671
- export type ListComponentsLimit = number;
1672
1695
  export interface ListComponentsRequest {
1673
1696
  /**
1674
1697
  * The unique ID for the Amplify app.
@@ -1685,7 +1708,7 @@ declare namespace AmplifyUIBuilder {
1685
1708
  /**
1686
1709
  * The maximum number of components to retrieve.
1687
1710
  */
1688
- maxResults?: ListComponentsLimit;
1711
+ maxResults?: ListEntityLimit;
1689
1712
  }
1690
1713
  export interface ListComponentsResponse {
1691
1714
  /**
@@ -1697,7 +1720,7 @@ declare namespace AmplifyUIBuilder {
1697
1720
  */
1698
1721
  nextToken?: String;
1699
1722
  }
1700
- export type ListFormsLimit = number;
1723
+ export type ListEntityLimit = number;
1701
1724
  export interface ListFormsRequest {
1702
1725
  /**
1703
1726
  * The unique ID for the Amplify app.
@@ -1714,7 +1737,7 @@ declare namespace AmplifyUIBuilder {
1714
1737
  /**
1715
1738
  * The maximum number of forms to retrieve.
1716
1739
  */
1717
- maxResults?: ListFormsLimit;
1740
+ maxResults?: ListEntityLimit;
1718
1741
  }
1719
1742
  export interface ListFormsResponse {
1720
1743
  /**
@@ -1726,7 +1749,18 @@ declare namespace AmplifyUIBuilder {
1726
1749
  */
1727
1750
  nextToken?: String;
1728
1751
  }
1729
- export type ListThemesLimit = number;
1752
+ export interface ListTagsForResourceRequest {
1753
+ /**
1754
+ * The Amazon Resource Name (ARN) to use to list tags.
1755
+ */
1756
+ resourceArn: String;
1757
+ }
1758
+ export interface ListTagsForResourceResponse {
1759
+ /**
1760
+ * A list of tag key value pairs for a specified Amazon Resource Name (ARN).
1761
+ */
1762
+ tags: Tags;
1763
+ }
1730
1764
  export interface ListThemesRequest {
1731
1765
  /**
1732
1766
  * The unique ID for the Amplify app.
@@ -1743,7 +1777,7 @@ declare namespace AmplifyUIBuilder {
1743
1777
  /**
1744
1778
  * The maximum number of theme results to return in the response.
1745
1779
  */
1746
- maxResults?: ListThemesLimit;
1780
+ maxResults?: ListEntityLimit;
1747
1781
  }
1748
1782
  export interface ListThemesResponse {
1749
1783
  /**
@@ -1977,6 +2011,19 @@ declare namespace AmplifyUIBuilder {
1977
2011
  export type String = string;
1978
2012
  export type SyntheticTimestamp_date_time = Date;
1979
2013
  export type TagKey = string;
2014
+ export type TagKeyList = TagKey[];
2015
+ export interface TagResourceRequest {
2016
+ /**
2017
+ * The Amazon Resource Name (ARN) to use to tag a resource.
2018
+ */
2019
+ resourceArn: String;
2020
+ /**
2021
+ * A list of tag key value pairs for a specified Amazon Resource Name (ARN).
2022
+ */
2023
+ tags: Tags;
2024
+ }
2025
+ export interface TagResourceResponse {
2026
+ }
1980
2027
  export type TagValue = string;
1981
2028
  export type Tags = {[key: string]: TagValue};
1982
2029
  export interface Theme {
@@ -2060,6 +2107,18 @@ declare namespace AmplifyUIBuilder {
2060
2107
  }
2061
2108
  export type ThemeValuesList = ThemeValues[];
2062
2109
  export type TokenProviders = "figma"|string;
2110
+ export interface UntagResourceRequest {
2111
+ /**
2112
+ * The Amazon Resource Name (ARN) to use to untag a resource.
2113
+ */
2114
+ resourceArn: String;
2115
+ /**
2116
+ * The tag keys to use to untag a resource.
2117
+ */
2118
+ tagKeys: TagKeyList;
2119
+ }
2120
+ export interface UntagResourceResponse {
2121
+ }
2063
2122
  export interface UpdateComponentData {
2064
2123
  /**
2065
2124
  * The unique ID of the component to update.
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1566.0',
86
+ VERSION: '2.1567.0',
87
87
 
88
88
  /**
89
89
  * @api private
@@ -395,7 +395,7 @@ return /******/ (function(modules) { // webpackBootstrap
395
395
  /**
396
396
  * @constant
397
397
  */
398
- VERSION: '2.1566.0',
398
+ VERSION: '2.1567.0',
399
399
 
400
400
  /**
401
401
  * @api private
@@ -62757,7 +62757,7 @@ return /******/ (function(modules) { // webpackBootstrap
62757
62757
  /* 1160 */
62758
62758
  /***/ (function(module, exports) {
62759
62759
 
62760
- module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-08-11","endpointPrefix":"amplifyuibuilder","jsonVersion":"1.1","protocol":"rest-json","serviceFullName":"AWS Amplify UI Builder","serviceId":"AmplifyUIBuilder","signatureVersion":"v4","signingName":"amplifyuibuilder","uid":"amplifyuibuilder-2021-08-11"},"operations":{"CreateComponent":{"http":{"requestUri":"/app/{appId}/environment/{environmentName}/components","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","componentToCreate"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"clientToken":{"idempotencyToken":true,"location":"querystring","locationName":"clientToken"},"componentToCreate":{"type":"structure","required":["name","componentType","properties","variants","overrides","bindingProperties"],"members":{"name":{},"sourceId":{},"componentType":{},"properties":{"shape":"S6"},"children":{"shape":"Se"},"variants":{"shape":"Sk"},"overrides":{"shape":"Sn"},"bindingProperties":{"shape":"Sp"},"collectionProperties":{"shape":"Sv"},"tags":{"shape":"S11"},"events":{"shape":"Sg"},"schemaVersion":{}}}},"payload":"componentToCreate"},"output":{"type":"structure","members":{"entity":{"shape":"S15"}},"payload":"entity"},"idempotent":true},"CreateForm":{"http":{"requestUri":"/app/{appId}/environment/{environmentName}/forms","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","formToCreate"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"clientToken":{"idempotencyToken":true,"location":"querystring","locationName":"clientToken"},"formToCreate":{"type":"structure","required":["name","dataType","formActionType","fields","style","sectionalElements","schemaVersion"],"members":{"name":{},"dataType":{"shape":"S1b"},"formActionType":{},"fields":{"shape":"S1e"},"style":{"shape":"S20"},"sectionalElements":{"shape":"S22"},"schemaVersion":{},"cta":{"shape":"S24"},"tags":{"shape":"S11"},"labelDecorator":{}}}},"payload":"formToCreate"},"output":{"type":"structure","members":{"entity":{"shape":"S29"}},"payload":"entity"},"idempotent":true},"CreateTheme":{"http":{"requestUri":"/app/{appId}/environment/{environmentName}/themes","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","themeToCreate"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"clientToken":{"idempotencyToken":true,"location":"querystring","locationName":"clientToken"},"themeToCreate":{"type":"structure","required":["name","values"],"members":{"name":{},"values":{"shape":"S2d"},"overrides":{"shape":"S2d"},"tags":{"shape":"S11"}}}},"payload":"themeToCreate"},"output":{"type":"structure","members":{"entity":{"shape":"S2h"}},"payload":"entity"},"idempotent":true},"DeleteComponent":{"http":{"method":"DELETE","requestUri":"/app/{appId}/environment/{environmentName}/components/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"}}},"idempotent":true},"DeleteForm":{"http":{"method":"DELETE","requestUri":"/app/{appId}/environment/{environmentName}/forms/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"}}},"idempotent":true},"DeleteTheme":{"http":{"method":"DELETE","requestUri":"/app/{appId}/environment/{environmentName}/themes/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"}}},"idempotent":true},"ExchangeCodeForToken":{"http":{"requestUri":"/tokens/{provider}","responseCode":200},"input":{"type":"structure","required":["provider","request"],"members":{"provider":{"location":"uri","locationName":"provider"},"request":{"type":"structure","required":["code","redirectUri"],"members":{"code":{"shape":"S2o"},"redirectUri":{},"clientId":{"shape":"S2o"}}}},"payload":"request"},"output":{"type":"structure","required":["accessToken","expiresIn","refreshToken"],"members":{"accessToken":{"shape":"S2o"},"expiresIn":{"type":"integer"},"refreshToken":{"shape":"S2o"}}}},"ExportComponents":{"http":{"method":"GET","requestUri":"/export/app/{appId}/environment/{environmentName}/components","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","required":["entities"],"members":{"entities":{"type":"list","member":{"shape":"S15"}},"nextToken":{}}}},"ExportForms":{"http":{"method":"GET","requestUri":"/export/app/{appId}/environment/{environmentName}/forms","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","required":["entities"],"members":{"entities":{"type":"list","member":{"shape":"S29"}},"nextToken":{}}}},"ExportThemes":{"http":{"method":"GET","requestUri":"/export/app/{appId}/environment/{environmentName}/themes","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","required":["entities"],"members":{"entities":{"type":"list","member":{"shape":"S2h"}},"nextToken":{}}}},"GetCodegenJob":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/codegen-jobs/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"}}},"output":{"type":"structure","members":{"job":{"shape":"S32"}},"payload":"job"}},"GetComponent":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/components/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"}}},"output":{"type":"structure","members":{"component":{"shape":"S15"}},"payload":"component"}},"GetForm":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/forms/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"}}},"output":{"type":"structure","members":{"form":{"shape":"S29"}},"payload":"form"}},"GetMetadata":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/metadata","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"}}},"output":{"type":"structure","required":["features"],"members":{"features":{"type":"map","key":{},"value":{}}}}},"GetTheme":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/themes/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"}}},"output":{"type":"structure","members":{"theme":{"shape":"S2h"}},"payload":"theme"}},"ListCodegenJobs":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/codegen-jobs","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"nextToken":{"location":"querystring","locationName":"nextToken"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"}}},"output":{"type":"structure","required":["entities"],"members":{"entities":{"type":"list","member":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{},"environmentName":{},"id":{},"createdAt":{"shape":"S17"},"modifiedAt":{"shape":"S17"}}}},"nextToken":{}}}},"ListComponents":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/components","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"nextToken":{"location":"querystring","locationName":"nextToken"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"}}},"output":{"type":"structure","required":["entities"],"members":{"entities":{"type":"list","member":{"type":"structure","required":["appId","environmentName","id","name","componentType"],"members":{"appId":{},"environmentName":{},"id":{},"name":{},"componentType":{}}}},"nextToken":{}}}},"ListForms":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/forms","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"nextToken":{"location":"querystring","locationName":"nextToken"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"}}},"output":{"type":"structure","required":["entities"],"members":{"entities":{"type":"list","member":{"type":"structure","required":["appId","dataType","environmentName","formActionType","id","name"],"members":{"appId":{},"dataType":{"shape":"S1b"},"environmentName":{},"formActionType":{},"id":{},"name":{}}}},"nextToken":{}}}},"ListThemes":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/themes","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"nextToken":{"location":"querystring","locationName":"nextToken"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"}}},"output":{"type":"structure","required":["entities"],"members":{"entities":{"type":"list","member":{"type":"structure","required":["appId","environmentName","id","name"],"members":{"appId":{},"environmentName":{},"id":{},"name":{}}}},"nextToken":{}}}},"PutMetadataFlag":{"http":{"method":"PUT","requestUri":"/app/{appId}/environment/{environmentName}/metadata/features/{featureName}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","featureName","body"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"featureName":{"location":"uri","locationName":"featureName"},"body":{"type":"structure","required":["newValue"],"members":{"newValue":{}}}},"payload":"body"}},"RefreshToken":{"http":{"requestUri":"/tokens/{provider}/refresh","responseCode":200},"input":{"type":"structure","required":["provider","refreshTokenBody"],"members":{"provider":{"location":"uri","locationName":"provider"},"refreshTokenBody":{"type":"structure","required":["token"],"members":{"token":{"shape":"S2o"},"clientId":{"shape":"S2o"}}}},"payload":"refreshTokenBody"},"output":{"type":"structure","required":["accessToken","expiresIn"],"members":{"accessToken":{"shape":"S2o"},"expiresIn":{"type":"integer"}}}},"StartCodegenJob":{"http":{"requestUri":"/app/{appId}/environment/{environmentName}/codegen-jobs","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","codegenJobToCreate"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"clientToken":{"idempotencyToken":true,"location":"querystring","locationName":"clientToken"},"codegenJobToCreate":{"type":"structure","required":["renderConfig"],"members":{"renderConfig":{"shape":"S33"},"genericDataSchema":{"shape":"S3d"},"autoGenerateForms":{"type":"boolean"},"features":{"shape":"S3v"},"tags":{"shape":"S11"}}}},"payload":"codegenJobToCreate"},"output":{"type":"structure","members":{"entity":{"shape":"S32"}},"payload":"entity"}},"UpdateComponent":{"http":{"method":"PATCH","requestUri":"/app/{appId}/environment/{environmentName}/components/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id","updatedComponent"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"},"clientToken":{"idempotencyToken":true,"location":"querystring","locationName":"clientToken"},"updatedComponent":{"type":"structure","members":{"id":{},"name":{},"sourceId":{},"componentType":{},"properties":{"shape":"S6"},"children":{"shape":"Se"},"variants":{"shape":"Sk"},"overrides":{"shape":"Sn"},"bindingProperties":{"shape":"Sp"},"collectionProperties":{"shape":"Sv"},"events":{"shape":"Sg"},"schemaVersion":{}}}},"payload":"updatedComponent"},"output":{"type":"structure","members":{"entity":{"shape":"S15"}},"payload":"entity"},"idempotent":true},"UpdateForm":{"http":{"method":"PATCH","requestUri":"/app/{appId}/environment/{environmentName}/forms/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id","updatedForm"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"},"clientToken":{"idempotencyToken":true,"location":"querystring","locationName":"clientToken"},"updatedForm":{"type":"structure","members":{"name":{},"dataType":{"shape":"S1b"},"formActionType":{},"fields":{"shape":"S1e"},"style":{"shape":"S20"},"sectionalElements":{"shape":"S22"},"schemaVersion":{},"cta":{"shape":"S24"},"labelDecorator":{}}}},"payload":"updatedForm"},"output":{"type":"structure","members":{"entity":{"shape":"S29"}},"payload":"entity"},"idempotent":true},"UpdateTheme":{"http":{"method":"PATCH","requestUri":"/app/{appId}/environment/{environmentName}/themes/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id","updatedTheme"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"},"clientToken":{"idempotencyToken":true,"location":"querystring","locationName":"clientToken"},"updatedTheme":{"type":"structure","required":["values"],"members":{"id":{},"name":{},"values":{"shape":"S2d"},"overrides":{"shape":"S2d"}}}},"payload":"updatedTheme"},"output":{"type":"structure","members":{"entity":{"shape":"S2h"}},"payload":"entity"},"idempotent":true}},"shapes":{"S6":{"type":"map","key":{},"value":{"shape":"S7"}},"S7":{"type":"structure","members":{"value":{},"bindingProperties":{"shape":"S8"},"collectionBindingProperties":{"shape":"S8"},"defaultValue":{},"model":{},"bindings":{"type":"map","key":{},"value":{"type":"structure","required":["element","property"],"members":{"element":{},"property":{}}}},"event":{},"userAttribute":{},"concat":{"type":"list","member":{"shape":"S7"}},"condition":{"type":"structure","members":{"property":{},"field":{},"operator":{},"operand":{},"then":{"shape":"S7"},"else":{"shape":"S7"},"operandType":{}}},"configured":{"type":"boolean"},"type":{},"importedValue":{},"componentName":{},"property":{}}},"S8":{"type":"structure","required":["property"],"members":{"property":{},"field":{}}},"Se":{"type":"list","member":{"type":"structure","required":["componentType","name","properties"],"members":{"componentType":{},"name":{},"properties":{"shape":"S6"},"children":{"shape":"Se"},"events":{"shape":"Sg"},"sourceId":{}}}},"Sg":{"type":"map","key":{},"value":{"type":"structure","members":{"action":{},"parameters":{"type":"structure","members":{"type":{"shape":"S7"},"url":{"shape":"S7"},"anchor":{"shape":"S7"},"target":{"shape":"S7"},"global":{"shape":"S7"},"model":{},"id":{"shape":"S7"},"fields":{"shape":"S6"},"state":{"type":"structure","required":["componentName","property","set"],"members":{"componentName":{},"property":{},"set":{"shape":"S7"}}}}},"bindingEvent":{}}}},"Sk":{"type":"list","member":{"type":"structure","members":{"variantValues":{"type":"map","key":{},"value":{}},"overrides":{"shape":"Sn"}}}},"Sn":{"type":"map","key":{},"value":{"type":"map","key":{},"value":{}}},"Sp":{"type":"map","key":{},"value":{"type":"structure","members":{"type":{},"bindingProperties":{"type":"structure","members":{"model":{},"field":{},"predicates":{"shape":"Ss"},"userAttribute":{},"bucket":{},"key":{},"defaultValue":{},"slotName":{}}},"defaultValue":{}}}},"Ss":{"type":"list","member":{"shape":"St"}},"St":{"type":"structure","members":{"or":{"shape":"Ss"},"and":{"shape":"Ss"},"field":{},"operator":{},"operand":{},"operandType":{}}},"Sv":{"type":"map","key":{},"value":{"type":"structure","required":["model"],"members":{"model":{},"sort":{"type":"list","member":{"type":"structure","required":["field","direction"],"members":{"field":{},"direction":{}}}},"predicate":{"shape":"St"},"identifiers":{"type":"list","member":{}}}}},"S11":{"type":"map","key":{},"value":{}},"S15":{"type":"structure","required":["appId","environmentName","id","name","componentType","properties","variants","overrides","bindingProperties","createdAt"],"members":{"appId":{},"environmentName":{},"sourceId":{},"id":{},"name":{},"componentType":{},"properties":{"shape":"S6"},"children":{"shape":"Se"},"variants":{"shape":"Sk"},"overrides":{"shape":"Sn"},"bindingProperties":{"shape":"Sp"},"collectionProperties":{"shape":"Sv"},"createdAt":{"shape":"S17"},"modifiedAt":{"shape":"S17"},"tags":{"shape":"S11"},"events":{"shape":"Sg"},"schemaVersion":{}}},"S17":{"type":"timestamp","timestampFormat":"iso8601"},"S1b":{"type":"structure","required":["dataSourceType","dataTypeName"],"members":{"dataSourceType":{},"dataTypeName":{}}},"S1e":{"type":"map","key":{},"value":{"type":"structure","members":{"label":{},"position":{"shape":"S1g"},"excluded":{"type":"boolean"},"inputType":{"type":"structure","required":["type"],"members":{"type":{},"required":{"type":"boolean"},"readOnly":{"type":"boolean"},"placeholder":{},"defaultValue":{},"descriptiveText":{},"defaultChecked":{"type":"boolean"},"defaultCountryCode":{},"valueMappings":{"type":"structure","required":["values"],"members":{"values":{"type":"list","member":{"type":"structure","required":["value"],"members":{"displayValue":{"shape":"S1m"},"value":{"shape":"S1m"}}}},"bindingProperties":{"type":"map","key":{},"value":{"type":"structure","members":{"type":{},"bindingProperties":{"type":"structure","members":{"model":{}}}}}}}},"name":{},"minValue":{"type":"float"},"maxValue":{"type":"float"},"step":{"type":"float"},"value":{},"isArray":{"type":"boolean"},"fileUploaderConfig":{"type":"structure","required":["accessLevel","acceptedFileTypes"],"members":{"accessLevel":{},"acceptedFileTypes":{"shape":"S1v"},"showThumbnails":{"type":"boolean"},"isResumable":{"type":"boolean"},"maxFileCount":{"type":"integer"},"maxSize":{"type":"integer"}}}}},"validations":{"type":"list","member":{"type":"structure","required":["type"],"members":{"type":{},"strValues":{"shape":"S1v"},"numValues":{"type":"list","member":{"type":"integer"}},"validationMessage":{}}}}}}},"S1g":{"type":"structure","members":{"fixed":{},"rightOf":{},"below":{}},"union":true},"S1m":{"type":"structure","members":{"value":{},"bindingProperties":{"type":"structure","required":["property"],"members":{"property":{},"field":{}}},"concat":{"type":"list","member":{"shape":"S1m"}}}},"S1v":{"type":"list","member":{}},"S20":{"type":"structure","members":{"horizontalGap":{"shape":"S21"},"verticalGap":{"shape":"S21"},"outerPadding":{"shape":"S21"}}},"S21":{"type":"structure","members":{"tokenReference":{},"value":{}},"union":true},"S22":{"type":"map","key":{},"value":{"type":"structure","required":["type"],"members":{"type":{},"position":{"shape":"S1g"},"text":{},"level":{"type":"integer"},"orientation":{},"excluded":{"type":"boolean"}}}},"S24":{"type":"structure","members":{"position":{},"clear":{"shape":"S26"},"cancel":{"shape":"S26"},"submit":{"shape":"S26"}}},"S26":{"type":"structure","members":{"excluded":{"type":"boolean"},"children":{},"position":{"shape":"S1g"}}},"S29":{"type":"structure","required":["appId","environmentName","id","name","formActionType","style","dataType","fields","sectionalElements","schemaVersion"],"members":{"appId":{},"environmentName":{},"id":{},"name":{},"formActionType":{},"style":{"shape":"S20"},"dataType":{"shape":"S1b"},"fields":{"shape":"S1e"},"sectionalElements":{"shape":"S22"},"schemaVersion":{},"tags":{"shape":"S11"},"cta":{"shape":"S24"},"labelDecorator":{}}},"S2d":{"type":"list","member":{"type":"structure","members":{"key":{},"value":{"type":"structure","members":{"value":{},"children":{"shape":"S2d"}}}}}},"S2h":{"type":"structure","required":["appId","environmentName","id","name","createdAt","values"],"members":{"appId":{},"environmentName":{},"id":{},"name":{},"createdAt":{"shape":"S17"},"modifiedAt":{"shape":"S17"},"values":{"shape":"S2d"},"overrides":{"shape":"S2d"},"tags":{"shape":"S11"}}},"S2o":{"type":"string","sensitive":true},"S32":{"type":"structure","required":["id","appId","environmentName"],"members":{"id":{},"appId":{},"environmentName":{},"renderConfig":{"shape":"S33"},"genericDataSchema":{"shape":"S3d"},"autoGenerateForms":{"type":"boolean"},"features":{"shape":"S3v"},"status":{},"statusMessage":{},"asset":{"type":"structure","members":{"downloadUrl":{}}},"tags":{"shape":"S11"},"createdAt":{"shape":"S17"},"modifiedAt":{"shape":"S17"},"dependencies":{"type":"list","member":{"type":"structure","members":{"name":{},"supportedVersion":{},"isSemVer":{"type":"boolean"},"reason":{}}}}}},"S33":{"type":"structure","members":{"react":{"type":"structure","members":{"module":{},"target":{},"script":{},"renderTypeDeclarations":{"type":"boolean"},"inlineSourceMap":{"type":"boolean"},"apiConfiguration":{"type":"structure","members":{"graphQLConfig":{"type":"structure","required":["typesFilePath","queriesFilePath","mutationsFilePath","subscriptionsFilePath","fragmentsFilePath"],"members":{"typesFilePath":{},"queriesFilePath":{},"mutationsFilePath":{},"subscriptionsFilePath":{},"fragmentsFilePath":{}}},"dataStoreConfig":{"type":"structure","members":{}},"noApiConfig":{"type":"structure","members":{}}},"union":true},"dependencies":{"type":"map","key":{},"value":{}}}}},"union":true},"S3d":{"type":"structure","required":["dataSourceType","models","enums","nonModels"],"members":{"dataSourceType":{},"models":{"type":"map","key":{},"value":{"type":"structure","required":["fields","primaryKeys"],"members":{"fields":{"type":"map","key":{},"value":{"shape":"S3i"}},"isJoinTable":{"type":"boolean"},"primaryKeys":{"type":"list","member":{}}}}},"enums":{"type":"map","key":{},"value":{"type":"structure","required":["values"],"members":{"values":{"type":"list","member":{}}}}},"nonModels":{"type":"map","key":{},"value":{"type":"structure","required":["fields"],"members":{"fields":{"type":"map","key":{},"value":{"shape":"S3i"}}}}}}},"S3i":{"type":"structure","required":["dataType","dataTypeValue","required","readOnly","isArray"],"members":{"dataType":{},"dataTypeValue":{},"required":{"type":"boolean"},"readOnly":{"type":"boolean"},"isArray":{"type":"boolean"},"relationship":{"type":"structure","required":["type","relatedModelName"],"members":{"type":{},"relatedModelName":{},"relatedModelFields":{"type":"list","member":{}},"canUnlinkAssociatedModel":{"type":"boolean"},"relatedJoinFieldName":{},"relatedJoinTableName":{},"belongsToFieldOnRelatedModel":{},"associatedFields":{"type":"list","member":{}},"isHasManyIndex":{"type":"boolean"}}}}},"S3v":{"type":"structure","members":{"isRelationshipSupported":{"type":"boolean"},"isNonModelSupported":{"type":"boolean"}}}}}
62760
+ module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-08-11","endpointPrefix":"amplifyuibuilder","jsonVersion":"1.1","protocol":"rest-json","serviceFullName":"AWS Amplify UI Builder","serviceId":"AmplifyUIBuilder","signatureVersion":"v4","signingName":"amplifyuibuilder","uid":"amplifyuibuilder-2021-08-11"},"operations":{"CreateComponent":{"http":{"requestUri":"/app/{appId}/environment/{environmentName}/components","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","componentToCreate"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"clientToken":{"idempotencyToken":true,"location":"querystring","locationName":"clientToken"},"componentToCreate":{"type":"structure","required":["name","componentType","properties","variants","overrides","bindingProperties"],"members":{"name":{},"sourceId":{},"componentType":{},"properties":{"shape":"S6"},"children":{"shape":"Se"},"variants":{"shape":"Sk"},"overrides":{"shape":"Sn"},"bindingProperties":{"shape":"Sp"},"collectionProperties":{"shape":"Sv"},"tags":{"shape":"S11"},"events":{"shape":"Sg"},"schemaVersion":{}}}},"payload":"componentToCreate"},"output":{"type":"structure","members":{"entity":{"shape":"S15"}},"payload":"entity"},"idempotent":true},"CreateForm":{"http":{"requestUri":"/app/{appId}/environment/{environmentName}/forms","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","formToCreate"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"clientToken":{"idempotencyToken":true,"location":"querystring","locationName":"clientToken"},"formToCreate":{"type":"structure","required":["name","dataType","formActionType","fields","style","sectionalElements","schemaVersion"],"members":{"name":{},"dataType":{"shape":"S1b"},"formActionType":{},"fields":{"shape":"S1e"},"style":{"shape":"S20"},"sectionalElements":{"shape":"S22"},"schemaVersion":{},"cta":{"shape":"S24"},"tags":{"shape":"S11"},"labelDecorator":{}}}},"payload":"formToCreate"},"output":{"type":"structure","members":{"entity":{"shape":"S29"}},"payload":"entity"},"idempotent":true},"CreateTheme":{"http":{"requestUri":"/app/{appId}/environment/{environmentName}/themes","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","themeToCreate"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"clientToken":{"idempotencyToken":true,"location":"querystring","locationName":"clientToken"},"themeToCreate":{"type":"structure","required":["name","values"],"members":{"name":{},"values":{"shape":"S2d"},"overrides":{"shape":"S2d"},"tags":{"shape":"S11"}}}},"payload":"themeToCreate"},"output":{"type":"structure","members":{"entity":{"shape":"S2h"}},"payload":"entity"},"idempotent":true},"DeleteComponent":{"http":{"method":"DELETE","requestUri":"/app/{appId}/environment/{environmentName}/components/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"}}},"idempotent":true},"DeleteForm":{"http":{"method":"DELETE","requestUri":"/app/{appId}/environment/{environmentName}/forms/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"}}},"idempotent":true},"DeleteTheme":{"http":{"method":"DELETE","requestUri":"/app/{appId}/environment/{environmentName}/themes/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"}}},"idempotent":true},"ExchangeCodeForToken":{"http":{"requestUri":"/tokens/{provider}","responseCode":200},"input":{"type":"structure","required":["provider","request"],"members":{"provider":{"location":"uri","locationName":"provider"},"request":{"type":"structure","required":["code","redirectUri"],"members":{"code":{"shape":"S2o"},"redirectUri":{},"clientId":{"shape":"S2o"}}}},"payload":"request"},"output":{"type":"structure","required":["accessToken","expiresIn","refreshToken"],"members":{"accessToken":{"shape":"S2o"},"expiresIn":{"type":"integer"},"refreshToken":{"shape":"S2o"}}}},"ExportComponents":{"http":{"method":"GET","requestUri":"/export/app/{appId}/environment/{environmentName}/components","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","required":["entities"],"members":{"entities":{"type":"list","member":{"shape":"S15"}},"nextToken":{}}}},"ExportForms":{"http":{"method":"GET","requestUri":"/export/app/{appId}/environment/{environmentName}/forms","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","required":["entities"],"members":{"entities":{"type":"list","member":{"shape":"S29"}},"nextToken":{}}}},"ExportThemes":{"http":{"method":"GET","requestUri":"/export/app/{appId}/environment/{environmentName}/themes","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","required":["entities"],"members":{"entities":{"type":"list","member":{"shape":"S2h"}},"nextToken":{}}}},"GetCodegenJob":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/codegen-jobs/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"}}},"output":{"type":"structure","members":{"job":{"shape":"S32"}},"payload":"job"}},"GetComponent":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/components/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"}}},"output":{"type":"structure","members":{"component":{"shape":"S15"}},"payload":"component"}},"GetForm":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/forms/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"}}},"output":{"type":"structure","members":{"form":{"shape":"S29"}},"payload":"form"}},"GetMetadata":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/metadata","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"}}},"output":{"type":"structure","required":["features"],"members":{"features":{"type":"map","key":{},"value":{}}}}},"GetTheme":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/themes/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"}}},"output":{"type":"structure","members":{"theme":{"shape":"S2h"}},"payload":"theme"}},"ListCodegenJobs":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/codegen-jobs","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"nextToken":{"location":"querystring","locationName":"nextToken"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"}}},"output":{"type":"structure","required":["entities"],"members":{"entities":{"type":"list","member":{"type":"structure","required":["appId","environmentName","id"],"members":{"appId":{},"environmentName":{},"id":{},"createdAt":{"shape":"S17"},"modifiedAt":{"shape":"S17"}}}},"nextToken":{}}}},"ListComponents":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/components","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"nextToken":{"location":"querystring","locationName":"nextToken"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"}}},"output":{"type":"structure","required":["entities"],"members":{"entities":{"type":"list","member":{"type":"structure","required":["appId","environmentName","id","name","componentType"],"members":{"appId":{},"environmentName":{},"id":{},"name":{},"componentType":{}}}},"nextToken":{}}}},"ListForms":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/forms","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"nextToken":{"location":"querystring","locationName":"nextToken"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"}}},"output":{"type":"structure","required":["entities"],"members":{"entities":{"type":"list","member":{"type":"structure","required":["appId","dataType","environmentName","formActionType","id","name"],"members":{"appId":{},"dataType":{"shape":"S1b"},"environmentName":{},"formActionType":{},"id":{},"name":{}}}},"nextToken":{}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"}}},"output":{"type":"structure","required":["tags"],"members":{"tags":{"shape":"S11"}}}},"ListThemes":{"http":{"method":"GET","requestUri":"/app/{appId}/environment/{environmentName}/themes","responseCode":200},"input":{"type":"structure","required":["appId","environmentName"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"nextToken":{"location":"querystring","locationName":"nextToken"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"}}},"output":{"type":"structure","required":["entities"],"members":{"entities":{"type":"list","member":{"type":"structure","required":["appId","environmentName","id","name"],"members":{"appId":{},"environmentName":{},"id":{},"name":{}}}},"nextToken":{}}}},"PutMetadataFlag":{"http":{"method":"PUT","requestUri":"/app/{appId}/environment/{environmentName}/metadata/features/{featureName}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","featureName","body"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"featureName":{"location":"uri","locationName":"featureName"},"body":{"type":"structure","required":["newValue"],"members":{"newValue":{}}}},"payload":"body"},"idempotent":true},"RefreshToken":{"http":{"requestUri":"/tokens/{provider}/refresh","responseCode":200},"input":{"type":"structure","required":["provider","refreshTokenBody"],"members":{"provider":{"location":"uri","locationName":"provider"},"refreshTokenBody":{"type":"structure","required":["token"],"members":{"token":{"shape":"S2o"},"clientId":{"shape":"S2o"}}}},"payload":"refreshTokenBody"},"output":{"type":"structure","required":["accessToken","expiresIn"],"members":{"accessToken":{"shape":"S2o"},"expiresIn":{"type":"integer"}}}},"StartCodegenJob":{"http":{"requestUri":"/app/{appId}/environment/{environmentName}/codegen-jobs","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","codegenJobToCreate"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"clientToken":{"idempotencyToken":true,"location":"querystring","locationName":"clientToken"},"codegenJobToCreate":{"type":"structure","required":["renderConfig"],"members":{"renderConfig":{"shape":"S33"},"genericDataSchema":{"shape":"S3d"},"autoGenerateForms":{"type":"boolean"},"features":{"shape":"S3v"},"tags":{"shape":"S11"}}}},"payload":"codegenJobToCreate"},"output":{"type":"structure","members":{"entity":{"shape":"S32"}},"payload":"entity"}},"TagResource":{"http":{"requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn","tags"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tags":{"shape":"S11"}}},"output":{"type":"structure","members":{}},"idempotent":true},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn","tagKeys"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tagKeys":{"location":"querystring","locationName":"tagKeys","type":"list","member":{}}}},"output":{"type":"structure","members":{}},"idempotent":true},"UpdateComponent":{"http":{"method":"PATCH","requestUri":"/app/{appId}/environment/{environmentName}/components/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id","updatedComponent"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"},"clientToken":{"idempotencyToken":true,"location":"querystring","locationName":"clientToken"},"updatedComponent":{"type":"structure","members":{"id":{},"name":{},"sourceId":{},"componentType":{},"properties":{"shape":"S6"},"children":{"shape":"Se"},"variants":{"shape":"Sk"},"overrides":{"shape":"Sn"},"bindingProperties":{"shape":"Sp"},"collectionProperties":{"shape":"Sv"},"events":{"shape":"Sg"},"schemaVersion":{}}}},"payload":"updatedComponent"},"output":{"type":"structure","members":{"entity":{"shape":"S15"}},"payload":"entity"},"idempotent":true},"UpdateForm":{"http":{"method":"PATCH","requestUri":"/app/{appId}/environment/{environmentName}/forms/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id","updatedForm"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"},"clientToken":{"idempotencyToken":true,"location":"querystring","locationName":"clientToken"},"updatedForm":{"type":"structure","members":{"name":{},"dataType":{"shape":"S1b"},"formActionType":{},"fields":{"shape":"S1e"},"style":{"shape":"S20"},"sectionalElements":{"shape":"S22"},"schemaVersion":{},"cta":{"shape":"S24"},"labelDecorator":{}}}},"payload":"updatedForm"},"output":{"type":"structure","members":{"entity":{"shape":"S29"}},"payload":"entity"},"idempotent":true},"UpdateTheme":{"http":{"method":"PATCH","requestUri":"/app/{appId}/environment/{environmentName}/themes/{id}","responseCode":200},"input":{"type":"structure","required":["appId","environmentName","id","updatedTheme"],"members":{"appId":{"location":"uri","locationName":"appId"},"environmentName":{"location":"uri","locationName":"environmentName"},"id":{"location":"uri","locationName":"id"},"clientToken":{"idempotencyToken":true,"location":"querystring","locationName":"clientToken"},"updatedTheme":{"type":"structure","required":["values"],"members":{"id":{},"name":{},"values":{"shape":"S2d"},"overrides":{"shape":"S2d"}}}},"payload":"updatedTheme"},"output":{"type":"structure","members":{"entity":{"shape":"S2h"}},"payload":"entity"},"idempotent":true}},"shapes":{"S6":{"type":"map","key":{},"value":{"shape":"S7"}},"S7":{"type":"structure","members":{"value":{},"bindingProperties":{"shape":"S8"},"collectionBindingProperties":{"shape":"S8"},"defaultValue":{},"model":{},"bindings":{"type":"map","key":{},"value":{"type":"structure","required":["element","property"],"members":{"element":{},"property":{}}}},"event":{},"userAttribute":{},"concat":{"type":"list","member":{"shape":"S7"}},"condition":{"type":"structure","members":{"property":{},"field":{},"operator":{},"operand":{},"then":{"shape":"S7"},"else":{"shape":"S7"},"operandType":{}}},"configured":{"type":"boolean"},"type":{},"importedValue":{},"componentName":{},"property":{}}},"S8":{"type":"structure","required":["property"],"members":{"property":{},"field":{}}},"Se":{"type":"list","member":{"type":"structure","required":["componentType","name","properties"],"members":{"componentType":{},"name":{},"properties":{"shape":"S6"},"children":{"shape":"Se"},"events":{"shape":"Sg"},"sourceId":{}}}},"Sg":{"type":"map","key":{},"value":{"type":"structure","members":{"action":{},"parameters":{"type":"structure","members":{"type":{"shape":"S7"},"url":{"shape":"S7"},"anchor":{"shape":"S7"},"target":{"shape":"S7"},"global":{"shape":"S7"},"model":{},"id":{"shape":"S7"},"fields":{"shape":"S6"},"state":{"type":"structure","required":["componentName","property","set"],"members":{"componentName":{},"property":{},"set":{"shape":"S7"}}}}},"bindingEvent":{}}}},"Sk":{"type":"list","member":{"type":"structure","members":{"variantValues":{"type":"map","key":{},"value":{}},"overrides":{"shape":"Sn"}}}},"Sn":{"type":"map","key":{},"value":{"type":"map","key":{},"value":{}}},"Sp":{"type":"map","key":{},"value":{"type":"structure","members":{"type":{},"bindingProperties":{"type":"structure","members":{"model":{},"field":{},"predicates":{"shape":"Ss"},"userAttribute":{},"bucket":{},"key":{},"defaultValue":{},"slotName":{}}},"defaultValue":{}}}},"Ss":{"type":"list","member":{"shape":"St"}},"St":{"type":"structure","members":{"or":{"shape":"Ss"},"and":{"shape":"Ss"},"field":{},"operator":{},"operand":{},"operandType":{}}},"Sv":{"type":"map","key":{},"value":{"type":"structure","required":["model"],"members":{"model":{},"sort":{"type":"list","member":{"type":"structure","required":["field","direction"],"members":{"field":{},"direction":{}}}},"predicate":{"shape":"St"},"identifiers":{"type":"list","member":{}}}}},"S11":{"type":"map","key":{},"value":{}},"S15":{"type":"structure","required":["appId","environmentName","id","name","componentType","properties","variants","overrides","bindingProperties","createdAt"],"members":{"appId":{},"environmentName":{},"sourceId":{},"id":{},"name":{},"componentType":{},"properties":{"shape":"S6"},"children":{"shape":"Se"},"variants":{"shape":"Sk"},"overrides":{"shape":"Sn"},"bindingProperties":{"shape":"Sp"},"collectionProperties":{"shape":"Sv"},"createdAt":{"shape":"S17"},"modifiedAt":{"shape":"S17"},"tags":{"shape":"S11"},"events":{"shape":"Sg"},"schemaVersion":{}}},"S17":{"type":"timestamp","timestampFormat":"iso8601"},"S1b":{"type":"structure","required":["dataSourceType","dataTypeName"],"members":{"dataSourceType":{},"dataTypeName":{}}},"S1e":{"type":"map","key":{},"value":{"type":"structure","members":{"label":{},"position":{"shape":"S1g"},"excluded":{"type":"boolean"},"inputType":{"type":"structure","required":["type"],"members":{"type":{},"required":{"type":"boolean"},"readOnly":{"type":"boolean"},"placeholder":{},"defaultValue":{},"descriptiveText":{},"defaultChecked":{"type":"boolean"},"defaultCountryCode":{},"valueMappings":{"type":"structure","required":["values"],"members":{"values":{"type":"list","member":{"type":"structure","required":["value"],"members":{"displayValue":{"shape":"S1m"},"value":{"shape":"S1m"}}}},"bindingProperties":{"type":"map","key":{},"value":{"type":"structure","members":{"type":{},"bindingProperties":{"type":"structure","members":{"model":{}}}}}}}},"name":{},"minValue":{"type":"float"},"maxValue":{"type":"float"},"step":{"type":"float"},"value":{},"isArray":{"type":"boolean"},"fileUploaderConfig":{"type":"structure","required":["accessLevel","acceptedFileTypes"],"members":{"accessLevel":{},"acceptedFileTypes":{"shape":"S1v"},"showThumbnails":{"type":"boolean"},"isResumable":{"type":"boolean"},"maxFileCount":{"type":"integer"},"maxSize":{"type":"integer"}}}}},"validations":{"type":"list","member":{"type":"structure","required":["type"],"members":{"type":{},"strValues":{"shape":"S1v"},"numValues":{"type":"list","member":{"type":"integer"}},"validationMessage":{}}}}}}},"S1g":{"type":"structure","members":{"fixed":{},"rightOf":{},"below":{}},"union":true},"S1m":{"type":"structure","members":{"value":{},"bindingProperties":{"type":"structure","required":["property"],"members":{"property":{},"field":{}}},"concat":{"type":"list","member":{"shape":"S1m"}}}},"S1v":{"type":"list","member":{}},"S20":{"type":"structure","members":{"horizontalGap":{"shape":"S21"},"verticalGap":{"shape":"S21"},"outerPadding":{"shape":"S21"}}},"S21":{"type":"structure","members":{"tokenReference":{},"value":{}},"union":true},"S22":{"type":"map","key":{},"value":{"type":"structure","required":["type"],"members":{"type":{},"position":{"shape":"S1g"},"text":{},"level":{"type":"integer"},"orientation":{},"excluded":{"type":"boolean"}}}},"S24":{"type":"structure","members":{"position":{},"clear":{"shape":"S26"},"cancel":{"shape":"S26"},"submit":{"shape":"S26"}}},"S26":{"type":"structure","members":{"excluded":{"type":"boolean"},"children":{},"position":{"shape":"S1g"}}},"S29":{"type":"structure","required":["appId","environmentName","id","name","formActionType","style","dataType","fields","sectionalElements","schemaVersion"],"members":{"appId":{},"environmentName":{},"id":{},"name":{},"formActionType":{},"style":{"shape":"S20"},"dataType":{"shape":"S1b"},"fields":{"shape":"S1e"},"sectionalElements":{"shape":"S22"},"schemaVersion":{},"tags":{"shape":"S11"},"cta":{"shape":"S24"},"labelDecorator":{}}},"S2d":{"type":"list","member":{"type":"structure","members":{"key":{},"value":{"type":"structure","members":{"value":{},"children":{"shape":"S2d"}}}}}},"S2h":{"type":"structure","required":["appId","environmentName","id","name","createdAt","values"],"members":{"appId":{},"environmentName":{},"id":{},"name":{},"createdAt":{"shape":"S17"},"modifiedAt":{"shape":"S17"},"values":{"shape":"S2d"},"overrides":{"shape":"S2d"},"tags":{"shape":"S11"}}},"S2o":{"type":"string","sensitive":true},"S32":{"type":"structure","required":["id","appId","environmentName"],"members":{"id":{},"appId":{},"environmentName":{},"renderConfig":{"shape":"S33"},"genericDataSchema":{"shape":"S3d"},"autoGenerateForms":{"type":"boolean"},"features":{"shape":"S3v"},"status":{},"statusMessage":{},"asset":{"type":"structure","members":{"downloadUrl":{}}},"tags":{"shape":"S11"},"createdAt":{"shape":"S17"},"modifiedAt":{"shape":"S17"},"dependencies":{"type":"list","member":{"type":"structure","members":{"name":{},"supportedVersion":{},"isSemVer":{"type":"boolean"},"reason":{}}}}}},"S33":{"type":"structure","members":{"react":{"type":"structure","members":{"module":{},"target":{},"script":{},"renderTypeDeclarations":{"type":"boolean"},"inlineSourceMap":{"type":"boolean"},"apiConfiguration":{"type":"structure","members":{"graphQLConfig":{"type":"structure","required":["typesFilePath","queriesFilePath","mutationsFilePath","subscriptionsFilePath","fragmentsFilePath"],"members":{"typesFilePath":{},"queriesFilePath":{},"mutationsFilePath":{},"subscriptionsFilePath":{},"fragmentsFilePath":{}}},"dataStoreConfig":{"type":"structure","members":{}},"noApiConfig":{"type":"structure","members":{}}},"union":true},"dependencies":{"type":"map","key":{},"value":{}}}}},"union":true},"S3d":{"type":"structure","required":["dataSourceType","models","enums","nonModels"],"members":{"dataSourceType":{},"models":{"type":"map","key":{},"value":{"type":"structure","required":["fields","primaryKeys"],"members":{"fields":{"type":"map","key":{},"value":{"shape":"S3i"}},"isJoinTable":{"type":"boolean"},"primaryKeys":{"type":"list","member":{}}}}},"enums":{"type":"map","key":{},"value":{"type":"structure","required":["values"],"members":{"values":{"type":"list","member":{}}}}},"nonModels":{"type":"map","key":{},"value":{"type":"structure","required":["fields"],"members":{"fields":{"type":"map","key":{},"value":{"shape":"S3i"}}}}}}},"S3i":{"type":"structure","required":["dataType","dataTypeValue","required","readOnly","isArray"],"members":{"dataType":{},"dataTypeValue":{},"required":{"type":"boolean"},"readOnly":{"type":"boolean"},"isArray":{"type":"boolean"},"relationship":{"type":"structure","required":["type","relatedModelName"],"members":{"type":{},"relatedModelName":{},"relatedModelFields":{"type":"list","member":{}},"canUnlinkAssociatedModel":{"type":"boolean"},"relatedJoinFieldName":{},"relatedJoinTableName":{},"belongsToFieldOnRelatedModel":{},"associatedFields":{"type":"list","member":{}},"isHasManyIndex":{"type":"boolean"}}}}},"S3v":{"type":"structure","members":{"isRelationshipSupported":{"type":"boolean"},"isNonModelSupported":{"type":"boolean"}}}}}
62761
62761
 
62762
62762
  /***/ }),
62763
62763
  /* 1161 */
package/dist/aws-sdk.js CHANGED
@@ -1,4 +1,4 @@
1
- // AWS SDK for JavaScript v2.1566.0
1
+ // AWS SDK for JavaScript v2.1567.0
2
2
  // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  // License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
4
4
  (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
@@ -272912,7 +272912,7 @@ AWS.util.update(AWS, {
272912
272912
  /**
272913
272913
  * @constant
272914
272914
  */
272915
- VERSION: '2.1566.0',
272915
+ VERSION: '2.1567.0',
272916
272916
 
272917
272917
  /**
272918
272918
  * @api private
@@ -295161,7 +295161,7 @@ var LRUCache = /** @class */ (function () {
295161
295161
  }());
295162
295162
  exports.LRUCache = LRUCache;
295163
295163
  },{}],467:[function(require,module,exports){
295164
- // AWS SDK for JavaScript v2.1566.0
295164
+ // AWS SDK for JavaScript v2.1567.0
295165
295165
  // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
295166
295166
  // License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
295167
295167
  require('./browser_loader');