cdk-docker-image-deployment 0.0.46 → 0.0.48
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/.jsii +4 -4
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +19 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +30 -27
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +377 -134
- package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/devops-guru-2020-12-01.min.json +140 -125
- package/node_modules/aws-sdk/apis/eventbridge-2015-10-07.min.json +5 -1
- package/node_modules/aws-sdk/apis/globalaccelerator-2018-08-08.min.json +163 -109
- package/node_modules/aws-sdk/apis/managedblockchain-2018-09-24.min.json +173 -49
- package/node_modules/aws-sdk/apis/managedblockchain-2018-09-24.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.min.json +2 -1
- package/node_modules/aws-sdk/apis/rum-2018-05-10.min.json +360 -12
- package/node_modules/aws-sdk/apis/rum-2018-05-10.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +132 -132
- package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +311 -1
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +533 -12
- package/node_modules/aws-sdk/apis/support-app-2021-08-20.min.json +28 -1
- package/node_modules/aws-sdk/apis/workspaces-web-2020-07-08.min.json +290 -63
- package/node_modules/aws-sdk/apis/workspaces-web-2020-07-08.paginators.json +5 -0
- package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +3 -3
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +54 -40
- package/node_modules/aws-sdk/clients/configservice.d.ts +24 -24
- package/node_modules/aws-sdk/clients/connect.d.ts +327 -55
- package/node_modules/aws-sdk/clients/devopsguru.d.ts +26 -4
- package/node_modules/aws-sdk/clients/globalaccelerator.d.ts +60 -3
- package/node_modules/aws-sdk/clients/managedblockchain.d.ts +191 -46
- package/node_modules/aws-sdk/clients/resiliencehub.d.ts +7 -3
- package/node_modules/aws-sdk/clients/rum.d.ts +340 -5
- package/node_modules/aws-sdk/clients/s3.d.ts +1 -1
- package/node_modules/aws-sdk/clients/supportapp.d.ts +48 -10
- package/node_modules/aws-sdk/clients/workspacesweb.d.ts +199 -1
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +9 -5
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +25 -21
- package/node_modules/aws-sdk/dist/aws-sdk.js +735 -169
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +83 -83
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/event_listeners.js +7 -4
- package/node_modules/aws-sdk/lib/model/api.js +1 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +9 -9
|
@@ -35,6 +35,14 @@ declare class WorkSpacesWeb extends Service {
|
|
|
35
35
|
* Associates a trust store with a web portal.
|
|
36
36
|
*/
|
|
37
37
|
associateTrustStore(callback?: (err: AWSError, data: WorkSpacesWeb.Types.AssociateTrustStoreResponse) => void): Request<WorkSpacesWeb.Types.AssociateTrustStoreResponse, AWSError>;
|
|
38
|
+
/**
|
|
39
|
+
* Associates a user access logging settings resource with a web portal.
|
|
40
|
+
*/
|
|
41
|
+
associateUserAccessLoggingSettings(params: WorkSpacesWeb.Types.AssociateUserAccessLoggingSettingsRequest, callback?: (err: AWSError, data: WorkSpacesWeb.Types.AssociateUserAccessLoggingSettingsResponse) => void): Request<WorkSpacesWeb.Types.AssociateUserAccessLoggingSettingsResponse, AWSError>;
|
|
42
|
+
/**
|
|
43
|
+
* Associates a user access logging settings resource with a web portal.
|
|
44
|
+
*/
|
|
45
|
+
associateUserAccessLoggingSettings(callback?: (err: AWSError, data: WorkSpacesWeb.Types.AssociateUserAccessLoggingSettingsResponse) => void): Request<WorkSpacesWeb.Types.AssociateUserAccessLoggingSettingsResponse, AWSError>;
|
|
38
46
|
/**
|
|
39
47
|
* Associates a user settings resource with a web portal.
|
|
40
48
|
*/
|
|
@@ -83,6 +91,14 @@ declare class WorkSpacesWeb extends Service {
|
|
|
83
91
|
* Creates a trust store that can be associated with a web portal. A trust store contains certificate authority (CA) certificates. Once associated with a web portal, the browser in a streaming session will recognize certificates that have been issued using any of the CAs in the trust store. If your organization has internal websites that use certificates issued by private CAs, you should add the private CA certificate to the trust store.
|
|
84
92
|
*/
|
|
85
93
|
createTrustStore(callback?: (err: AWSError, data: WorkSpacesWeb.Types.CreateTrustStoreResponse) => void): Request<WorkSpacesWeb.Types.CreateTrustStoreResponse, AWSError>;
|
|
94
|
+
/**
|
|
95
|
+
* Creates a user access logging settings resource that can be associated with a web portal.
|
|
96
|
+
*/
|
|
97
|
+
createUserAccessLoggingSettings(params: WorkSpacesWeb.Types.CreateUserAccessLoggingSettingsRequest, callback?: (err: AWSError, data: WorkSpacesWeb.Types.CreateUserAccessLoggingSettingsResponse) => void): Request<WorkSpacesWeb.Types.CreateUserAccessLoggingSettingsResponse, AWSError>;
|
|
98
|
+
/**
|
|
99
|
+
* Creates a user access logging settings resource that can be associated with a web portal.
|
|
100
|
+
*/
|
|
101
|
+
createUserAccessLoggingSettings(callback?: (err: AWSError, data: WorkSpacesWeb.Types.CreateUserAccessLoggingSettingsResponse) => void): Request<WorkSpacesWeb.Types.CreateUserAccessLoggingSettingsResponse, AWSError>;
|
|
86
102
|
/**
|
|
87
103
|
* Creates a user settings resource that can be associated with a web portal. Once associated with a web portal, user settings control how users can transfer data between a streaming session and the their local devices.
|
|
88
104
|
*/
|
|
@@ -131,6 +147,14 @@ declare class WorkSpacesWeb extends Service {
|
|
|
131
147
|
* Deletes the trust store.
|
|
132
148
|
*/
|
|
133
149
|
deleteTrustStore(callback?: (err: AWSError, data: WorkSpacesWeb.Types.DeleteTrustStoreResponse) => void): Request<WorkSpacesWeb.Types.DeleteTrustStoreResponse, AWSError>;
|
|
150
|
+
/**
|
|
151
|
+
* Deletes user access logging settings.
|
|
152
|
+
*/
|
|
153
|
+
deleteUserAccessLoggingSettings(params: WorkSpacesWeb.Types.DeleteUserAccessLoggingSettingsRequest, callback?: (err: AWSError, data: WorkSpacesWeb.Types.DeleteUserAccessLoggingSettingsResponse) => void): Request<WorkSpacesWeb.Types.DeleteUserAccessLoggingSettingsResponse, AWSError>;
|
|
154
|
+
/**
|
|
155
|
+
* Deletes user access logging settings.
|
|
156
|
+
*/
|
|
157
|
+
deleteUserAccessLoggingSettings(callback?: (err: AWSError, data: WorkSpacesWeb.Types.DeleteUserAccessLoggingSettingsResponse) => void): Request<WorkSpacesWeb.Types.DeleteUserAccessLoggingSettingsResponse, AWSError>;
|
|
134
158
|
/**
|
|
135
159
|
* Deletes user settings.
|
|
136
160
|
*/
|
|
@@ -163,6 +187,14 @@ declare class WorkSpacesWeb extends Service {
|
|
|
163
187
|
* Disassociates a trust store from a web portal.
|
|
164
188
|
*/
|
|
165
189
|
disassociateTrustStore(callback?: (err: AWSError, data: WorkSpacesWeb.Types.DisassociateTrustStoreResponse) => void): Request<WorkSpacesWeb.Types.DisassociateTrustStoreResponse, AWSError>;
|
|
190
|
+
/**
|
|
191
|
+
* Disassociates user access logging settings from a web portal.
|
|
192
|
+
*/
|
|
193
|
+
disassociateUserAccessLoggingSettings(params: WorkSpacesWeb.Types.DisassociateUserAccessLoggingSettingsRequest, callback?: (err: AWSError, data: WorkSpacesWeb.Types.DisassociateUserAccessLoggingSettingsResponse) => void): Request<WorkSpacesWeb.Types.DisassociateUserAccessLoggingSettingsResponse, AWSError>;
|
|
194
|
+
/**
|
|
195
|
+
* Disassociates user access logging settings from a web portal.
|
|
196
|
+
*/
|
|
197
|
+
disassociateUserAccessLoggingSettings(callback?: (err: AWSError, data: WorkSpacesWeb.Types.DisassociateUserAccessLoggingSettingsResponse) => void): Request<WorkSpacesWeb.Types.DisassociateUserAccessLoggingSettingsResponse, AWSError>;
|
|
166
198
|
/**
|
|
167
199
|
* Disassociates user settings from a web portal.
|
|
168
200
|
*/
|
|
@@ -227,6 +259,14 @@ declare class WorkSpacesWeb extends Service {
|
|
|
227
259
|
* Gets the trust store certificate.
|
|
228
260
|
*/
|
|
229
261
|
getTrustStoreCertificate(callback?: (err: AWSError, data: WorkSpacesWeb.Types.GetTrustStoreCertificateResponse) => void): Request<WorkSpacesWeb.Types.GetTrustStoreCertificateResponse, AWSError>;
|
|
262
|
+
/**
|
|
263
|
+
* Gets user access logging settings.
|
|
264
|
+
*/
|
|
265
|
+
getUserAccessLoggingSettings(params: WorkSpacesWeb.Types.GetUserAccessLoggingSettingsRequest, callback?: (err: AWSError, data: WorkSpacesWeb.Types.GetUserAccessLoggingSettingsResponse) => void): Request<WorkSpacesWeb.Types.GetUserAccessLoggingSettingsResponse, AWSError>;
|
|
266
|
+
/**
|
|
267
|
+
* Gets user access logging settings.
|
|
268
|
+
*/
|
|
269
|
+
getUserAccessLoggingSettings(callback?: (err: AWSError, data: WorkSpacesWeb.Types.GetUserAccessLoggingSettingsResponse) => void): Request<WorkSpacesWeb.Types.GetUserAccessLoggingSettingsResponse, AWSError>;
|
|
230
270
|
/**
|
|
231
271
|
* Gets user settings.
|
|
232
272
|
*/
|
|
@@ -291,6 +331,14 @@ declare class WorkSpacesWeb extends Service {
|
|
|
291
331
|
* Retrieves a list of trust stores.
|
|
292
332
|
*/
|
|
293
333
|
listTrustStores(callback?: (err: AWSError, data: WorkSpacesWeb.Types.ListTrustStoresResponse) => void): Request<WorkSpacesWeb.Types.ListTrustStoresResponse, AWSError>;
|
|
334
|
+
/**
|
|
335
|
+
* Retrieves a list of user access logging settings.
|
|
336
|
+
*/
|
|
337
|
+
listUserAccessLoggingSettings(params: WorkSpacesWeb.Types.ListUserAccessLoggingSettingsRequest, callback?: (err: AWSError, data: WorkSpacesWeb.Types.ListUserAccessLoggingSettingsResponse) => void): Request<WorkSpacesWeb.Types.ListUserAccessLoggingSettingsResponse, AWSError>;
|
|
338
|
+
/**
|
|
339
|
+
* Retrieves a list of user access logging settings.
|
|
340
|
+
*/
|
|
341
|
+
listUserAccessLoggingSettings(callback?: (err: AWSError, data: WorkSpacesWeb.Types.ListUserAccessLoggingSettingsResponse) => void): Request<WorkSpacesWeb.Types.ListUserAccessLoggingSettingsResponse, AWSError>;
|
|
294
342
|
/**
|
|
295
343
|
* Retrieves a list of user settings.
|
|
296
344
|
*/
|
|
@@ -355,6 +403,14 @@ declare class WorkSpacesWeb extends Service {
|
|
|
355
403
|
* Updates the trust store.
|
|
356
404
|
*/
|
|
357
405
|
updateTrustStore(callback?: (err: AWSError, data: WorkSpacesWeb.Types.UpdateTrustStoreResponse) => void): Request<WorkSpacesWeb.Types.UpdateTrustStoreResponse, AWSError>;
|
|
406
|
+
/**
|
|
407
|
+
* Updates the user access logging settings.
|
|
408
|
+
*/
|
|
409
|
+
updateUserAccessLoggingSettings(params: WorkSpacesWeb.Types.UpdateUserAccessLoggingSettingsRequest, callback?: (err: AWSError, data: WorkSpacesWeb.Types.UpdateUserAccessLoggingSettingsResponse) => void): Request<WorkSpacesWeb.Types.UpdateUserAccessLoggingSettingsResponse, AWSError>;
|
|
410
|
+
/**
|
|
411
|
+
* Updates the user access logging settings.
|
|
412
|
+
*/
|
|
413
|
+
updateUserAccessLoggingSettings(callback?: (err: AWSError, data: WorkSpacesWeb.Types.UpdateUserAccessLoggingSettingsResponse) => void): Request<WorkSpacesWeb.Types.UpdateUserAccessLoggingSettingsResponse, AWSError>;
|
|
358
414
|
/**
|
|
359
415
|
* Updates the user settings.
|
|
360
416
|
*/
|
|
@@ -427,6 +483,26 @@ declare namespace WorkSpacesWeb {
|
|
|
427
483
|
*/
|
|
428
484
|
trustStoreArn: ARN;
|
|
429
485
|
}
|
|
486
|
+
export interface AssociateUserAccessLoggingSettingsRequest {
|
|
487
|
+
/**
|
|
488
|
+
* The ARN of the web portal.
|
|
489
|
+
*/
|
|
490
|
+
portalArn: ARN;
|
|
491
|
+
/**
|
|
492
|
+
* The ARN of the user access logging settings.
|
|
493
|
+
*/
|
|
494
|
+
userAccessLoggingSettingsArn: ARN;
|
|
495
|
+
}
|
|
496
|
+
export interface AssociateUserAccessLoggingSettingsResponse {
|
|
497
|
+
/**
|
|
498
|
+
* The ARN of the web portal.
|
|
499
|
+
*/
|
|
500
|
+
portalArn: ARN;
|
|
501
|
+
/**
|
|
502
|
+
* The ARN of the user access logging settings.
|
|
503
|
+
*/
|
|
504
|
+
userAccessLoggingSettingsArn: ARN;
|
|
505
|
+
}
|
|
430
506
|
export interface AssociateUserSettingsRequest {
|
|
431
507
|
/**
|
|
432
508
|
* The ARN of the web portal.
|
|
@@ -661,6 +737,26 @@ declare namespace WorkSpacesWeb {
|
|
|
661
737
|
*/
|
|
662
738
|
trustStoreArn: ARN;
|
|
663
739
|
}
|
|
740
|
+
export interface CreateUserAccessLoggingSettingsRequest {
|
|
741
|
+
/**
|
|
742
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token returns the result from the original successful request. If you do not specify a client token, one is automatically generated by the AWS SDK.
|
|
743
|
+
*/
|
|
744
|
+
clientToken?: ClientToken;
|
|
745
|
+
/**
|
|
746
|
+
* The ARN of the Kinesis stream.
|
|
747
|
+
*/
|
|
748
|
+
kinesisStreamArn: KinesisStreamArn;
|
|
749
|
+
/**
|
|
750
|
+
* The tags to add to the user settings resource. A tag is a key-value pair.
|
|
751
|
+
*/
|
|
752
|
+
tags?: TagList;
|
|
753
|
+
}
|
|
754
|
+
export interface CreateUserAccessLoggingSettingsResponse {
|
|
755
|
+
/**
|
|
756
|
+
* The ARN of the user access logging settings.
|
|
757
|
+
*/
|
|
758
|
+
userAccessLoggingSettingsArn: ARN;
|
|
759
|
+
}
|
|
664
760
|
export interface CreateUserSettingsRequest {
|
|
665
761
|
/**
|
|
666
762
|
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token returns the result from the original successful request. If you do not specify a client token, one is automatically generated by the AWS SDK.
|
|
@@ -745,6 +841,14 @@ declare namespace WorkSpacesWeb {
|
|
|
745
841
|
}
|
|
746
842
|
export interface DeleteTrustStoreResponse {
|
|
747
843
|
}
|
|
844
|
+
export interface DeleteUserAccessLoggingSettingsRequest {
|
|
845
|
+
/**
|
|
846
|
+
* The ARN of the user access logging settings.
|
|
847
|
+
*/
|
|
848
|
+
userAccessLoggingSettingsArn: ARN;
|
|
849
|
+
}
|
|
850
|
+
export interface DeleteUserAccessLoggingSettingsResponse {
|
|
851
|
+
}
|
|
748
852
|
export interface DeleteUserSettingsRequest {
|
|
749
853
|
/**
|
|
750
854
|
* The ARN of the user settings.
|
|
@@ -777,6 +881,14 @@ declare namespace WorkSpacesWeb {
|
|
|
777
881
|
}
|
|
778
882
|
export interface DisassociateTrustStoreResponse {
|
|
779
883
|
}
|
|
884
|
+
export interface DisassociateUserAccessLoggingSettingsRequest {
|
|
885
|
+
/**
|
|
886
|
+
* The ARN of the web portal.
|
|
887
|
+
*/
|
|
888
|
+
portalArn: ARN;
|
|
889
|
+
}
|
|
890
|
+
export interface DisassociateUserAccessLoggingSettingsResponse {
|
|
891
|
+
}
|
|
780
892
|
export interface DisassociateUserSettingsRequest {
|
|
781
893
|
/**
|
|
782
894
|
* The ARN of the web portal.
|
|
@@ -885,6 +997,18 @@ declare namespace WorkSpacesWeb {
|
|
|
885
997
|
*/
|
|
886
998
|
trustStore?: TrustStore;
|
|
887
999
|
}
|
|
1000
|
+
export interface GetUserAccessLoggingSettingsRequest {
|
|
1001
|
+
/**
|
|
1002
|
+
* The ARN of the user access logging settings.
|
|
1003
|
+
*/
|
|
1004
|
+
userAccessLoggingSettingsArn: ARN;
|
|
1005
|
+
}
|
|
1006
|
+
export interface GetUserAccessLoggingSettingsResponse {
|
|
1007
|
+
/**
|
|
1008
|
+
* The user access logging settings.
|
|
1009
|
+
*/
|
|
1010
|
+
userAccessLoggingSettings?: UserAccessLoggingSettings;
|
|
1011
|
+
}
|
|
888
1012
|
export interface GetUserSettingsRequest {
|
|
889
1013
|
/**
|
|
890
1014
|
* The ARN of the user settings.
|
|
@@ -934,6 +1058,7 @@ declare namespace WorkSpacesWeb {
|
|
|
934
1058
|
}
|
|
935
1059
|
export type IdentityProviderType = "SAML"|"Facebook"|"Google"|"LoginWithAmazon"|"SignInWithApple"|"OIDC"|string;
|
|
936
1060
|
export type IdleDisconnectTimeoutInMinutes = number;
|
|
1061
|
+
export type KinesisStreamArn = string;
|
|
937
1062
|
export interface ListBrowserSettingsRequest {
|
|
938
1063
|
/**
|
|
939
1064
|
* The maximum number of results to be included in the next page.
|
|
@@ -1078,6 +1203,26 @@ declare namespace WorkSpacesWeb {
|
|
|
1078
1203
|
*/
|
|
1079
1204
|
trustStores?: TrustStoreSummaryList;
|
|
1080
1205
|
}
|
|
1206
|
+
export interface ListUserAccessLoggingSettingsRequest {
|
|
1207
|
+
/**
|
|
1208
|
+
* The maximum number of results to be included in the next page.
|
|
1209
|
+
*/
|
|
1210
|
+
maxResults?: MaxResults;
|
|
1211
|
+
/**
|
|
1212
|
+
* The pagination token used to retrieve the next page of results for this operation.
|
|
1213
|
+
*/
|
|
1214
|
+
nextToken?: PaginationToken;
|
|
1215
|
+
}
|
|
1216
|
+
export interface ListUserAccessLoggingSettingsResponse {
|
|
1217
|
+
/**
|
|
1218
|
+
* The pagination token used to retrieve the next page of results for this operation.
|
|
1219
|
+
*/
|
|
1220
|
+
nextToken?: PaginationToken;
|
|
1221
|
+
/**
|
|
1222
|
+
* The user access logging settings.
|
|
1223
|
+
*/
|
|
1224
|
+
userAccessLoggingSettings?: UserAccessLoggingSettingsList;
|
|
1225
|
+
}
|
|
1081
1226
|
export interface ListUserSettingsRequest {
|
|
1082
1227
|
/**
|
|
1083
1228
|
* The maximum number of results to be included in the next page.
|
|
@@ -1179,7 +1324,11 @@ declare namespace WorkSpacesWeb {
|
|
|
1179
1324
|
*/
|
|
1180
1325
|
trustStoreArn?: ARN;
|
|
1181
1326
|
/**
|
|
1182
|
-
* The ARN of the
|
|
1327
|
+
* The ARN of the user access logging settings that is associated with the web portal.
|
|
1328
|
+
*/
|
|
1329
|
+
userAccessLoggingSettingsArn?: ARN;
|
|
1330
|
+
/**
|
|
1331
|
+
* The ARN of the user settings that is associated with the web portal.
|
|
1183
1332
|
*/
|
|
1184
1333
|
userSettingsArn?: ARN;
|
|
1185
1334
|
}
|
|
@@ -1227,6 +1376,10 @@ declare namespace WorkSpacesWeb {
|
|
|
1227
1376
|
* The ARN of the trust that is associated with this web portal.
|
|
1228
1377
|
*/
|
|
1229
1378
|
trustStoreArn?: ARN;
|
|
1379
|
+
/**
|
|
1380
|
+
* The ARN of the user access logging settings that is associated with the web portal.
|
|
1381
|
+
*/
|
|
1382
|
+
userAccessLoggingSettingsArn?: ARN;
|
|
1230
1383
|
/**
|
|
1231
1384
|
* The ARN of the user settings that is associated with the web portal.
|
|
1232
1385
|
*/
|
|
@@ -1416,6 +1569,26 @@ declare namespace WorkSpacesWeb {
|
|
|
1416
1569
|
*/
|
|
1417
1570
|
trustStoreArn: ARN;
|
|
1418
1571
|
}
|
|
1572
|
+
export interface UpdateUserAccessLoggingSettingsRequest {
|
|
1573
|
+
/**
|
|
1574
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token return the result from the original successful request. If you do not specify a client token, one is automatically generated by the AWS SDK.
|
|
1575
|
+
*/
|
|
1576
|
+
clientToken?: ClientToken;
|
|
1577
|
+
/**
|
|
1578
|
+
* The ARN of the Kinesis stream.
|
|
1579
|
+
*/
|
|
1580
|
+
kinesisStreamArn?: KinesisStreamArn;
|
|
1581
|
+
/**
|
|
1582
|
+
* The ARN of the user access logging settings.
|
|
1583
|
+
*/
|
|
1584
|
+
userAccessLoggingSettingsArn: ARN;
|
|
1585
|
+
}
|
|
1586
|
+
export interface UpdateUserAccessLoggingSettingsResponse {
|
|
1587
|
+
/**
|
|
1588
|
+
* The user access logging settings.
|
|
1589
|
+
*/
|
|
1590
|
+
userAccessLoggingSettings: UserAccessLoggingSettings;
|
|
1591
|
+
}
|
|
1419
1592
|
export interface UpdateUserSettingsRequest {
|
|
1420
1593
|
/**
|
|
1421
1594
|
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token return the result from the original successful request. If you do not specify a client token, one is automatically generated by the AWS SDK.
|
|
@@ -1460,6 +1633,31 @@ declare namespace WorkSpacesWeb {
|
|
|
1460
1633
|
*/
|
|
1461
1634
|
userSettings: UserSettings;
|
|
1462
1635
|
}
|
|
1636
|
+
export interface UserAccessLoggingSettings {
|
|
1637
|
+
/**
|
|
1638
|
+
* A list of web portal ARNs that this user access logging settings is associated with.
|
|
1639
|
+
*/
|
|
1640
|
+
associatedPortalArns?: ArnList;
|
|
1641
|
+
/**
|
|
1642
|
+
* The ARN of the Kinesis stream.
|
|
1643
|
+
*/
|
|
1644
|
+
kinesisStreamArn?: KinesisStreamArn;
|
|
1645
|
+
/**
|
|
1646
|
+
* The ARN of the user access logging settings.
|
|
1647
|
+
*/
|
|
1648
|
+
userAccessLoggingSettingsArn: ARN;
|
|
1649
|
+
}
|
|
1650
|
+
export type UserAccessLoggingSettingsList = UserAccessLoggingSettingsSummary[];
|
|
1651
|
+
export interface UserAccessLoggingSettingsSummary {
|
|
1652
|
+
/**
|
|
1653
|
+
* The ARN of the Kinesis stream.
|
|
1654
|
+
*/
|
|
1655
|
+
kinesisStreamArn?: KinesisStreamArn;
|
|
1656
|
+
/**
|
|
1657
|
+
* The ARN of the user access logging settings.
|
|
1658
|
+
*/
|
|
1659
|
+
userAccessLoggingSettingsArn?: ARN;
|
|
1660
|
+
}
|
|
1463
1661
|
export interface UserSettings {
|
|
1464
1662
|
/**
|
|
1465
1663
|
* A list of web portal ARNs that this user settings is associated with.
|
|
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
83
83
|
/**
|
|
84
84
|
* @constant
|
|
85
85
|
*/
|
|
86
|
-
VERSION: '2.
|
|
86
|
+
VERSION: '2.1237.0',
|
|
87
87
|
|
|
88
88
|
/**
|
|
89
89
|
* @api private
|
|
@@ -4077,6 +4077,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
4077
4077
|
property(this, 'documentation', api.documentation);
|
|
4078
4078
|
property(this, 'documentationUrl', api.documentationUrl);
|
|
4079
4079
|
}
|
|
4080
|
+
property(this, 'awsQueryCompatible', api.awsQueryCompatible);
|
|
4080
4081
|
}
|
|
4081
4082
|
|
|
4082
4083
|
/**
|
|
@@ -7443,10 +7444,13 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
7443
7444
|
});
|
|
7444
7445
|
|
|
7445
7446
|
add('ERROR', 'error', function ERROR(err, resp) {
|
|
7446
|
-
var
|
|
7447
|
-
|
|
7448
|
-
|
|
7449
|
-
|
|
7447
|
+
var awsQueryCompatible = resp.request.service.api.awsQueryCompatible;
|
|
7448
|
+
if (awsQueryCompatible) {
|
|
7449
|
+
var headers = resp.httpResponse.headers;
|
|
7450
|
+
var queryErrorCode = headers ? headers['x-amzn-query-error'] : undefined;
|
|
7451
|
+
if (queryErrorCode && queryErrorCode.includes(';')) {
|
|
7452
|
+
resp.error.code = queryErrorCode.split(';')[0];
|
|
7453
|
+
}
|
|
7450
7454
|
}
|
|
7451
7455
|
}, true);
|
|
7452
7456
|
|