types-boto3-workspaces-web 1.38.0__py3-none-any.whl → 1.40.0__py3-none-any.whl

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.
@@ -12,6 +12,7 @@ Usage::
12
12
  from types_boto3_workspaces_web import (
13
13
  Client,
14
14
  ListDataProtectionSettingsPaginator,
15
+ ListSessionLoggersPaginator,
15
16
  ListSessionsPaginator,
16
17
  WorkSpacesWebClient,
17
18
  )
@@ -20,12 +21,17 @@ Usage::
20
21
  client: WorkSpacesWebClient = session.client("workspaces-web")
21
22
 
22
23
  list_data_protection_settings_paginator: ListDataProtectionSettingsPaginator = client.get_paginator("list_data_protection_settings")
24
+ list_session_loggers_paginator: ListSessionLoggersPaginator = client.get_paginator("list_session_loggers")
23
25
  list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
24
26
  ```
25
27
  """
26
28
 
27
29
  from .client import WorkSpacesWebClient
28
- from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
30
+ from .paginator import (
31
+ ListDataProtectionSettingsPaginator,
32
+ ListSessionLoggersPaginator,
33
+ ListSessionsPaginator,
34
+ )
29
35
 
30
36
  Client = WorkSpacesWebClient
31
37
 
@@ -33,6 +39,7 @@ Client = WorkSpacesWebClient
33
39
  __all__ = (
34
40
  "Client",
35
41
  "ListDataProtectionSettingsPaginator",
42
+ "ListSessionLoggersPaginator",
36
43
  "ListSessionsPaginator",
37
44
  "WorkSpacesWebClient",
38
45
  )
@@ -12,6 +12,7 @@ Usage::
12
12
  from types_boto3_workspaces_web import (
13
13
  Client,
14
14
  ListDataProtectionSettingsPaginator,
15
+ ListSessionLoggersPaginator,
15
16
  ListSessionsPaginator,
16
17
  WorkSpacesWebClient,
17
18
  )
@@ -20,18 +21,24 @@ Usage::
20
21
  client: WorkSpacesWebClient = session.client("workspaces-web")
21
22
 
22
23
  list_data_protection_settings_paginator: ListDataProtectionSettingsPaginator = client.get_paginator("list_data_protection_settings")
24
+ list_session_loggers_paginator: ListSessionLoggersPaginator = client.get_paginator("list_session_loggers")
23
25
  list_sessions_paginator: ListSessionsPaginator = client.get_paginator("list_sessions")
24
26
  ```
25
27
  """
26
28
 
27
29
  from .client import WorkSpacesWebClient
28
- from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
30
+ from .paginator import (
31
+ ListDataProtectionSettingsPaginator,
32
+ ListSessionLoggersPaginator,
33
+ ListSessionsPaginator,
34
+ )
29
35
 
30
36
  Client = WorkSpacesWebClient
31
37
 
32
38
  __all__ = (
33
39
  "Client",
34
40
  "ListDataProtectionSettingsPaginator",
41
+ "ListSessionLoggersPaginator",
35
42
  "ListSessionsPaginator",
36
43
  "WorkSpacesWebClient",
37
44
  )
@@ -12,9 +12,9 @@ def print_info() -> None:
12
12
  Print package info to stdout.
13
13
  """
14
14
  sys.stdout.write(
15
- "Type annotations for boto3 WorkSpacesWeb 1.38.0\n"
16
- "Version: 1.38.0\n"
17
- "Builder version: 8.10.1\n"
15
+ "Type annotations for boto3 WorkSpacesWeb 1.40.0\n"
16
+ "Version: 1.40.0\n"
17
+ "Builder version: 8.11.0\n"
18
18
  "Docs: https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web//\n"
19
19
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web.html#workspacesweb\n"
20
20
  "Other services: https://pypi.org/project/boto3-stubs/\n"
@@ -26,7 +26,7 @@ def print_version() -> None:
26
26
  """
27
27
  Print package version to stdout.
28
28
  """
29
- sys.stdout.write("1.38.0\n")
29
+ sys.stdout.write("1.40.0\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -25,7 +25,11 @@ from botocore.client import BaseClient, ClientMeta
25
25
  from botocore.errorfactory import BaseClientExceptions
26
26
  from botocore.exceptions import ClientError as BotocoreClientError
27
27
 
28
- from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
28
+ from .paginator import (
29
+ ListDataProtectionSettingsPaginator,
30
+ ListSessionLoggersPaginator,
31
+ ListSessionsPaginator,
32
+ )
29
33
  from .type_defs import (
30
34
  AssociateBrowserSettingsRequestTypeDef,
31
35
  AssociateBrowserSettingsResponseTypeDef,
@@ -35,6 +39,8 @@ from .type_defs import (
35
39
  AssociateIpAccessSettingsResponseTypeDef,
36
40
  AssociateNetworkSettingsRequestTypeDef,
37
41
  AssociateNetworkSettingsResponseTypeDef,
42
+ AssociateSessionLoggerRequestTypeDef,
43
+ AssociateSessionLoggerResponseTypeDef,
38
44
  AssociateTrustStoreRequestTypeDef,
39
45
  AssociateTrustStoreResponseTypeDef,
40
46
  AssociateUserAccessLoggingSettingsRequestTypeDef,
@@ -53,6 +59,8 @@ from .type_defs import (
53
59
  CreateNetworkSettingsResponseTypeDef,
54
60
  CreatePortalRequestTypeDef,
55
61
  CreatePortalResponseTypeDef,
62
+ CreateSessionLoggerRequestTypeDef,
63
+ CreateSessionLoggerResponseTypeDef,
56
64
  CreateTrustStoreRequestTypeDef,
57
65
  CreateTrustStoreResponseTypeDef,
58
66
  CreateUserAccessLoggingSettingsRequestTypeDef,
@@ -65,6 +73,7 @@ from .type_defs import (
65
73
  DeleteIpAccessSettingsRequestTypeDef,
66
74
  DeleteNetworkSettingsRequestTypeDef,
67
75
  DeletePortalRequestTypeDef,
76
+ DeleteSessionLoggerRequestTypeDef,
68
77
  DeleteTrustStoreRequestTypeDef,
69
78
  DeleteUserAccessLoggingSettingsRequestTypeDef,
70
79
  DeleteUserSettingsRequestTypeDef,
@@ -72,6 +81,7 @@ from .type_defs import (
72
81
  DisassociateDataProtectionSettingsRequestTypeDef,
73
82
  DisassociateIpAccessSettingsRequestTypeDef,
74
83
  DisassociateNetworkSettingsRequestTypeDef,
84
+ DisassociateSessionLoggerRequestTypeDef,
75
85
  DisassociateTrustStoreRequestTypeDef,
76
86
  DisassociateUserAccessLoggingSettingsRequestTypeDef,
77
87
  DisassociateUserSettingsRequestTypeDef,
@@ -90,6 +100,8 @@ from .type_defs import (
90
100
  GetPortalResponseTypeDef,
91
101
  GetPortalServiceProviderMetadataRequestTypeDef,
92
102
  GetPortalServiceProviderMetadataResponseTypeDef,
103
+ GetSessionLoggerRequestTypeDef,
104
+ GetSessionLoggerResponseTypeDef,
93
105
  GetSessionRequestTypeDef,
94
106
  GetSessionResponseTypeDef,
95
107
  GetTrustStoreCertificateRequestTypeDef,
@@ -112,6 +124,8 @@ from .type_defs import (
112
124
  ListNetworkSettingsResponseTypeDef,
113
125
  ListPortalsRequestTypeDef,
114
126
  ListPortalsResponseTypeDef,
127
+ ListSessionLoggersRequestTypeDef,
128
+ ListSessionLoggersResponseTypeDef,
115
129
  ListSessionsRequestTypeDef,
116
130
  ListSessionsResponseTypeDef,
117
131
  ListTagsForResourceRequestTypeDef,
@@ -138,6 +152,8 @@ from .type_defs import (
138
152
  UpdateNetworkSettingsResponseTypeDef,
139
153
  UpdatePortalRequestTypeDef,
140
154
  UpdatePortalResponseTypeDef,
155
+ UpdateSessionLoggerRequestTypeDef,
156
+ UpdateSessionLoggerResponseTypeDef,
141
157
  UpdateTrustStoreRequestTypeDef,
142
158
  UpdateTrustStoreResponseTypeDef,
143
159
  UpdateUserAccessLoggingSettingsRequestTypeDef,
@@ -248,6 +264,16 @@ class WorkSpacesWebClient(BaseClient):
248
264
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#associate_network_settings)
249
265
  """
250
266
 
267
+ def associate_session_logger(
268
+ self, **kwargs: Unpack[AssociateSessionLoggerRequestTypeDef]
269
+ ) -> AssociateSessionLoggerResponseTypeDef:
270
+ """
271
+ Associates a session logger with a portal.
272
+
273
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_session_logger.html)
274
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#associate_session_logger)
275
+ """
276
+
251
277
  def associate_trust_store(
252
278
  self, **kwargs: Unpack[AssociateTrustStoreRequestTypeDef]
253
279
  ) -> AssociateTrustStoreResponseTypeDef:
@@ -339,6 +365,16 @@ class WorkSpacesWebClient(BaseClient):
339
365
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#create_portal)
340
366
  """
341
367
 
368
+ def create_session_logger(
369
+ self, **kwargs: Unpack[CreateSessionLoggerRequestTypeDef]
370
+ ) -> CreateSessionLoggerResponseTypeDef:
371
+ """
372
+ Creates a session logger.
373
+
374
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_session_logger.html)
375
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#create_session_logger)
376
+ """
377
+
342
378
  def create_trust_store(
343
379
  self, **kwargs: Unpack[CreateTrustStoreRequestTypeDef]
344
380
  ) -> CreateTrustStoreResponseTypeDef:
@@ -428,6 +464,16 @@ class WorkSpacesWebClient(BaseClient):
428
464
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_portal)
429
465
  """
430
466
 
467
+ def delete_session_logger(
468
+ self, **kwargs: Unpack[DeleteSessionLoggerRequestTypeDef]
469
+ ) -> Dict[str, Any]:
470
+ """
471
+ Deletes a session logger resource.
472
+
473
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_session_logger.html)
474
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_session_logger)
475
+ """
476
+
431
477
  def delete_trust_store(
432
478
  self, **kwargs: Unpack[DeleteTrustStoreRequestTypeDef]
433
479
  ) -> Dict[str, Any]:
@@ -498,6 +544,16 @@ class WorkSpacesWebClient(BaseClient):
498
544
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#disassociate_network_settings)
499
545
  """
500
546
 
547
+ def disassociate_session_logger(
548
+ self, **kwargs: Unpack[DisassociateSessionLoggerRequestTypeDef]
549
+ ) -> Dict[str, Any]:
550
+ """
551
+ Disassociates a session logger from a portal.
552
+
553
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_session_logger.html)
554
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#disassociate_session_logger)
555
+ """
556
+
501
557
  def disassociate_trust_store(
502
558
  self, **kwargs: Unpack[DisassociateTrustStoreRequestTypeDef]
503
559
  ) -> Dict[str, Any]:
@@ -612,6 +668,16 @@ class WorkSpacesWebClient(BaseClient):
612
668
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_session)
613
669
  """
614
670
 
671
+ def get_session_logger(
672
+ self, **kwargs: Unpack[GetSessionLoggerRequestTypeDef]
673
+ ) -> GetSessionLoggerResponseTypeDef:
674
+ """
675
+ Gets details about a specific session logger resource.
676
+
677
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_session_logger.html)
678
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_session_logger)
679
+ """
680
+
615
681
  def get_trust_store(
616
682
  self, **kwargs: Unpack[GetTrustStoreRequestTypeDef]
617
683
  ) -> GetTrustStoreResponseTypeDef:
@@ -712,6 +778,16 @@ class WorkSpacesWebClient(BaseClient):
712
778
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_portals)
713
779
  """
714
780
 
781
+ def list_session_loggers(
782
+ self, **kwargs: Unpack[ListSessionLoggersRequestTypeDef]
783
+ ) -> ListSessionLoggersResponseTypeDef:
784
+ """
785
+ Lists all available session logger resources.
786
+
787
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_session_loggers.html)
788
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_session_loggers)
789
+ """
790
+
715
791
  def list_sessions(
716
792
  self, **kwargs: Unpack[ListSessionsRequestTypeDef]
717
793
  ) -> ListSessionsResponseTypeDef:
@@ -848,6 +924,16 @@ class WorkSpacesWebClient(BaseClient):
848
924
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_portal)
849
925
  """
850
926
 
927
+ def update_session_logger(
928
+ self, **kwargs: Unpack[UpdateSessionLoggerRequestTypeDef]
929
+ ) -> UpdateSessionLoggerResponseTypeDef:
930
+ """
931
+ Updates the details of a session logger.
932
+
933
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_session_logger.html)
934
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_session_logger)
935
+ """
936
+
851
937
  def update_trust_store(
852
938
  self, **kwargs: Unpack[UpdateTrustStoreRequestTypeDef]
853
939
  ) -> UpdateTrustStoreResponseTypeDef:
@@ -889,6 +975,17 @@ class WorkSpacesWebClient(BaseClient):
889
975
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_paginator)
890
976
  """
891
977
 
978
+ @overload # type: ignore[override]
979
+ def get_paginator( # type: ignore[override]
980
+ self, operation_name: Literal["list_session_loggers"]
981
+ ) -> ListSessionLoggersPaginator:
982
+ """
983
+ Create a paginator for an operation.
984
+
985
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_paginator.html)
986
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_paginator)
987
+ """
988
+
892
989
  @overload # type: ignore[override]
893
990
  def get_paginator( # type: ignore[override]
894
991
  self, operation_name: Literal["list_sessions"]
@@ -25,7 +25,11 @@ from botocore.client import BaseClient, ClientMeta
25
25
  from botocore.errorfactory import BaseClientExceptions
26
26
  from botocore.exceptions import ClientError as BotocoreClientError
27
27
 
28
- from .paginator import ListDataProtectionSettingsPaginator, ListSessionsPaginator
28
+ from .paginator import (
29
+ ListDataProtectionSettingsPaginator,
30
+ ListSessionLoggersPaginator,
31
+ ListSessionsPaginator,
32
+ )
29
33
  from .type_defs import (
30
34
  AssociateBrowserSettingsRequestTypeDef,
31
35
  AssociateBrowserSettingsResponseTypeDef,
@@ -35,6 +39,8 @@ from .type_defs import (
35
39
  AssociateIpAccessSettingsResponseTypeDef,
36
40
  AssociateNetworkSettingsRequestTypeDef,
37
41
  AssociateNetworkSettingsResponseTypeDef,
42
+ AssociateSessionLoggerRequestTypeDef,
43
+ AssociateSessionLoggerResponseTypeDef,
38
44
  AssociateTrustStoreRequestTypeDef,
39
45
  AssociateTrustStoreResponseTypeDef,
40
46
  AssociateUserAccessLoggingSettingsRequestTypeDef,
@@ -53,6 +59,8 @@ from .type_defs import (
53
59
  CreateNetworkSettingsResponseTypeDef,
54
60
  CreatePortalRequestTypeDef,
55
61
  CreatePortalResponseTypeDef,
62
+ CreateSessionLoggerRequestTypeDef,
63
+ CreateSessionLoggerResponseTypeDef,
56
64
  CreateTrustStoreRequestTypeDef,
57
65
  CreateTrustStoreResponseTypeDef,
58
66
  CreateUserAccessLoggingSettingsRequestTypeDef,
@@ -65,6 +73,7 @@ from .type_defs import (
65
73
  DeleteIpAccessSettingsRequestTypeDef,
66
74
  DeleteNetworkSettingsRequestTypeDef,
67
75
  DeletePortalRequestTypeDef,
76
+ DeleteSessionLoggerRequestTypeDef,
68
77
  DeleteTrustStoreRequestTypeDef,
69
78
  DeleteUserAccessLoggingSettingsRequestTypeDef,
70
79
  DeleteUserSettingsRequestTypeDef,
@@ -72,6 +81,7 @@ from .type_defs import (
72
81
  DisassociateDataProtectionSettingsRequestTypeDef,
73
82
  DisassociateIpAccessSettingsRequestTypeDef,
74
83
  DisassociateNetworkSettingsRequestTypeDef,
84
+ DisassociateSessionLoggerRequestTypeDef,
75
85
  DisassociateTrustStoreRequestTypeDef,
76
86
  DisassociateUserAccessLoggingSettingsRequestTypeDef,
77
87
  DisassociateUserSettingsRequestTypeDef,
@@ -90,6 +100,8 @@ from .type_defs import (
90
100
  GetPortalResponseTypeDef,
91
101
  GetPortalServiceProviderMetadataRequestTypeDef,
92
102
  GetPortalServiceProviderMetadataResponseTypeDef,
103
+ GetSessionLoggerRequestTypeDef,
104
+ GetSessionLoggerResponseTypeDef,
93
105
  GetSessionRequestTypeDef,
94
106
  GetSessionResponseTypeDef,
95
107
  GetTrustStoreCertificateRequestTypeDef,
@@ -112,6 +124,8 @@ from .type_defs import (
112
124
  ListNetworkSettingsResponseTypeDef,
113
125
  ListPortalsRequestTypeDef,
114
126
  ListPortalsResponseTypeDef,
127
+ ListSessionLoggersRequestTypeDef,
128
+ ListSessionLoggersResponseTypeDef,
115
129
  ListSessionsRequestTypeDef,
116
130
  ListSessionsResponseTypeDef,
117
131
  ListTagsForResourceRequestTypeDef,
@@ -138,6 +152,8 @@ from .type_defs import (
138
152
  UpdateNetworkSettingsResponseTypeDef,
139
153
  UpdatePortalRequestTypeDef,
140
154
  UpdatePortalResponseTypeDef,
155
+ UpdateSessionLoggerRequestTypeDef,
156
+ UpdateSessionLoggerResponseTypeDef,
141
157
  UpdateTrustStoreRequestTypeDef,
142
158
  UpdateTrustStoreResponseTypeDef,
143
159
  UpdateUserAccessLoggingSettingsRequestTypeDef,
@@ -245,6 +261,16 @@ class WorkSpacesWebClient(BaseClient):
245
261
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#associate_network_settings)
246
262
  """
247
263
 
264
+ def associate_session_logger(
265
+ self, **kwargs: Unpack[AssociateSessionLoggerRequestTypeDef]
266
+ ) -> AssociateSessionLoggerResponseTypeDef:
267
+ """
268
+ Associates a session logger with a portal.
269
+
270
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/associate_session_logger.html)
271
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#associate_session_logger)
272
+ """
273
+
248
274
  def associate_trust_store(
249
275
  self, **kwargs: Unpack[AssociateTrustStoreRequestTypeDef]
250
276
  ) -> AssociateTrustStoreResponseTypeDef:
@@ -336,6 +362,16 @@ class WorkSpacesWebClient(BaseClient):
336
362
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#create_portal)
337
363
  """
338
364
 
365
+ def create_session_logger(
366
+ self, **kwargs: Unpack[CreateSessionLoggerRequestTypeDef]
367
+ ) -> CreateSessionLoggerResponseTypeDef:
368
+ """
369
+ Creates a session logger.
370
+
371
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/create_session_logger.html)
372
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#create_session_logger)
373
+ """
374
+
339
375
  def create_trust_store(
340
376
  self, **kwargs: Unpack[CreateTrustStoreRequestTypeDef]
341
377
  ) -> CreateTrustStoreResponseTypeDef:
@@ -425,6 +461,16 @@ class WorkSpacesWebClient(BaseClient):
425
461
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_portal)
426
462
  """
427
463
 
464
+ def delete_session_logger(
465
+ self, **kwargs: Unpack[DeleteSessionLoggerRequestTypeDef]
466
+ ) -> Dict[str, Any]:
467
+ """
468
+ Deletes a session logger resource.
469
+
470
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/delete_session_logger.html)
471
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#delete_session_logger)
472
+ """
473
+
428
474
  def delete_trust_store(
429
475
  self, **kwargs: Unpack[DeleteTrustStoreRequestTypeDef]
430
476
  ) -> Dict[str, Any]:
@@ -495,6 +541,16 @@ class WorkSpacesWebClient(BaseClient):
495
541
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#disassociate_network_settings)
496
542
  """
497
543
 
544
+ def disassociate_session_logger(
545
+ self, **kwargs: Unpack[DisassociateSessionLoggerRequestTypeDef]
546
+ ) -> Dict[str, Any]:
547
+ """
548
+ Disassociates a session logger from a portal.
549
+
550
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/disassociate_session_logger.html)
551
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#disassociate_session_logger)
552
+ """
553
+
498
554
  def disassociate_trust_store(
499
555
  self, **kwargs: Unpack[DisassociateTrustStoreRequestTypeDef]
500
556
  ) -> Dict[str, Any]:
@@ -609,6 +665,16 @@ class WorkSpacesWebClient(BaseClient):
609
665
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_session)
610
666
  """
611
667
 
668
+ def get_session_logger(
669
+ self, **kwargs: Unpack[GetSessionLoggerRequestTypeDef]
670
+ ) -> GetSessionLoggerResponseTypeDef:
671
+ """
672
+ Gets details about a specific session logger resource.
673
+
674
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_session_logger.html)
675
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_session_logger)
676
+ """
677
+
612
678
  def get_trust_store(
613
679
  self, **kwargs: Unpack[GetTrustStoreRequestTypeDef]
614
680
  ) -> GetTrustStoreResponseTypeDef:
@@ -709,6 +775,16 @@ class WorkSpacesWebClient(BaseClient):
709
775
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_portals)
710
776
  """
711
777
 
778
+ def list_session_loggers(
779
+ self, **kwargs: Unpack[ListSessionLoggersRequestTypeDef]
780
+ ) -> ListSessionLoggersResponseTypeDef:
781
+ """
782
+ Lists all available session logger resources.
783
+
784
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/list_session_loggers.html)
785
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#list_session_loggers)
786
+ """
787
+
712
788
  def list_sessions(
713
789
  self, **kwargs: Unpack[ListSessionsRequestTypeDef]
714
790
  ) -> ListSessionsResponseTypeDef:
@@ -845,6 +921,16 @@ class WorkSpacesWebClient(BaseClient):
845
921
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_portal)
846
922
  """
847
923
 
924
+ def update_session_logger(
925
+ self, **kwargs: Unpack[UpdateSessionLoggerRequestTypeDef]
926
+ ) -> UpdateSessionLoggerResponseTypeDef:
927
+ """
928
+ Updates the details of a session logger.
929
+
930
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/update_session_logger.html)
931
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#update_session_logger)
932
+ """
933
+
848
934
  def update_trust_store(
849
935
  self, **kwargs: Unpack[UpdateTrustStoreRequestTypeDef]
850
936
  ) -> UpdateTrustStoreResponseTypeDef:
@@ -886,6 +972,17 @@ class WorkSpacesWebClient(BaseClient):
886
972
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_paginator)
887
973
  """
888
974
 
975
+ @overload # type: ignore[override]
976
+ def get_paginator( # type: ignore[override]
977
+ self, operation_name: Literal["list_session_loggers"]
978
+ ) -> ListSessionLoggersPaginator:
979
+ """
980
+ Create a paginator for an operation.
981
+
982
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/workspaces-web/client/get_paginator.html)
983
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_workspaces_web/client/#get_paginator)
984
+ """
985
+
889
986
  @overload # type: ignore[override]
890
987
  def get_paginator( # type: ignore[override]
891
988
  self, operation_name: Literal["list_sessions"]
@@ -26,10 +26,14 @@ __all__ = (
26
26
  "AuthenticationTypeType",
27
27
  "BrowserTypeType",
28
28
  "EnabledTypeType",
29
+ "EventType",
30
+ "FolderStructureType",
29
31
  "IdentityProviderTypeType",
30
32
  "InstanceTypeType",
31
33
  "ListDataProtectionSettingsPaginatorName",
34
+ "ListSessionLoggersPaginatorName",
32
35
  "ListSessionsPaginatorName",
36
+ "LogFileFormatType",
33
37
  "MaxDisplayResolutionType",
34
38
  "PaginatorName",
35
39
  "PortalStatusType",
@@ -50,12 +54,33 @@ __all__ = (
50
54
  AuthenticationTypeType = Literal["IAM_Identity_Center", "Standard"]
51
55
  BrowserTypeType = Literal["Chrome"]
52
56
  EnabledTypeType = Literal["Disabled", "Enabled"]
57
+ EventType = Literal[
58
+ "ContentCopyFromWebsite",
59
+ "ContentPasteToWebsite",
60
+ "ContentTransferFromLocalToRemoteClipboard",
61
+ "FileDownloadFromSecureBrowserToRemoteDisk",
62
+ "FileTransferFromLocalToRemoteDisk",
63
+ "FileTransferFromRemoteToLocalDisk",
64
+ "FileUploadFromRemoteDiskToSecureBrowser",
65
+ "PrintJobSubmit",
66
+ "SessionConnect",
67
+ "SessionDisconnect",
68
+ "SessionEnd",
69
+ "SessionStart",
70
+ "TabClose",
71
+ "TabOpen",
72
+ "UrlLoad",
73
+ "WebsiteInteract",
74
+ ]
75
+ FolderStructureType = Literal["Flat", "NestedByDate"]
53
76
  IdentityProviderTypeType = Literal[
54
77
  "Facebook", "Google", "LoginWithAmazon", "OIDC", "SAML", "SignInWithApple"
55
78
  ]
56
79
  InstanceTypeType = Literal["standard.large", "standard.regular", "standard.xlarge"]
57
80
  ListDataProtectionSettingsPaginatorName = Literal["list_data_protection_settings"]
81
+ ListSessionLoggersPaginatorName = Literal["list_session_loggers"]
58
82
  ListSessionsPaginatorName = Literal["list_sessions"]
83
+ LogFileFormatType = Literal["JSONLines", "Json"]
59
84
  MaxDisplayResolutionType = Literal[
60
85
  "size1024X768",
61
86
  "size1280X720",
@@ -80,6 +105,7 @@ ServiceName = Literal[
80
105
  "account",
81
106
  "acm",
82
107
  "acm-pca",
108
+ "aiops",
83
109
  "amp",
84
110
  "amplify",
85
111
  "amplifybackend",
@@ -117,6 +143,8 @@ ServiceName = Literal[
117
143
  "bedrock",
118
144
  "bedrock-agent",
119
145
  "bedrock-agent-runtime",
146
+ "bedrock-agentcore",
147
+ "bedrock-agentcore-control",
120
148
  "bedrock-data-automation",
121
149
  "bedrock-data-automation-runtime",
122
150
  "bedrock-runtime",
@@ -220,6 +248,7 @@ ServiceName = Literal[
220
248
  "es",
221
249
  "events",
222
250
  "evidently",
251
+ "evs",
223
252
  "finspace",
224
253
  "finspace-data",
225
254
  "firehose",
@@ -277,6 +306,7 @@ ServiceName = Literal[
277
306
  "kendra",
278
307
  "kendra-ranking",
279
308
  "keyspaces",
309
+ "keyspacesstreams",
280
310
  "kinesis",
281
311
  "kinesis-video-archived-media",
282
312
  "kinesis-video-media",
@@ -332,6 +362,7 @@ ServiceName = Literal[
332
362
  "migrationhub-config",
333
363
  "migrationhuborchestrator",
334
364
  "migrationhubstrategy",
365
+ "mpa",
335
366
  "mq",
336
367
  "mturk",
337
368
  "mwaa",
@@ -346,6 +377,7 @@ ServiceName = Literal[
346
377
  "notificationscontacts",
347
378
  "oam",
348
379
  "observabilityadmin",
380
+ "odb",
349
381
  "omics",
350
382
  "opensearch",
351
383
  "opensearchserverless",
@@ -372,7 +404,6 @@ ServiceName = Literal[
372
404
  "pipes",
373
405
  "polly",
374
406
  "pricing",
375
- "privatenetworks",
376
407
  "proton",
377
408
  "qapps",
378
409
  "qbusiness",
@@ -407,6 +438,7 @@ ServiceName = Literal[
407
438
  "s3control",
408
439
  "s3outposts",
409
440
  "s3tables",
441
+ "s3vectors",
410
442
  "sagemaker",
411
443
  "sagemaker-a2i-runtime",
412
444
  "sagemaker-edge",
@@ -433,7 +465,6 @@ ServiceName = Literal[
433
465
  "signer",
434
466
  "simspaceweaver",
435
467
  "sms",
436
- "sms-voice",
437
468
  "snow-device-management",
438
469
  "snowball",
439
470
  "sns",
@@ -441,6 +472,7 @@ ServiceName = Literal[
441
472
  "sqs",
442
473
  "ssm",
443
474
  "ssm-contacts",
475
+ "ssm-guiconnect",
444
476
  "ssm-incidents",
445
477
  "ssm-quicksetup",
446
478
  "ssm-sap",
@@ -477,6 +509,7 @@ ServiceName = Literal[
477
509
  "workmail",
478
510
  "workmailmessageflow",
479
511
  "workspaces",
512
+ "workspaces-instances",
480
513
  "workspaces-thin-client",
481
514
  "workspaces-web",
482
515
  "xray",
@@ -493,7 +526,7 @@ ResourceServiceName = Literal[
493
526
  "sns",
494
527
  "sqs",
495
528
  ]
496
- PaginatorName = Literal["list_data_protection_settings", "list_sessions"]
529
+ PaginatorName = Literal["list_data_protection_settings", "list_session_loggers", "list_sessions"]
497
530
  RegionName = Literal[
498
531
  "ap-northeast-1",
499
532
  "ap-south-1",