cdk-docker-image-deployment 0.0.46 → 0.0.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/.jsii +4 -4
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +12 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +30 -27
  8. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +377 -134
  9. package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +6 -0
  10. package/node_modules/aws-sdk/apis/eventbridge-2015-10-07.min.json +5 -1
  11. package/node_modules/aws-sdk/apis/managedblockchain-2018-09-24.min.json +173 -49
  12. package/node_modules/aws-sdk/apis/managedblockchain-2018-09-24.paginators.json +6 -0
  13. package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +132 -132
  14. package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +311 -1
  15. package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +533 -12
  16. package/node_modules/aws-sdk/apis/support-app-2021-08-20.min.json +28 -1
  17. package/node_modules/aws-sdk/apis/workspaces-web-2020-07-08.min.json +290 -63
  18. package/node_modules/aws-sdk/apis/workspaces-web-2020-07-08.paginators.json +5 -0
  19. package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +3 -3
  20. package/node_modules/aws-sdk/clients/cloudtrail.d.ts +54 -40
  21. package/node_modules/aws-sdk/clients/configservice.d.ts +24 -24
  22. package/node_modules/aws-sdk/clients/connect.d.ts +327 -55
  23. package/node_modules/aws-sdk/clients/managedblockchain.d.ts +191 -46
  24. package/node_modules/aws-sdk/clients/s3.d.ts +1 -1
  25. package/node_modules/aws-sdk/clients/supportapp.d.ts +48 -10
  26. package/node_modules/aws-sdk/clients/workspacesweb.d.ts +199 -1
  27. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  28. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +12 -12
  29. package/node_modules/aws-sdk/dist/aws-sdk.js +727 -165
  30. package/node_modules/aws-sdk/dist/aws-sdk.min.js +83 -83
  31. package/node_modules/aws-sdk/lib/core.js +1 -1
  32. package/node_modules/aws-sdk/package.json +1 -1
  33. package/package.json +8 -8
@@ -75,6 +75,14 @@ declare class SupportApp extends Service {
75
75
  * Creates or updates an individual alias for each Amazon Web Services account ID. The alias appears in the Amazon Web Services Support App page of the Amazon Web Services Support Center. The alias also appears in Slack messages from the Amazon Web Services Support App.
76
76
  */
77
77
  putAccountAlias(callback?: (err: AWSError, data: SupportApp.Types.PutAccountAliasResult) => void): Request<SupportApp.Types.PutAccountAliasResult, AWSError>;
78
+ /**
79
+ * Registers a Slack workspace for your Amazon Web Services account. To call this API, your account must be part of an organization in Organizations. If you're the management account and you want to register Slack workspaces for your organization, you must complete the following tasks: Sign in to the Amazon Web Services Support Center and authorize the Slack workspaces where you want your organization to have access to. See Authorize a Slack workspace in the Amazon Web Services Support User Guide. Call the RegisterSlackWorkspaceForOrganization API to authorize each Slack workspace for the organization. After the management account authorizes the Slack workspace, member accounts can call this API to authorize the same Slack workspace for their individual accounts. Member accounts don't need to authorize the Slack workspace manually through the Amazon Web Services Support Center. To use the Amazon Web Services Support App, each account must then complete the following tasks: Create an Identity and Access Management (IAM) role with the required permission. For more information, see Managing access to the Amazon Web Services Support App. Configure a Slack channel to use the Amazon Web Services Support App for support cases for that account. For more information, see Configuring a Slack channel.
80
+ */
81
+ registerSlackWorkspaceForOrganization(params: SupportApp.Types.RegisterSlackWorkspaceForOrganizationRequest, callback?: (err: AWSError, data: SupportApp.Types.RegisterSlackWorkspaceForOrganizationResult) => void): Request<SupportApp.Types.RegisterSlackWorkspaceForOrganizationResult, AWSError>;
82
+ /**
83
+ * Registers a Slack workspace for your Amazon Web Services account. To call this API, your account must be part of an organization in Organizations. If you're the management account and you want to register Slack workspaces for your organization, you must complete the following tasks: Sign in to the Amazon Web Services Support Center and authorize the Slack workspaces where you want your organization to have access to. See Authorize a Slack workspace in the Amazon Web Services Support User Guide. Call the RegisterSlackWorkspaceForOrganization API to authorize each Slack workspace for the organization. After the management account authorizes the Slack workspace, member accounts can call this API to authorize the same Slack workspace for their individual accounts. Member accounts don't need to authorize the Slack workspace manually through the Amazon Web Services Support Center. To use the Amazon Web Services Support App, each account must then complete the following tasks: Create an Identity and Access Management (IAM) role with the required permission. For more information, see Managing access to the Amazon Web Services Support App. Configure a Slack channel to use the Amazon Web Services Support App for support cases for that account. For more information, see Configuring a Slack channel.
84
+ */
85
+ registerSlackWorkspaceForOrganization(callback?: (err: AWSError, data: SupportApp.Types.RegisterSlackWorkspaceForOrganizationResult) => void): Request<SupportApp.Types.RegisterSlackWorkspaceForOrganizationResult, AWSError>;
78
86
  /**
79
87
  * Updates the configuration for a Slack channel, such as case update notifications.
80
88
  */
@@ -85,6 +93,7 @@ declare class SupportApp extends Service {
85
93
  updateSlackChannelConfiguration(callback?: (err: AWSError, data: SupportApp.Types.UpdateSlackChannelConfigurationResult) => void): Request<SupportApp.Types.UpdateSlackChannelConfigurationResult, AWSError>;
86
94
  }
87
95
  declare namespace SupportApp {
96
+ export type AccountType = "management"|"member"|string;
88
97
  export interface CreateSlackChannelConfigurationRequest {
89
98
  /**
90
99
  * The channel ID in Slack. This ID identifies a channel within a Slack workspace.
@@ -103,7 +112,7 @@ declare namespace SupportApp {
103
112
  */
104
113
  notifyOnAddCorrespondenceToCase?: booleanValue;
105
114
  /**
106
- * The case severity for a support case that you want to receive notifications. &lt;p&gt;If you specify &lt;code&gt;high&lt;/code&gt; or &lt;code&gt;all&lt;/code&gt;, you must specify &lt;code&gt;true&lt;/code&gt; for at least one of the following parameters:&lt;/p&gt; &lt;ul&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;notifyOnAddCorrespondenceToCase&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;notifyOnCreateOrReopenCase&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;notifyOnResolveCase&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;/ul&gt; &lt;p&gt;If you specify &lt;code&gt;none&lt;/code&gt;, the following parameters must be null or &lt;code&gt;false&lt;/code&gt;:&lt;/p&gt; &lt;ul&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;notifyOnAddCorrespondenceToCase&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;notifyOnCreateOrReopenCase&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;notifyOnResolveCase&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;/ul&gt; &lt;note&gt; &lt;p&gt;If you don't specify these parameters in your request, they default to &lt;code&gt;false&lt;/code&gt;.&lt;/p&gt; &lt;/note&gt;
115
+ * The case severity for a support case that you want to receive notifications. If you specify high or all, you must specify true for at least one of the following parameters: notifyOnAddCorrespondenceToCase notifyOnCreateOrReopenCase notifyOnResolveCase If you specify none, the following parameters must be null or false: notifyOnAddCorrespondenceToCase notifyOnCreateOrReopenCase notifyOnResolveCase If you don't specify these parameters in your request, they default to false.
107
116
  */
108
117
  notifyOnCaseSeverity: NotificationSeverityLevel;
109
118
  /**
@@ -115,7 +124,7 @@ declare namespace SupportApp {
115
124
  */
116
125
  notifyOnResolveCase?: booleanValue;
117
126
  /**
118
- * The team ID in Slack. This ID uniquely identifies a Slack workspace.
127
+ * The team ID in Slack. This ID uniquely identifies a Slack workspace, such as T012ABCDEFG.
119
128
  */
120
129
  teamId: teamId;
121
130
  }
@@ -131,7 +140,7 @@ declare namespace SupportApp {
131
140
  */
132
141
  channelId: channelId;
133
142
  /**
134
- * The team ID in Slack. This ID uniquely identifies a Slack workspace.
143
+ * The team ID in Slack. This ID uniquely identifies a Slack workspace, such as T012ABCDEFG.
135
144
  */
136
145
  teamId: teamId;
137
146
  }
@@ -139,7 +148,7 @@ declare namespace SupportApp {
139
148
  }
140
149
  export interface DeleteSlackWorkspaceConfigurationRequest {
141
150
  /**
142
- * The team ID in Slack. This ID uniquely identifies a Slack workspace.
151
+ * The team ID in Slack. This ID uniquely identifies a Slack workspace, such as T012ABCDEFG.
143
152
  */
144
153
  teamId: teamId;
145
154
  }
@@ -194,13 +203,33 @@ declare namespace SupportApp {
194
203
  }
195
204
  export interface PutAccountAliasResult {
196
205
  }
206
+ export interface RegisterSlackWorkspaceForOrganizationRequest {
207
+ /**
208
+ * The team ID in Slack. This ID uniquely identifies a Slack workspace, such as T012ABCDEFG. Specify the Slack workspace that you want to use for your organization.
209
+ */
210
+ teamId: teamId;
211
+ }
212
+ export interface RegisterSlackWorkspaceForOrganizationResult {
213
+ /**
214
+ * Whether the Amazon Web Services account is a management or member account that's part of an organization in Organizations.
215
+ */
216
+ accountType?: AccountType;
217
+ /**
218
+ * The team ID in Slack. This ID uniquely identifies a Slack workspace, such as T012ABCDEFG.
219
+ */
220
+ teamId?: teamId;
221
+ /**
222
+ * The name of the Slack workspace.
223
+ */
224
+ teamName?: teamName;
225
+ }
197
226
  export interface SlackChannelConfiguration {
198
227
  /**
199
228
  * The channel ID in Slack. This ID identifies a channel within a Slack workspace.
200
229
  */
201
230
  channelId: channelId;
202
231
  /**
203
- * The name of the Slack channel that you configured with the Amazon Web Services Support App.
232
+ * The name of the Slack channel that you configured with the Amazon Web Services Support App for your Amazon Web Services account.
204
233
  */
205
234
  channelName?: channelName;
206
235
  /**
@@ -224,15 +253,23 @@ declare namespace SupportApp {
224
253
  */
225
254
  notifyOnResolveCase?: booleanValue;
226
255
  /**
227
- * The team ID in Slack. This ID uniquely identifies a Slack workspace.
256
+ * The team ID in Slack. This ID uniquely identifies a Slack workspace, such as T012ABCDEFG.
228
257
  */
229
258
  teamId: teamId;
230
259
  }
231
260
  export interface SlackWorkspaceConfiguration {
232
261
  /**
233
- * The team ID in Slack. This ID uniquely identifies a Slack workspace.
262
+ * Whether to allow member accounts to authorize Slack workspaces. Member accounts must be part of an organization in Organizations.
263
+ */
264
+ allowOrganizationMemberAccount?: booleanValue;
265
+ /**
266
+ * The team ID in Slack. This ID uniquely identifies a Slack workspace, such as T012ABCDEFG.
234
267
  */
235
268
  teamId: teamId;
269
+ /**
270
+ * The name of the Slack workspace.
271
+ */
272
+ teamName?: teamName;
236
273
  }
237
274
  export type SlackWorkspaceConfigurationList = SlackWorkspaceConfiguration[];
238
275
  export interface UpdateSlackChannelConfigurationRequest {
@@ -253,7 +290,7 @@ declare namespace SupportApp {
253
290
  */
254
291
  notifyOnAddCorrespondenceToCase?: booleanValue;
255
292
  /**
256
- * The case severity for a support case that you want to receive notifications. &lt;p&gt;If you specify &lt;code&gt;high&lt;/code&gt; or &lt;code&gt;all&lt;/code&gt;, at least one of the following parameters must be &lt;code&gt;true&lt;/code&gt;:&lt;/p&gt; &lt;ul&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;notifyOnAddCorrespondenceToCase&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;notifyOnCreateOrReopenCase&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;notifyOnResolveCase&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;/ul&gt; &lt;p&gt;If you specify &lt;code&gt;none&lt;/code&gt;, any of the following parameters that you specify in your request must be &lt;code&gt;false&lt;/code&gt;:&lt;/p&gt; &lt;ul&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;notifyOnAddCorrespondenceToCase&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;notifyOnCreateOrReopenCase&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;notifyOnResolveCase&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;/ul&gt; &lt;note&gt; &lt;p&gt;If you don't specify these parameters in your request, the Amazon Web Services Support App uses the current values by default.&lt;/p&gt; &lt;/note&gt;
293
+ * The case severity for a support case that you want to receive notifications. If you specify high or all, at least one of the following parameters must be true: notifyOnAddCorrespondenceToCase notifyOnCreateOrReopenCase notifyOnResolveCase If you specify none, any of the following parameters that you specify in your request must be false: notifyOnAddCorrespondenceToCase notifyOnCreateOrReopenCase notifyOnResolveCase If you don't specify these parameters in your request, the Amazon Web Services Support App uses the current values by default.
257
294
  */
258
295
  notifyOnCaseSeverity?: NotificationSeverityLevel;
259
296
  /**
@@ -265,7 +302,7 @@ declare namespace SupportApp {
265
302
  */
266
303
  notifyOnResolveCase?: booleanValue;
267
304
  /**
268
- * The team ID in Slack. This ID uniquely identifies a Slack workspace.
305
+ * The team ID in Slack. This ID uniquely identifies a Slack workspace, such as T012ABCDEFG.
269
306
  */
270
307
  teamId: teamId;
271
308
  }
@@ -299,7 +336,7 @@ declare namespace SupportApp {
299
336
  */
300
337
  notifyOnResolveCase?: booleanValue;
301
338
  /**
302
- * The team ID in Slack. This ID uniquely identifies a Slack workspace.
339
+ * The team ID in Slack. This ID uniquely identifies a Slack workspace, such as T012ABCDEFG.
303
340
  */
304
341
  teamId?: teamId;
305
342
  }
@@ -311,6 +348,7 @@ declare namespace SupportApp {
311
348
  export type roleArn = string;
312
349
  export type slackChannelConfigurationList = SlackChannelConfiguration[];
313
350
  export type teamId = string;
351
+ export type teamName = string;
314
352
  /**
315
353
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
316
354
  */
@@ -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 trust store that is associated with the web portal.
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.1235.0',
86
+ VERSION: '2.1236.0',
87
87
 
88
88
  /**
89
89
  * @api private