types-boto3-workspaces-web 1.39.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,8 +12,8 @@ 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.39.0\n"
16
- "Version: 1.39.0\n"
15
+ "Type annotations for boto3 WorkSpacesWeb 1.40.0\n"
16
+ "Version: 1.40.0\n"
17
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"
@@ -26,7 +26,7 @@ def print_version() -> None:
26
26
  """
27
27
  Print package version to stdout.
28
28
  """
29
- sys.stdout.write("1.39.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",
@@ -118,6 +143,8 @@ ServiceName = Literal[
118
143
  "bedrock",
119
144
  "bedrock-agent",
120
145
  "bedrock-agent-runtime",
146
+ "bedrock-agentcore",
147
+ "bedrock-agentcore-control",
121
148
  "bedrock-data-automation",
122
149
  "bedrock-data-automation-runtime",
123
150
  "bedrock-runtime",
@@ -350,6 +377,7 @@ ServiceName = Literal[
350
377
  "notificationscontacts",
351
378
  "oam",
352
379
  "observabilityadmin",
380
+ "odb",
353
381
  "omics",
354
382
  "opensearch",
355
383
  "opensearchserverless",
@@ -410,6 +438,7 @@ ServiceName = Literal[
410
438
  "s3control",
411
439
  "s3outposts",
412
440
  "s3tables",
441
+ "s3vectors",
413
442
  "sagemaker",
414
443
  "sagemaker-a2i-runtime",
415
444
  "sagemaker-edge",
@@ -497,7 +526,7 @@ ResourceServiceName = Literal[
497
526
  "sns",
498
527
  "sqs",
499
528
  ]
500
- PaginatorName = Literal["list_data_protection_settings", "list_sessions"]
529
+ PaginatorName = Literal["list_data_protection_settings", "list_session_loggers", "list_sessions"]
501
530
  RegionName = Literal[
502
531
  "ap-northeast-1",
503
532
  "ap-south-1",
@@ -25,10 +25,14 @@ __all__ = (
25
25
  "AuthenticationTypeType",
26
26
  "BrowserTypeType",
27
27
  "EnabledTypeType",
28
+ "EventType",
29
+ "FolderStructureType",
28
30
  "IdentityProviderTypeType",
29
31
  "InstanceTypeType",
30
32
  "ListDataProtectionSettingsPaginatorName",
33
+ "ListSessionLoggersPaginatorName",
31
34
  "ListSessionsPaginatorName",
35
+ "LogFileFormatType",
32
36
  "MaxDisplayResolutionType",
33
37
  "PaginatorName",
34
38
  "PortalStatusType",
@@ -48,12 +52,33 @@ __all__ = (
48
52
  AuthenticationTypeType = Literal["IAM_Identity_Center", "Standard"]
49
53
  BrowserTypeType = Literal["Chrome"]
50
54
  EnabledTypeType = Literal["Disabled", "Enabled"]
55
+ EventType = Literal[
56
+ "ContentCopyFromWebsite",
57
+ "ContentPasteToWebsite",
58
+ "ContentTransferFromLocalToRemoteClipboard",
59
+ "FileDownloadFromSecureBrowserToRemoteDisk",
60
+ "FileTransferFromLocalToRemoteDisk",
61
+ "FileTransferFromRemoteToLocalDisk",
62
+ "FileUploadFromRemoteDiskToSecureBrowser",
63
+ "PrintJobSubmit",
64
+ "SessionConnect",
65
+ "SessionDisconnect",
66
+ "SessionEnd",
67
+ "SessionStart",
68
+ "TabClose",
69
+ "TabOpen",
70
+ "UrlLoad",
71
+ "WebsiteInteract",
72
+ ]
73
+ FolderStructureType = Literal["Flat", "NestedByDate"]
51
74
  IdentityProviderTypeType = Literal[
52
75
  "Facebook", "Google", "LoginWithAmazon", "OIDC", "SAML", "SignInWithApple"
53
76
  ]
54
77
  InstanceTypeType = Literal["standard.large", "standard.regular", "standard.xlarge"]
55
78
  ListDataProtectionSettingsPaginatorName = Literal["list_data_protection_settings"]
79
+ ListSessionLoggersPaginatorName = Literal["list_session_loggers"]
56
80
  ListSessionsPaginatorName = Literal["list_sessions"]
81
+ LogFileFormatType = Literal["JSONLines", "Json"]
57
82
  MaxDisplayResolutionType = Literal[
58
83
  "size1024X768",
59
84
  "size1280X720",
@@ -116,6 +141,8 @@ ServiceName = Literal[
116
141
  "bedrock",
117
142
  "bedrock-agent",
118
143
  "bedrock-agent-runtime",
144
+ "bedrock-agentcore",
145
+ "bedrock-agentcore-control",
119
146
  "bedrock-data-automation",
120
147
  "bedrock-data-automation-runtime",
121
148
  "bedrock-runtime",
@@ -348,6 +375,7 @@ ServiceName = Literal[
348
375
  "notificationscontacts",
349
376
  "oam",
350
377
  "observabilityadmin",
378
+ "odb",
351
379
  "omics",
352
380
  "opensearch",
353
381
  "opensearchserverless",
@@ -408,6 +436,7 @@ ServiceName = Literal[
408
436
  "s3control",
409
437
  "s3outposts",
410
438
  "s3tables",
439
+ "s3vectors",
411
440
  "sagemaker",
412
441
  "sagemaker-a2i-runtime",
413
442
  "sagemaker-edge",
@@ -495,7 +524,7 @@ ResourceServiceName = Literal[
495
524
  "sns",
496
525
  "sqs",
497
526
  ]
498
- PaginatorName = Literal["list_data_protection_settings", "list_sessions"]
527
+ PaginatorName = Literal["list_data_protection_settings", "list_session_loggers", "list_sessions"]
499
528
  RegionName = Literal[
500
529
  "ap-northeast-1",
501
530
  "ap-south-1",