aws-sdk-workspacesweb 1.43.0 → 1.45.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -95,7 +95,7 @@ module Aws::WorkSpacesWeb
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::WorkSpacesWeb
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::WorkSpacesWeb
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::WorkSpacesWeb
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -367,7 +377,7 @@ module Aws::WorkSpacesWeb
367
377
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
368
378
  #
369
379
  # @option options [Aws::TokenProvider] :token_provider
370
- # A Bearer Token Provider. This can be an instance of any one of the
380
+ # Your Bearer token used for authentication. This can be an instance of any one of the
371
381
  # following classes:
372
382
  #
373
383
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -471,28 +481,28 @@ module Aws::WorkSpacesWeb
471
481
 
472
482
  # Associates a browser settings resource with a web portal.
473
483
  #
474
- # @option params [required, String] :browser_settings_arn
475
- # The ARN of the browser settings.
476
- #
477
484
  # @option params [required, String] :portal_arn
478
485
  # The ARN of the web portal.
479
486
  #
487
+ # @option params [required, String] :browser_settings_arn
488
+ # The ARN of the browser settings.
489
+ #
480
490
  # @return [Types::AssociateBrowserSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
481
491
  #
482
- # * {Types::AssociateBrowserSettingsResponse#browser_settings_arn #browser_settings_arn} => String
483
492
  # * {Types::AssociateBrowserSettingsResponse#portal_arn #portal_arn} => String
493
+ # * {Types::AssociateBrowserSettingsResponse#browser_settings_arn #browser_settings_arn} => String
484
494
  #
485
495
  # @example Request syntax with placeholder values
486
496
  #
487
497
  # resp = client.associate_browser_settings({
488
- # browser_settings_arn: "ARN", # required
489
498
  # portal_arn: "ARN", # required
499
+ # browser_settings_arn: "ARN", # required
490
500
  # })
491
501
  #
492
502
  # @example Response structure
493
503
  #
494
- # resp.browser_settings_arn #=> String
495
504
  # resp.portal_arn #=> String
505
+ # resp.browser_settings_arn #=> String
496
506
  #
497
507
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateBrowserSettings AWS API Documentation
498
508
  #
@@ -505,28 +515,28 @@ module Aws::WorkSpacesWeb
505
515
 
506
516
  # Associates a data protection settings resource with a web portal.
507
517
  #
508
- # @option params [required, String] :data_protection_settings_arn
509
- # The ARN of the data protection settings.
510
- #
511
518
  # @option params [required, String] :portal_arn
512
519
  # The ARN of the web portal.
513
520
  #
521
+ # @option params [required, String] :data_protection_settings_arn
522
+ # The ARN of the data protection settings.
523
+ #
514
524
  # @return [Types::AssociateDataProtectionSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
515
525
  #
516
- # * {Types::AssociateDataProtectionSettingsResponse#data_protection_settings_arn #data_protection_settings_arn} => String
517
526
  # * {Types::AssociateDataProtectionSettingsResponse#portal_arn #portal_arn} => String
527
+ # * {Types::AssociateDataProtectionSettingsResponse#data_protection_settings_arn #data_protection_settings_arn} => String
518
528
  #
519
529
  # @example Request syntax with placeholder values
520
530
  #
521
531
  # resp = client.associate_data_protection_settings({
522
- # data_protection_settings_arn: "ARN", # required
523
532
  # portal_arn: "ARN", # required
533
+ # data_protection_settings_arn: "ARN", # required
524
534
  # })
525
535
  #
526
536
  # @example Response structure
527
537
  #
528
- # resp.data_protection_settings_arn #=> String
529
538
  # resp.portal_arn #=> String
539
+ # resp.data_protection_settings_arn #=> String
530
540
  #
531
541
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateDataProtectionSettings AWS API Documentation
532
542
  #
@@ -539,28 +549,28 @@ module Aws::WorkSpacesWeb
539
549
 
540
550
  # Associates an IP access settings resource with a web portal.
541
551
  #
542
- # @option params [required, String] :ip_access_settings_arn
543
- # The ARN of the IP access settings.
544
- #
545
552
  # @option params [required, String] :portal_arn
546
553
  # The ARN of the web portal.
547
554
  #
555
+ # @option params [required, String] :ip_access_settings_arn
556
+ # The ARN of the IP access settings.
557
+ #
548
558
  # @return [Types::AssociateIpAccessSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
549
559
  #
550
- # * {Types::AssociateIpAccessSettingsResponse#ip_access_settings_arn #ip_access_settings_arn} => String
551
560
  # * {Types::AssociateIpAccessSettingsResponse#portal_arn #portal_arn} => String
561
+ # * {Types::AssociateIpAccessSettingsResponse#ip_access_settings_arn #ip_access_settings_arn} => String
552
562
  #
553
563
  # @example Request syntax with placeholder values
554
564
  #
555
565
  # resp = client.associate_ip_access_settings({
556
- # ip_access_settings_arn: "ARN", # required
557
566
  # portal_arn: "ARN", # required
567
+ # ip_access_settings_arn: "ARN", # required
558
568
  # })
559
569
  #
560
570
  # @example Response structure
561
571
  #
562
- # resp.ip_access_settings_arn #=> String
563
572
  # resp.portal_arn #=> String
573
+ # resp.ip_access_settings_arn #=> String
564
574
  #
565
575
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateIpAccessSettings AWS API Documentation
566
576
  #
@@ -573,28 +583,28 @@ module Aws::WorkSpacesWeb
573
583
 
574
584
  # Associates a network settings resource with a web portal.
575
585
  #
576
- # @option params [required, String] :network_settings_arn
577
- # The ARN of the network settings.
578
- #
579
586
  # @option params [required, String] :portal_arn
580
587
  # The ARN of the web portal.
581
588
  #
589
+ # @option params [required, String] :network_settings_arn
590
+ # The ARN of the network settings.
591
+ #
582
592
  # @return [Types::AssociateNetworkSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
583
593
  #
584
- # * {Types::AssociateNetworkSettingsResponse#network_settings_arn #network_settings_arn} => String
585
594
  # * {Types::AssociateNetworkSettingsResponse#portal_arn #portal_arn} => String
595
+ # * {Types::AssociateNetworkSettingsResponse#network_settings_arn #network_settings_arn} => String
586
596
  #
587
597
  # @example Request syntax with placeholder values
588
598
  #
589
599
  # resp = client.associate_network_settings({
590
- # network_settings_arn: "ARN", # required
591
600
  # portal_arn: "ARN", # required
601
+ # network_settings_arn: "ARN", # required
592
602
  # })
593
603
  #
594
604
  # @example Response structure
595
605
  #
596
- # resp.network_settings_arn #=> String
597
606
  # resp.portal_arn #=> String
607
+ # resp.network_settings_arn #=> String
598
608
  #
599
609
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateNetworkSettings AWS API Documentation
600
610
  #
@@ -605,6 +615,56 @@ module Aws::WorkSpacesWeb
605
615
  req.send_request(options)
606
616
  end
607
617
 
618
+ # Associates a session logger with a portal.
619
+ #
620
+ # @option params [required, String] :portal_arn
621
+ # The ARN of the portal to associate to the session logger ARN.
622
+ #
623
+ # @option params [required, String] :session_logger_arn
624
+ # The ARN of the session logger to associate to the portal ARN.
625
+ #
626
+ # @return [Types::AssociateSessionLoggerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
627
+ #
628
+ # * {Types::AssociateSessionLoggerResponse#portal_arn #portal_arn} => String
629
+ # * {Types::AssociateSessionLoggerResponse#session_logger_arn #session_logger_arn} => String
630
+ #
631
+ #
632
+ # @example Example: Associate Session Logger with Portal
633
+ #
634
+ # # Associates a session logger with a portal
635
+ #
636
+ # resp = client.associate_session_logger({
637
+ # portal_arn: "arn:aws:workspaces-web:us-west-2:123456789012:portal/12345678-1234-1234-1234-123456789012",
638
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/11111111-1111-1111-1111-111111111111",
639
+ # })
640
+ #
641
+ # resp.to_h outputs the following:
642
+ # {
643
+ # portal_arn: "arn:aws:workspaces-web:us-west-2:123456789012:portal/12345678-1234-1234-1234-123456789012",
644
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/11111111-1111-1111-1111-111111111111",
645
+ # }
646
+ #
647
+ # @example Request syntax with placeholder values
648
+ #
649
+ # resp = client.associate_session_logger({
650
+ # portal_arn: "ARN", # required
651
+ # session_logger_arn: "ARN", # required
652
+ # })
653
+ #
654
+ # @example Response structure
655
+ #
656
+ # resp.portal_arn #=> String
657
+ # resp.session_logger_arn #=> String
658
+ #
659
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateSessionLogger AWS API Documentation
660
+ #
661
+ # @overload associate_session_logger(params = {})
662
+ # @param [Hash] params ({})
663
+ def associate_session_logger(params = {}, options = {})
664
+ req = build_request(:associate_session_logger, params)
665
+ req.send_request(options)
666
+ end
667
+
608
668
  # Associates a trust store with a web portal.
609
669
  #
610
670
  # @option params [required, String] :portal_arn
@@ -712,6 +772,13 @@ module Aws::WorkSpacesWeb
712
772
  # how the browser will behave once a user starts a streaming session for
713
773
  # the web portal.
714
774
  #
775
+ # @option params [Array<Types::Tag>] :tags
776
+ # The tags to add to the browser settings resource. A tag is a key-value
777
+ # pair.
778
+ #
779
+ # @option params [String] :customer_managed_key
780
+ # The custom managed key of the browser settings.
781
+ #
715
782
  # @option params [Hash<String,String>] :additional_encryption_context
716
783
  # Additional encryption context of the browser settings.
717
784
  #
@@ -732,13 +799,6 @@ module Aws::WorkSpacesWeb
732
799
  # **A suitable default value is auto-generated.** You should normally
733
800
  # not need to pass this option.**
734
801
  #
735
- # @option params [String] :customer_managed_key
736
- # The custom managed key of the browser settings.
737
- #
738
- # @option params [Array<Types::Tag>] :tags
739
- # The tags to add to the browser settings resource. A tag is a key-value
740
- # pair.
741
- #
742
802
  # @return [Types::CreateBrowserSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
743
803
  #
744
804
  # * {Types::CreateBrowserSettingsResponse#browser_settings_arn #browser_settings_arn} => String
@@ -746,18 +806,18 @@ module Aws::WorkSpacesWeb
746
806
  # @example Request syntax with placeholder values
747
807
  #
748
808
  # resp = client.create_browser_settings({
749
- # additional_encryption_context: {
750
- # "StringType" => "StringType",
751
- # },
752
- # browser_policy: "BrowserPolicy", # required
753
- # client_token: "ClientToken",
754
- # customer_managed_key: "keyArn",
755
809
  # tags: [
756
810
  # {
757
811
  # key: "TagKey", # required
758
812
  # value: "TagValue", # required
759
813
  # },
760
814
  # ],
815
+ # customer_managed_key: "keyArn",
816
+ # additional_encryption_context: {
817
+ # "StringType" => "StringType",
818
+ # },
819
+ # browser_policy: "BrowserPolicy", # required
820
+ # client_token: "ClientToken",
761
821
  # })
762
822
  #
763
823
  # @example Response structure
@@ -776,9 +836,26 @@ module Aws::WorkSpacesWeb
776
836
  # Creates a data protection settings resource that can be associated
777
837
  # with a web portal.
778
838
  #
839
+ # @option params [String] :display_name
840
+ # The display name of the data protection settings.
841
+ #
842
+ # @option params [String] :description
843
+ # The description of the data protection settings.
844
+ #
845
+ # @option params [Array<Types::Tag>] :tags
846
+ # The tags to add to the data protection settings resource. A tag is a
847
+ # key-value pair.
848
+ #
849
+ # @option params [String] :customer_managed_key
850
+ # The custom managed key of the data protection settings.
851
+ #
779
852
  # @option params [Hash<String,String>] :additional_encryption_context
780
853
  # Additional encryption context of the data protection settings.
781
854
  #
855
+ # @option params [Types::InlineRedactionConfiguration] :inline_redaction_configuration
856
+ # The inline redaction configuration of the data protection settings
857
+ # that will be applied to all sessions.
858
+ #
782
859
  # @option params [String] :client_token
783
860
  # A unique, case-sensitive identifier that you provide to ensure the
784
861
  # idempotency of the request. Idempotency ensures that an API request
@@ -792,23 +869,6 @@ module Aws::WorkSpacesWeb
792
869
  # **A suitable default value is auto-generated.** You should normally
793
870
  # not need to pass this option.**
794
871
  #
795
- # @option params [String] :customer_managed_key
796
- # The custom managed key of the data protection settings.
797
- #
798
- # @option params [String] :description
799
- # The description of the data protection settings.
800
- #
801
- # @option params [String] :display_name
802
- # The display name of the data protection settings.
803
- #
804
- # @option params [Types::InlineRedactionConfiguration] :inline_redaction_configuration
805
- # The inline redaction configuration of the data protection settings
806
- # that will be applied to all sessions.
807
- #
808
- # @option params [Array<Types::Tag>] :tags
809
- # The tags to add to the data protection settings resource. A tag is a
810
- # key-value pair.
811
- #
812
872
  # @return [Types::CreateDataProtectionSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
813
873
  #
814
874
  # * {Types::CreateDataProtectionSettingsResponse#data_protection_settings_arn #data_protection_settings_arn} => String
@@ -816,42 +876,42 @@ module Aws::WorkSpacesWeb
816
876
  # @example Request syntax with placeholder values
817
877
  #
818
878
  # resp = client.create_data_protection_settings({
879
+ # display_name: "DisplayNameSafe",
880
+ # description: "DescriptionSafe",
881
+ # tags: [
882
+ # {
883
+ # key: "TagKey", # required
884
+ # value: "TagValue", # required
885
+ # },
886
+ # ],
887
+ # customer_managed_key: "keyArn",
819
888
  # additional_encryption_context: {
820
889
  # "StringType" => "StringType",
821
890
  # },
822
- # client_token: "ClientToken",
823
- # customer_managed_key: "keyArn",
824
- # description: "DescriptionSafe",
825
- # display_name: "DisplayNameSafe",
826
891
  # inline_redaction_configuration: {
827
- # global_confidence_level: 1,
828
- # global_enforced_urls: ["InlineRedactionUrl"],
829
- # global_exempt_urls: ["InlineRedactionUrl"],
830
892
  # inline_redaction_patterns: [ # required
831
893
  # {
832
894
  # built_in_pattern_id: "BuiltInPatternId",
833
- # confidence_level: 1,
834
895
  # custom_pattern: {
835
- # keyword_regex: "Regex",
836
- # pattern_description: "DescriptionSafe",
837
896
  # pattern_name: "PatternName", # required
838
897
  # pattern_regex: "Regex", # required
898
+ # pattern_description: "DescriptionSafe",
899
+ # keyword_regex: "Regex",
839
900
  # },
840
- # enforced_urls: ["InlineRedactionUrl"],
841
- # exempt_urls: ["InlineRedactionUrl"],
842
901
  # redaction_place_holder: { # required
843
- # redaction_place_holder_text: "RedactionPlaceHolderText",
844
902
  # redaction_place_holder_type: "CustomText", # required, accepts CustomText
903
+ # redaction_place_holder_text: "RedactionPlaceHolderText",
845
904
  # },
905
+ # enforced_urls: ["InlineRedactionUrl"],
906
+ # exempt_urls: ["InlineRedactionUrl"],
907
+ # confidence_level: 1,
846
908
  # },
847
909
  # ],
910
+ # global_enforced_urls: ["InlineRedactionUrl"],
911
+ # global_exempt_urls: ["InlineRedactionUrl"],
912
+ # global_confidence_level: 1,
848
913
  # },
849
- # tags: [
850
- # {
851
- # key: "TagKey", # required
852
- # value: "TagValue", # required
853
- # },
854
- # ],
914
+ # client_token: "ClientToken",
855
915
  # })
856
916
  #
857
917
  # @example Response structure
@@ -870,18 +930,14 @@ module Aws::WorkSpacesWeb
870
930
  # Creates an identity provider resource that is then associated with a
871
931
  # web portal.
872
932
  #
873
- # @option params [String] :client_token
874
- # A unique, case-sensitive identifier that you provide to ensure the
875
- # idempotency of the request. Idempotency ensures that an API request
876
- # completes only once. With an idempotent request, if the original
877
- # request completes successfully, subsequent retries with the same
878
- # client token returns the result from the original successful request.
933
+ # @option params [required, String] :portal_arn
934
+ # The ARN of the web portal.
879
935
  #
880
- # If you do not specify a client token, one is automatically generated
881
- # by the Amazon Web Services SDK.
936
+ # @option params [required, String] :identity_provider_name
937
+ # The identity provider name.
882
938
  #
883
- # **A suitable default value is auto-generated.** You should normally
884
- # not need to pass this option.**
939
+ # @option params [required, String] :identity_provider_type
940
+ # The identity provider type.
885
941
  #
886
942
  # @option params [required, Hash<String,String>] :identity_provider_details
887
943
  # The identity provider details. The following list describes the
@@ -950,14 +1006,18 @@ module Aws::WorkSpacesWeb
950
1006
  #
951
1007
  # * `EncryptedResponses` (boolean) *optional*
952
1008
  #
953
- # @option params [required, String] :identity_provider_name
954
- # The identity provider name.
1009
+ # @option params [String] :client_token
1010
+ # A unique, case-sensitive identifier that you provide to ensure the
1011
+ # idempotency of the request. Idempotency ensures that an API request
1012
+ # completes only once. With an idempotent request, if the original
1013
+ # request completes successfully, subsequent retries with the same
1014
+ # client token returns the result from the original successful request.
955
1015
  #
956
- # @option params [required, String] :identity_provider_type
957
- # The identity provider type.
1016
+ # If you do not specify a client token, one is automatically generated
1017
+ # by the Amazon Web Services SDK.
958
1018
  #
959
- # @option params [required, String] :portal_arn
960
- # The ARN of the web portal.
1019
+ # **A suitable default value is auto-generated.** You should normally
1020
+ # not need to pass this option.**
961
1021
  #
962
1022
  # @option params [Array<Types::Tag>] :tags
963
1023
  # The tags to add to the identity provider resource. A tag is a
@@ -970,13 +1030,13 @@ module Aws::WorkSpacesWeb
970
1030
  # @example Request syntax with placeholder values
971
1031
  #
972
1032
  # resp = client.create_identity_provider({
973
- # client_token: "ClientToken",
1033
+ # portal_arn: "ARN", # required
1034
+ # identity_provider_name: "IdentityProviderName", # required
1035
+ # identity_provider_type: "SAML", # required, accepts SAML, Facebook, Google, LoginWithAmazon, SignInWithApple, OIDC
974
1036
  # identity_provider_details: { # required
975
1037
  # "StringType" => "StringType",
976
1038
  # },
977
- # identity_provider_name: "IdentityProviderName", # required
978
- # identity_provider_type: "SAML", # required, accepts SAML, Facebook, Google, LoginWithAmazon, SignInWithApple, OIDC
979
- # portal_arn: "ARN", # required
1039
+ # client_token: "ClientToken",
980
1040
  # tags: [
981
1041
  # {
982
1042
  # key: "TagKey", # required
@@ -1001,9 +1061,25 @@ module Aws::WorkSpacesWeb
1001
1061
  # Creates an IP access settings resource that can be associated with a
1002
1062
  # web portal.
1003
1063
  #
1064
+ # @option params [String] :display_name
1065
+ # The display name of the IP access settings.
1066
+ #
1067
+ # @option params [String] :description
1068
+ # The description of the IP access settings.
1069
+ #
1070
+ # @option params [Array<Types::Tag>] :tags
1071
+ # The tags to add to the IP access settings resource. A tag is a
1072
+ # key-value pair.
1073
+ #
1074
+ # @option params [String] :customer_managed_key
1075
+ # The custom managed key of the IP access settings.
1076
+ #
1004
1077
  # @option params [Hash<String,String>] :additional_encryption_context
1005
1078
  # Additional encryption context of the IP access settings.
1006
1079
  #
1080
+ # @option params [required, Array<Types::IpRule>] :ip_rules
1081
+ # The IP rules of the IP access settings.
1082
+ #
1007
1083
  # @option params [String] :client_token
1008
1084
  # A unique, case-sensitive identifier that you provide to ensure the
1009
1085
  # idempotency of the request. Idempotency ensures that an API request
@@ -1017,22 +1093,6 @@ module Aws::WorkSpacesWeb
1017
1093
  # **A suitable default value is auto-generated.** You should normally
1018
1094
  # not need to pass this option.**
1019
1095
  #
1020
- # @option params [String] :customer_managed_key
1021
- # The custom managed key of the IP access settings.
1022
- #
1023
- # @option params [String] :description
1024
- # The description of the IP access settings.
1025
- #
1026
- # @option params [String] :display_name
1027
- # The display name of the IP access settings.
1028
- #
1029
- # @option params [required, Array<Types::IpRule>] :ip_rules
1030
- # The IP rules of the IP access settings.
1031
- #
1032
- # @option params [Array<Types::Tag>] :tags
1033
- # The tags to add to the IP access settings resource. A tag is a
1034
- # key-value pair.
1035
- #
1036
1096
  # @return [Types::CreateIpAccessSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1037
1097
  #
1038
1098
  # * {Types::CreateIpAccessSettingsResponse#ip_access_settings_arn #ip_access_settings_arn} => String
@@ -1040,25 +1100,25 @@ module Aws::WorkSpacesWeb
1040
1100
  # @example Request syntax with placeholder values
1041
1101
  #
1042
1102
  # resp = client.create_ip_access_settings({
1043
- # additional_encryption_context: {
1044
- # "StringType" => "StringType",
1045
- # },
1046
- # client_token: "ClientToken",
1047
- # customer_managed_key: "keyArn",
1048
- # description: "Description",
1049
1103
  # display_name: "DisplayName",
1050
- # ip_rules: [ # required
1051
- # {
1052
- # description: "Description",
1053
- # ip_range: "IpRange", # required
1054
- # },
1055
- # ],
1104
+ # description: "Description",
1056
1105
  # tags: [
1057
1106
  # {
1058
1107
  # key: "TagKey", # required
1059
1108
  # value: "TagValue", # required
1060
1109
  # },
1061
1110
  # ],
1111
+ # customer_managed_key: "keyArn",
1112
+ # additional_encryption_context: {
1113
+ # "StringType" => "StringType",
1114
+ # },
1115
+ # ip_rules: [ # required
1116
+ # {
1117
+ # ip_range: "IpRange", # required
1118
+ # description: "Description",
1119
+ # },
1120
+ # ],
1121
+ # client_token: "ClientToken",
1062
1122
  # })
1063
1123
  #
1064
1124
  # @example Response structure
@@ -1078,6 +1138,22 @@ module Aws::WorkSpacesWeb
1078
1138
  # portal. Once associated with a web portal, network settings define how
1079
1139
  # streaming instances will connect with your specified VPC.
1080
1140
  #
1141
+ # @option params [required, String] :vpc_id
1142
+ # The VPC that streaming instances will connect to.
1143
+ #
1144
+ # @option params [required, Array<String>] :subnet_ids
1145
+ # The subnets in which network interfaces are created to connect
1146
+ # streaming instances to your VPC. At least two of these subnets must be
1147
+ # in different availability zones.
1148
+ #
1149
+ # @option params [required, Array<String>] :security_group_ids
1150
+ # One or more security groups used to control access from streaming
1151
+ # instances to your VPC.
1152
+ #
1153
+ # @option params [Array<Types::Tag>] :tags
1154
+ # The tags to add to the network settings resource. A tag is a key-value
1155
+ # pair.
1156
+ #
1081
1157
  # @option params [String] :client_token
1082
1158
  # A unique, case-sensitive identifier that you provide to ensure the
1083
1159
  # idempotency of the request. Idempotency ensures that an API request
@@ -1091,22 +1167,6 @@ module Aws::WorkSpacesWeb
1091
1167
  # **A suitable default value is auto-generated.** You should normally
1092
1168
  # not need to pass this option.**
1093
1169
  #
1094
- # @option params [required, Array<String>] :security_group_ids
1095
- # One or more security groups used to control access from streaming
1096
- # instances to your VPC.
1097
- #
1098
- # @option params [required, Array<String>] :subnet_ids
1099
- # The subnets in which network interfaces are created to connect
1100
- # streaming instances to your VPC. At least two of these subnets must be
1101
- # in different availability zones.
1102
- #
1103
- # @option params [Array<Types::Tag>] :tags
1104
- # The tags to add to the network settings resource. A tag is a key-value
1105
- # pair.
1106
- #
1107
- # @option params [required, String] :vpc_id
1108
- # The VPC that streaming instances will connect to.
1109
- #
1110
1170
  # @return [Types::CreateNetworkSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1111
1171
  #
1112
1172
  # * {Types::CreateNetworkSettingsResponse#network_settings_arn #network_settings_arn} => String
@@ -1114,16 +1174,16 @@ module Aws::WorkSpacesWeb
1114
1174
  # @example Request syntax with placeholder values
1115
1175
  #
1116
1176
  # resp = client.create_network_settings({
1117
- # client_token: "ClientToken",
1118
- # security_group_ids: ["SecurityGroupId"], # required
1177
+ # vpc_id: "VpcId", # required
1119
1178
  # subnet_ids: ["SubnetId"], # required
1179
+ # security_group_ids: ["SecurityGroupId"], # required
1120
1180
  # tags: [
1121
1181
  # {
1122
1182
  # key: "TagKey", # required
1123
1183
  # value: "TagValue", # required
1124
1184
  # },
1125
1185
  # ],
1126
- # vpc_id: "VpcId", # required
1186
+ # client_token: "ClientToken",
1127
1187
  # })
1128
1188
  #
1129
1189
  # @example Response structure
@@ -1141,9 +1201,32 @@ module Aws::WorkSpacesWeb
1141
1201
 
1142
1202
  # Creates a web portal.
1143
1203
  #
1204
+ # @option params [String] :display_name
1205
+ # The name of the web portal. This is not visible to users who log into
1206
+ # the web portal.
1207
+ #
1208
+ # @option params [Array<Types::Tag>] :tags
1209
+ # The tags to add to the web portal. A tag is a key-value pair.
1210
+ #
1211
+ # @option params [String] :customer_managed_key
1212
+ # The customer managed key of the web portal.
1213
+ #
1144
1214
  # @option params [Hash<String,String>] :additional_encryption_context
1145
1215
  # The additional encryption context of the portal.
1146
1216
  #
1217
+ # @option params [String] :client_token
1218
+ # A unique, case-sensitive identifier that you provide to ensure the
1219
+ # idempotency of the request. Idempotency ensures that an API request
1220
+ # completes only once. With an idempotent request, if the original
1221
+ # request completes successfully, subsequent retries with the same
1222
+ # client token returns the result from the original successful request.
1223
+ #
1224
+ # If you do not specify a client token, one is automatically generated
1225
+ # by the Amazon Web Services SDK.
1226
+ #
1227
+ # **A suitable default value is auto-generated.** You should normally
1228
+ # not need to pass this option.**
1229
+ #
1147
1230
  # @option params [String] :authentication_type
1148
1231
  # The type of authentication integration points used when signing into
1149
1232
  # the web portal. Defaults to `Standard`.
@@ -1159,71 +1242,199 @@ module Aws::WorkSpacesWeb
1159
1242
  # provider integration), plus user and group access to your web portal,
1160
1243
  # can be configured in the IAM Identity Center.
1161
1244
  #
1245
+ # @option params [String] :instance_type
1246
+ # The type and resources of the underlying instance.
1247
+ #
1248
+ # @option params [Integer] :max_concurrent_sessions
1249
+ # The maximum number of concurrent sessions for the portal.
1250
+ #
1251
+ # @return [Types::CreatePortalResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1252
+ #
1253
+ # * {Types::CreatePortalResponse#portal_arn #portal_arn} => String
1254
+ # * {Types::CreatePortalResponse#portal_endpoint #portal_endpoint} => String
1255
+ #
1256
+ # @example Request syntax with placeholder values
1257
+ #
1258
+ # resp = client.create_portal({
1259
+ # display_name: "DisplayName",
1260
+ # tags: [
1261
+ # {
1262
+ # key: "TagKey", # required
1263
+ # value: "TagValue", # required
1264
+ # },
1265
+ # ],
1266
+ # customer_managed_key: "keyArn",
1267
+ # additional_encryption_context: {
1268
+ # "StringType" => "StringType",
1269
+ # },
1270
+ # client_token: "ClientToken",
1271
+ # authentication_type: "Standard", # accepts Standard, IAM_Identity_Center
1272
+ # instance_type: "standard.regular", # accepts standard.regular, standard.large, standard.xlarge
1273
+ # max_concurrent_sessions: 1,
1274
+ # })
1275
+ #
1276
+ # @example Response structure
1277
+ #
1278
+ # resp.portal_arn #=> String
1279
+ # resp.portal_endpoint #=> String
1280
+ #
1281
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreatePortal AWS API Documentation
1282
+ #
1283
+ # @overload create_portal(params = {})
1284
+ # @param [Hash] params ({})
1285
+ def create_portal(params = {}, options = {})
1286
+ req = build_request(:create_portal, params)
1287
+ req.send_request(options)
1288
+ end
1289
+
1290
+ # Creates a session logger.
1291
+ #
1292
+ # @option params [required, Types::EventFilter] :event_filter
1293
+ # The filter that specifies the events to monitor.
1294
+ #
1295
+ # @option params [required, Types::LogConfiguration] :log_configuration
1296
+ # The configuration that specifies where logs are delivered.
1297
+ #
1298
+ # @option params [String] :display_name
1299
+ # The human-readable display name for the session logger resource.
1300
+ #
1301
+ # @option params [String] :customer_managed_key
1302
+ # The custom managed key of the session logger.
1303
+ #
1304
+ # @option params [Hash<String,String>] :additional_encryption_context
1305
+ # The additional encryption context of the session logger.
1306
+ #
1307
+ # @option params [Array<Types::Tag>] :tags
1308
+ # The tags to add to the session logger.
1309
+ #
1162
1310
  # @option params [String] :client_token
1163
1311
  # A unique, case-sensitive identifier that you provide to ensure the
1164
1312
  # idempotency of the request. Idempotency ensures that an API request
1165
1313
  # completes only once. With an idempotent request, if the original
1166
1314
  # request completes successfully, subsequent retries with the same
1167
1315
  # client token returns the result from the original successful request.
1168
- #
1169
1316
  # If you do not specify a client token, one is automatically generated
1170
- # by the Amazon Web Services SDK.
1317
+ # by the AWS SDK.
1171
1318
  #
1172
1319
  # **A suitable default value is auto-generated.** You should normally
1173
1320
  # not need to pass this option.**
1174
1321
  #
1175
- # @option params [String] :customer_managed_key
1176
- # The customer managed key of the web portal.
1322
+ # @return [Types::CreateSessionLoggerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1177
1323
  #
1178
- # @option params [String] :display_name
1179
- # The name of the web portal. This is not visible to users who log into
1180
- # the web portal.
1324
+ # * {Types::CreateSessionLoggerResponse#session_logger_arn #session_logger_arn} => String
1181
1325
  #
1182
- # @option params [String] :instance_type
1183
- # The type and resources of the underlying instance.
1184
1326
  #
1185
- # @option params [Integer] :max_concurrent_sessions
1186
- # The maximum number of concurrent sessions for the portal.
1327
+ # @example Example: Create Session Logger with All Events
1187
1328
  #
1188
- # @option params [Array<Types::Tag>] :tags
1189
- # The tags to add to the web portal. A tag is a key-value pair.
1329
+ # # Creates a session logger that captures all events and stores them in S3 with JSON format and flat folder structure
1190
1330
  #
1191
- # @return [Types::CreatePortalResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1331
+ # resp = client.create_session_logger({
1332
+ # display_name: "Session Logger with All Events",
1333
+ # event_filter: {
1334
+ # all: {
1335
+ # },
1336
+ # },
1337
+ # log_configuration: {
1338
+ # s3: {
1339
+ # bucket: "my-session-logs-bucket",
1340
+ # bucket_owner: "123456789012",
1341
+ # folder_structure: "Flat",
1342
+ # key_prefix: "session-logs/all/events",
1343
+ # log_file_format: "Json",
1344
+ # },
1345
+ # },
1346
+ # })
1192
1347
  #
1193
- # * {Types::CreatePortalResponse#portal_arn #portal_arn} => String
1194
- # * {Types::CreatePortalResponse#portal_endpoint #portal_endpoint} => String
1348
+ # resp.to_h outputs the following:
1349
+ # {
1350
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/12345678-1234-1234-1234-123456789012",
1351
+ # }
1352
+ #
1353
+ # @example Example: Create Session Logger with Specific Events
1354
+ #
1355
+ # # Creates a session logger that captures only specific events with JSONLines format and nested folder structure
1356
+ #
1357
+ # resp = client.create_session_logger({
1358
+ # additional_encryption_context: {
1359
+ # "EncryptionContextKey" => "EncryptionContextValue",
1360
+ # },
1361
+ # customer_managed_key: "arn:aws:kms:us-west-2:123456789012:key/12345678-1234-1234-1234-123456789012",
1362
+ # display_name: "Session Logger with Each Events",
1363
+ # event_filter: {
1364
+ # include: [
1365
+ # "SessionStart",
1366
+ # "SessionEnd",
1367
+ # "UrlLoad",
1368
+ # "WebsiteInteract",
1369
+ # ],
1370
+ # },
1371
+ # log_configuration: {
1372
+ # s3: {
1373
+ # bucket: "my-session-logs-bucket",
1374
+ # bucket_owner: "123456789012",
1375
+ # folder_structure: "NestedByDate",
1376
+ # key_prefix: "session-logs/each/event",
1377
+ # log_file_format: "JSONLines",
1378
+ # },
1379
+ # },
1380
+ # tags: [
1381
+ # {
1382
+ # key: "KEY-1",
1383
+ # value: "VALUE-1",
1384
+ # },
1385
+ # {
1386
+ # key: "KEY-2",
1387
+ # value: "VALUE-2",
1388
+ # },
1389
+ # ],
1390
+ # })
1391
+ #
1392
+ # resp.to_h outputs the following:
1393
+ # {
1394
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/87654321-4321-4321-4321-210987654321",
1395
+ # }
1195
1396
  #
1196
1397
  # @example Request syntax with placeholder values
1197
1398
  #
1198
- # resp = client.create_portal({
1399
+ # resp = client.create_session_logger({
1400
+ # event_filter: { # required
1401
+ # all: {
1402
+ # },
1403
+ # include: ["WebsiteInteract"], # accepts WebsiteInteract, FileDownloadFromSecureBrowserToRemoteDisk, FileTransferFromRemoteToLocalDisk, FileTransferFromLocalToRemoteDisk, FileUploadFromRemoteDiskToSecureBrowser, ContentPasteToWebsite, ContentTransferFromLocalToRemoteClipboard, ContentCopyFromWebsite, UrlLoad, TabOpen, TabClose, PrintJobSubmit, SessionConnect, SessionStart, SessionDisconnect, SessionEnd
1404
+ # },
1405
+ # log_configuration: { # required
1406
+ # s3: {
1407
+ # bucket: "S3Bucket", # required
1408
+ # key_prefix: "S3KeyPrefix",
1409
+ # bucket_owner: "S3BucketOwner",
1410
+ # log_file_format: "JSONLines", # required, accepts JSONLines, Json
1411
+ # folder_structure: "Flat", # required, accepts Flat, NestedByDate
1412
+ # },
1413
+ # },
1414
+ # display_name: "DisplayNameSafe",
1415
+ # customer_managed_key: "keyArn",
1199
1416
  # additional_encryption_context: {
1200
1417
  # "StringType" => "StringType",
1201
1418
  # },
1202
- # authentication_type: "Standard", # accepts Standard, IAM_Identity_Center
1203
- # client_token: "ClientToken",
1204
- # customer_managed_key: "keyArn",
1205
- # display_name: "DisplayName",
1206
- # instance_type: "standard.regular", # accepts standard.regular, standard.large, standard.xlarge
1207
- # max_concurrent_sessions: 1,
1208
1419
  # tags: [
1209
1420
  # {
1210
1421
  # key: "TagKey", # required
1211
1422
  # value: "TagValue", # required
1212
1423
  # },
1213
1424
  # ],
1425
+ # client_token: "ClientToken",
1214
1426
  # })
1215
1427
  #
1216
1428
  # @example Response structure
1217
1429
  #
1218
- # resp.portal_arn #=> String
1219
- # resp.portal_endpoint #=> String
1430
+ # resp.session_logger_arn #=> String
1220
1431
  #
1221
- # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreatePortal AWS API Documentation
1432
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateSessionLogger AWS API Documentation
1222
1433
  #
1223
- # @overload create_portal(params = {})
1434
+ # @overload create_session_logger(params = {})
1224
1435
  # @param [Hash] params ({})
1225
- def create_portal(params = {}, options = {})
1226
- req = build_request(:create_portal, params)
1436
+ def create_session_logger(params = {}, options = {})
1437
+ req = build_request(:create_session_logger, params)
1227
1438
  req.send_request(options)
1228
1439
  end
1229
1440
 
@@ -1238,6 +1449,9 @@ module Aws::WorkSpacesWeb
1238
1449
  # @option params [required, Array<String, StringIO, File>] :certificate_list
1239
1450
  # A list of CA certificates to be added to the trust store.
1240
1451
  #
1452
+ # @option params [Array<Types::Tag>] :tags
1453
+ # The tags to add to the trust store. A tag is a key-value pair.
1454
+ #
1241
1455
  # @option params [String] :client_token
1242
1456
  # A unique, case-sensitive identifier that you provide to ensure the
1243
1457
  # idempotency of the request. Idempotency ensures that an API request
@@ -1251,9 +1465,6 @@ module Aws::WorkSpacesWeb
1251
1465
  # **A suitable default value is auto-generated.** You should normally
1252
1466
  # not need to pass this option.**
1253
1467
  #
1254
- # @option params [Array<Types::Tag>] :tags
1255
- # The tags to add to the trust store. A tag is a key-value pair.
1256
- #
1257
1468
  # @return [Types::CreateTrustStoreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1258
1469
  #
1259
1470
  # * {Types::CreateTrustStoreResponse#trust_store_arn #trust_store_arn} => String
@@ -1262,13 +1473,13 @@ module Aws::WorkSpacesWeb
1262
1473
  #
1263
1474
  # resp = client.create_trust_store({
1264
1475
  # certificate_list: ["data"], # required
1265
- # client_token: "ClientToken",
1266
1476
  # tags: [
1267
1477
  # {
1268
1478
  # key: "TagKey", # required
1269
1479
  # value: "TagValue", # required
1270
1480
  # },
1271
1481
  # ],
1482
+ # client_token: "ClientToken",
1272
1483
  # })
1273
1484
  #
1274
1485
  # @example Response structure
@@ -1287,6 +1498,13 @@ module Aws::WorkSpacesWeb
1287
1498
  # Creates a user access logging settings resource that can be associated
1288
1499
  # with a web portal.
1289
1500
  #
1501
+ # @option params [required, String] :kinesis_stream_arn
1502
+ # The ARN of the Kinesis stream.
1503
+ #
1504
+ # @option params [Array<Types::Tag>] :tags
1505
+ # The tags to add to the user settings resource. A tag is a key-value
1506
+ # pair.
1507
+ #
1290
1508
  # @option params [String] :client_token
1291
1509
  # A unique, case-sensitive identifier that you provide to ensure the
1292
1510
  # idempotency of the request. Idempotency ensures that an API request
@@ -1300,13 +1518,6 @@ module Aws::WorkSpacesWeb
1300
1518
  # **A suitable default value is auto-generated.** You should normally
1301
1519
  # not need to pass this option.**
1302
1520
  #
1303
- # @option params [required, String] :kinesis_stream_arn
1304
- # The ARN of the Kinesis stream.
1305
- #
1306
- # @option params [Array<Types::Tag>] :tags
1307
- # The tags to add to the user settings resource. A tag is a key-value
1308
- # pair.
1309
- #
1310
1521
  # @return [Types::CreateUserAccessLoggingSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1311
1522
  #
1312
1523
  # * {Types::CreateUserAccessLoggingSettingsResponse#user_access_logging_settings_arn #user_access_logging_settings_arn} => String
@@ -1314,7 +1525,6 @@ module Aws::WorkSpacesWeb
1314
1525
  # @example Request syntax with placeholder values
1315
1526
  #
1316
1527
  # resp = client.create_user_access_logging_settings({
1317
- # client_token: "ClientToken",
1318
1528
  # kinesis_stream_arn: "KinesisStreamArn", # required
1319
1529
  # tags: [
1320
1530
  # {
@@ -1322,6 +1532,7 @@ module Aws::WorkSpacesWeb
1322
1532
  # value: "TagValue", # required
1323
1533
  # },
1324
1534
  # ],
1535
+ # client_token: "ClientToken",
1325
1536
  # })
1326
1537
  #
1327
1538
  # @example Response structure
@@ -1342,8 +1553,37 @@ module Aws::WorkSpacesWeb
1342
1553
  # users can transfer data between a streaming session and the their
1343
1554
  # local devices.
1344
1555
  #
1345
- # @option params [Hash<String,String>] :additional_encryption_context
1346
- # The additional encryption context of the user settings.
1556
+ # @option params [required, String] :copy_allowed
1557
+ # Specifies whether the user can copy text from the streaming session to
1558
+ # the local device.
1559
+ #
1560
+ # @option params [required, String] :paste_allowed
1561
+ # Specifies whether the user can paste text from the local device to the
1562
+ # streaming session.
1563
+ #
1564
+ # @option params [required, String] :download_allowed
1565
+ # Specifies whether the user can download files from the streaming
1566
+ # session to the local device.
1567
+ #
1568
+ # @option params [required, String] :upload_allowed
1569
+ # Specifies whether the user can upload files from the local device to
1570
+ # the streaming session.
1571
+ #
1572
+ # @option params [required, String] :print_allowed
1573
+ # Specifies whether the user can print to the local device.
1574
+ #
1575
+ # @option params [Array<Types::Tag>] :tags
1576
+ # The tags to add to the user settings resource. A tag is a key-value
1577
+ # pair.
1578
+ #
1579
+ # @option params [Integer] :disconnect_timeout_in_minutes
1580
+ # The amount of time that a streaming session remains active after users
1581
+ # disconnect.
1582
+ #
1583
+ # @option params [Integer] :idle_disconnect_timeout_in_minutes
1584
+ # The amount of time that users can be idle (inactive) before they are
1585
+ # disconnected from their streaming session and the disconnect timeout
1586
+ # interval begins.
1347
1587
  #
1348
1588
  # @option params [String] :client_token
1349
1589
  # A unique, case-sensitive identifier that you provide to ensure the
@@ -1362,42 +1602,17 @@ module Aws::WorkSpacesWeb
1362
1602
  # The configuration that specifies which cookies should be synchronized
1363
1603
  # from the end user's local browser to the remote browser.
1364
1604
  #
1365
- # @option params [required, String] :copy_allowed
1366
- # Specifies whether the user can copy text from the streaming session to
1367
- # the local device.
1368
- #
1369
1605
  # @option params [String] :customer_managed_key
1370
1606
  # The customer managed key used to encrypt sensitive information in the
1371
1607
  # user settings.
1372
1608
  #
1609
+ # @option params [Hash<String,String>] :additional_encryption_context
1610
+ # The additional encryption context of the user settings.
1611
+ #
1373
1612
  # @option params [String] :deep_link_allowed
1374
1613
  # Specifies whether the user can use deep links that open automatically
1375
1614
  # when connecting to a session.
1376
1615
  #
1377
- # @option params [Integer] :disconnect_timeout_in_minutes
1378
- # The amount of time that a streaming session remains active after users
1379
- # disconnect.
1380
- #
1381
- # @option params [required, String] :download_allowed
1382
- # Specifies whether the user can download files from the streaming
1383
- # session to the local device.
1384
- #
1385
- # @option params [Integer] :idle_disconnect_timeout_in_minutes
1386
- # The amount of time that users can be idle (inactive) before they are
1387
- # disconnected from their streaming session and the disconnect timeout
1388
- # interval begins.
1389
- #
1390
- # @option params [required, String] :paste_allowed
1391
- # Specifies whether the user can paste text from the local device to the
1392
- # streaming session.
1393
- #
1394
- # @option params [required, String] :print_allowed
1395
- # Specifies whether the user can print to the local device.
1396
- #
1397
- # @option params [Array<Types::Tag>] :tags
1398
- # The tags to add to the user settings resource. A tag is a key-value
1399
- # pair.
1400
- #
1401
1616
  # @option params [Types::ToolbarConfiguration] :toolbar_configuration
1402
1617
  # The configuration of the toolbar. This allows administrators to select
1403
1618
  # the toolbar type and visual mode, set maximum display resolution for
@@ -1405,10 +1620,6 @@ module Aws::WorkSpacesWeb
1405
1620
  # sessions. If administrators do not modify these settings, end users
1406
1621
  # retain control over their toolbar preferences.
1407
1622
  #
1408
- # @option params [required, String] :upload_allowed
1409
- # Specifies whether the user can upload files from the local device to
1410
- # the streaming session.
1411
- #
1412
1623
  # @return [Types::CreateUserSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1413
1624
  #
1414
1625
  # * {Types::CreateUserSettingsResponse#user_settings_arn #user_settings_arn} => String
@@ -1416,9 +1627,19 @@ module Aws::WorkSpacesWeb
1416
1627
  # @example Request syntax with placeholder values
1417
1628
  #
1418
1629
  # resp = client.create_user_settings({
1419
- # additional_encryption_context: {
1420
- # "StringType" => "StringType",
1421
- # },
1630
+ # copy_allowed: "Disabled", # required, accepts Disabled, Enabled
1631
+ # paste_allowed: "Disabled", # required, accepts Disabled, Enabled
1632
+ # download_allowed: "Disabled", # required, accepts Disabled, Enabled
1633
+ # upload_allowed: "Disabled", # required, accepts Disabled, Enabled
1634
+ # print_allowed: "Disabled", # required, accepts Disabled, Enabled
1635
+ # tags: [
1636
+ # {
1637
+ # key: "TagKey", # required
1638
+ # value: "TagValue", # required
1639
+ # },
1640
+ # ],
1641
+ # disconnect_timeout_in_minutes: 1,
1642
+ # idle_disconnect_timeout_in_minutes: 1,
1422
1643
  # client_token: "ClientToken",
1423
1644
  # cookie_synchronization_configuration: {
1424
1645
  # allowlist: [ # required
@@ -1436,27 +1657,17 @@ module Aws::WorkSpacesWeb
1436
1657
  # },
1437
1658
  # ],
1438
1659
  # },
1439
- # copy_allowed: "Disabled", # required, accepts Disabled, Enabled
1440
1660
  # customer_managed_key: "keyArn",
1661
+ # additional_encryption_context: {
1662
+ # "StringType" => "StringType",
1663
+ # },
1441
1664
  # deep_link_allowed: "Disabled", # accepts Disabled, Enabled
1442
- # disconnect_timeout_in_minutes: 1,
1443
- # download_allowed: "Disabled", # required, accepts Disabled, Enabled
1444
- # idle_disconnect_timeout_in_minutes: 1,
1445
- # paste_allowed: "Disabled", # required, accepts Disabled, Enabled
1446
- # print_allowed: "Disabled", # required, accepts Disabled, Enabled
1447
- # tags: [
1448
- # {
1449
- # key: "TagKey", # required
1450
- # value: "TagValue", # required
1451
- # },
1452
- # ],
1453
1665
  # toolbar_configuration: {
1454
- # hidden_toolbar_items: ["Windows"], # accepts Windows, DualMonitor, FullScreen, Webcam, Microphone
1455
- # max_display_resolution: "size4096X2160", # accepts size4096X2160, size3840X2160, size3440X1440, size2560X1440, size1920X1080, size1280X720, size1024X768, size800X600
1456
1666
  # toolbar_type: "Floating", # accepts Floating, Docked
1457
1667
  # visual_mode: "Dark", # accepts Dark, Light
1668
+ # hidden_toolbar_items: ["Windows"], # accepts Windows, DualMonitor, FullScreen, Webcam, Microphone
1669
+ # max_display_resolution: "size4096X2160", # accepts size4096X2160, size3840X2160, size3440X1440, size2560X1440, size1920X1080, size1280X720, size1024X768, size800X600
1458
1670
  # },
1459
- # upload_allowed: "Disabled", # required, accepts Disabled, Enabled
1460
1671
  # })
1461
1672
  #
1462
1673
  # @example Response structure
@@ -1604,6 +1815,41 @@ module Aws::WorkSpacesWeb
1604
1815
  req.send_request(options)
1605
1816
  end
1606
1817
 
1818
+ # Deletes a session logger resource.
1819
+ #
1820
+ # @option params [required, String] :session_logger_arn
1821
+ # The ARN of the session logger.
1822
+ #
1823
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1824
+ #
1825
+ #
1826
+ # @example Example: Delete Session Logger
1827
+ #
1828
+ # # Deletes a session logger resource
1829
+ #
1830
+ # resp = client.delete_session_logger({
1831
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/12345678-1234-1234-1234-123456789012",
1832
+ # })
1833
+ #
1834
+ # resp.to_h outputs the following:
1835
+ # {
1836
+ # }
1837
+ #
1838
+ # @example Request syntax with placeholder values
1839
+ #
1840
+ # resp = client.delete_session_logger({
1841
+ # session_logger_arn: "ARN", # required
1842
+ # })
1843
+ #
1844
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DeleteSessionLogger AWS API Documentation
1845
+ #
1846
+ # @overload delete_session_logger(params = {})
1847
+ # @param [Hash] params ({})
1848
+ def delete_session_logger(params = {}, options = {})
1849
+ req = build_request(:delete_session_logger, params)
1850
+ req.send_request(options)
1851
+ end
1852
+
1607
1853
  # Deletes the trust store.
1608
1854
  #
1609
1855
  # @option params [required, String] :trust_store_arn
@@ -1758,6 +2004,41 @@ module Aws::WorkSpacesWeb
1758
2004
  req.send_request(options)
1759
2005
  end
1760
2006
 
2007
+ # Disassociates a session logger from a portal.
2008
+ #
2009
+ # @option params [required, String] :portal_arn
2010
+ # The ARN of the portal to disassociate from the a session logger.
2011
+ #
2012
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2013
+ #
2014
+ #
2015
+ # @example Example: Disassociate Session Logger from Portal
2016
+ #
2017
+ # # Removes the association between a session logger and a portal
2018
+ #
2019
+ # resp = client.disassociate_session_logger({
2020
+ # portal_arn: "arn:aws:workspaces-web:us-west-2:123456789012:portal/12345678-1234-1234-1234-123456789012",
2021
+ # })
2022
+ #
2023
+ # resp.to_h outputs the following:
2024
+ # {
2025
+ # }
2026
+ #
2027
+ # @example Request syntax with placeholder values
2028
+ #
2029
+ # resp = client.disassociate_session_logger({
2030
+ # portal_arn: "ARN", # required
2031
+ # })
2032
+ #
2033
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DisassociateSessionLogger AWS API Documentation
2034
+ #
2035
+ # @overload disassociate_session_logger(params = {})
2036
+ # @param [Hash] params ({})
2037
+ def disassociate_session_logger(params = {}, options = {})
2038
+ req = build_request(:disassociate_session_logger, params)
2039
+ req.send_request(options)
2040
+ end
2041
+
1761
2042
  # Disassociates a trust store from a web portal.
1762
2043
  #
1763
2044
  # @option params [required, String] :portal_arn
@@ -1867,13 +2148,13 @@ module Aws::WorkSpacesWeb
1867
2148
  #
1868
2149
  # @example Response structure
1869
2150
  #
1870
- # resp.browser_settings.additional_encryption_context #=> Hash
1871
- # resp.browser_settings.additional_encryption_context["StringType"] #=> String
2151
+ # resp.browser_settings.browser_settings_arn #=> String
1872
2152
  # resp.browser_settings.associated_portal_arns #=> Array
1873
2153
  # resp.browser_settings.associated_portal_arns[0] #=> String
1874
2154
  # resp.browser_settings.browser_policy #=> String
1875
- # resp.browser_settings.browser_settings_arn #=> String
1876
2155
  # resp.browser_settings.customer_managed_key #=> String
2156
+ # resp.browser_settings.additional_encryption_context #=> Hash
2157
+ # resp.browser_settings.additional_encryption_context["StringType"] #=> String
1877
2158
  #
1878
2159
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetBrowserSettings AWS API Documentation
1879
2160
  #
@@ -1901,33 +2182,33 @@ module Aws::WorkSpacesWeb
1901
2182
  #
1902
2183
  # @example Response structure
1903
2184
  #
1904
- # resp.data_protection_settings.additional_encryption_context #=> Hash
1905
- # resp.data_protection_settings.additional_encryption_context["StringType"] #=> String
1906
- # resp.data_protection_settings.associated_portal_arns #=> Array
1907
- # resp.data_protection_settings.associated_portal_arns[0] #=> String
1908
- # resp.data_protection_settings.creation_date #=> Time
1909
- # resp.data_protection_settings.customer_managed_key #=> String
1910
2185
  # resp.data_protection_settings.data_protection_settings_arn #=> String
1911
- # resp.data_protection_settings.description #=> String
1912
- # resp.data_protection_settings.display_name #=> String
1913
- # resp.data_protection_settings.inline_redaction_configuration.global_confidence_level #=> Integer
1914
- # resp.data_protection_settings.inline_redaction_configuration.global_enforced_urls #=> Array
1915
- # resp.data_protection_settings.inline_redaction_configuration.global_enforced_urls[0] #=> String
1916
- # resp.data_protection_settings.inline_redaction_configuration.global_exempt_urls #=> Array
1917
- # resp.data_protection_settings.inline_redaction_configuration.global_exempt_urls[0] #=> String
1918
2186
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns #=> Array
1919
2187
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].built_in_pattern_id #=> String
1920
- # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].confidence_level #=> Integer
1921
- # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].custom_pattern.keyword_regex #=> String
1922
- # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].custom_pattern.pattern_description #=> String
1923
2188
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].custom_pattern.pattern_name #=> String
1924
2189
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].custom_pattern.pattern_regex #=> String
2190
+ # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].custom_pattern.pattern_description #=> String
2191
+ # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].custom_pattern.keyword_regex #=> String
2192
+ # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].redaction_place_holder.redaction_place_holder_type #=> String, one of "CustomText"
2193
+ # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].redaction_place_holder.redaction_place_holder_text #=> String
1925
2194
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].enforced_urls #=> Array
1926
2195
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].enforced_urls[0] #=> String
1927
2196
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].exempt_urls #=> Array
1928
2197
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].exempt_urls[0] #=> String
1929
- # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].redaction_place_holder.redaction_place_holder_text #=> String
1930
- # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].redaction_place_holder.redaction_place_holder_type #=> String, one of "CustomText"
2198
+ # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].confidence_level #=> Integer
2199
+ # resp.data_protection_settings.inline_redaction_configuration.global_enforced_urls #=> Array
2200
+ # resp.data_protection_settings.inline_redaction_configuration.global_enforced_urls[0] #=> String
2201
+ # resp.data_protection_settings.inline_redaction_configuration.global_exempt_urls #=> Array
2202
+ # resp.data_protection_settings.inline_redaction_configuration.global_exempt_urls[0] #=> String
2203
+ # resp.data_protection_settings.inline_redaction_configuration.global_confidence_level #=> Integer
2204
+ # resp.data_protection_settings.associated_portal_arns #=> Array
2205
+ # resp.data_protection_settings.associated_portal_arns[0] #=> String
2206
+ # resp.data_protection_settings.display_name #=> String
2207
+ # resp.data_protection_settings.description #=> String
2208
+ # resp.data_protection_settings.creation_date #=> Time
2209
+ # resp.data_protection_settings.customer_managed_key #=> String
2210
+ # resp.data_protection_settings.additional_encryption_context #=> Hash
2211
+ # resp.data_protection_settings.additional_encryption_context["StringType"] #=> String
1931
2212
  #
1932
2213
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetDataProtectionSettings AWS API Documentation
1933
2214
  #
@@ -1956,10 +2237,10 @@ module Aws::WorkSpacesWeb
1956
2237
  # @example Response structure
1957
2238
  #
1958
2239
  # resp.identity_provider.identity_provider_arn #=> String
1959
- # resp.identity_provider.identity_provider_details #=> Hash
1960
- # resp.identity_provider.identity_provider_details["StringType"] #=> String
1961
2240
  # resp.identity_provider.identity_provider_name #=> String
1962
2241
  # resp.identity_provider.identity_provider_type #=> String, one of "SAML", "Facebook", "Google", "LoginWithAmazon", "SignInWithApple", "OIDC"
2242
+ # resp.identity_provider.identity_provider_details #=> Hash
2243
+ # resp.identity_provider.identity_provider_details["StringType"] #=> String
1963
2244
  #
1964
2245
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetIdentityProvider AWS API Documentation
1965
2246
  #
@@ -1987,18 +2268,18 @@ module Aws::WorkSpacesWeb
1987
2268
  #
1988
2269
  # @example Response structure
1989
2270
  #
1990
- # resp.ip_access_settings.additional_encryption_context #=> Hash
1991
- # resp.ip_access_settings.additional_encryption_context["StringType"] #=> String
2271
+ # resp.ip_access_settings.ip_access_settings_arn #=> String
1992
2272
  # resp.ip_access_settings.associated_portal_arns #=> Array
1993
2273
  # resp.ip_access_settings.associated_portal_arns[0] #=> String
1994
- # resp.ip_access_settings.creation_date #=> Time
1995
- # resp.ip_access_settings.customer_managed_key #=> String
1996
- # resp.ip_access_settings.description #=> String
1997
- # resp.ip_access_settings.display_name #=> String
1998
- # resp.ip_access_settings.ip_access_settings_arn #=> String
1999
2274
  # resp.ip_access_settings.ip_rules #=> Array
2000
- # resp.ip_access_settings.ip_rules[0].description #=> String
2001
2275
  # resp.ip_access_settings.ip_rules[0].ip_range #=> String
2276
+ # resp.ip_access_settings.ip_rules[0].description #=> String
2277
+ # resp.ip_access_settings.display_name #=> String
2278
+ # resp.ip_access_settings.description #=> String
2279
+ # resp.ip_access_settings.creation_date #=> Time
2280
+ # resp.ip_access_settings.customer_managed_key #=> String
2281
+ # resp.ip_access_settings.additional_encryption_context #=> Hash
2282
+ # resp.ip_access_settings.additional_encryption_context["StringType"] #=> String
2002
2283
  #
2003
2284
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetIpAccessSettings AWS API Documentation
2004
2285
  #
@@ -2026,14 +2307,14 @@ module Aws::WorkSpacesWeb
2026
2307
  #
2027
2308
  # @example Response structure
2028
2309
  #
2310
+ # resp.network_settings.network_settings_arn #=> String
2029
2311
  # resp.network_settings.associated_portal_arns #=> Array
2030
2312
  # resp.network_settings.associated_portal_arns[0] #=> String
2031
- # resp.network_settings.network_settings_arn #=> String
2032
- # resp.network_settings.security_group_ids #=> Array
2033
- # resp.network_settings.security_group_ids[0] #=> String
2313
+ # resp.network_settings.vpc_id #=> String
2034
2314
  # resp.network_settings.subnet_ids #=> Array
2035
2315
  # resp.network_settings.subnet_ids[0] #=> String
2036
- # resp.network_settings.vpc_id #=> String
2316
+ # resp.network_settings.security_group_ids #=> Array
2317
+ # resp.network_settings.security_group_ids[0] #=> String
2037
2318
  #
2038
2319
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetNetworkSettings AWS API Documentation
2039
2320
  #
@@ -2061,27 +2342,28 @@ module Aws::WorkSpacesWeb
2061
2342
  #
2062
2343
  # @example Response structure
2063
2344
  #
2064
- # resp.portal.additional_encryption_context #=> Hash
2065
- # resp.portal.additional_encryption_context["StringType"] #=> String
2066
- # resp.portal.authentication_type #=> String, one of "Standard", "IAM_Identity_Center"
2067
- # resp.portal.browser_settings_arn #=> String
2345
+ # resp.portal.portal_arn #=> String
2346
+ # resp.portal.renderer_type #=> String, one of "AppStream"
2068
2347
  # resp.portal.browser_type #=> String, one of "Chrome"
2348
+ # resp.portal.portal_status #=> String, one of "Incomplete", "Pending", "Active"
2349
+ # resp.portal.portal_endpoint #=> String
2350
+ # resp.portal.display_name #=> String
2069
2351
  # resp.portal.creation_date #=> Time
2070
- # resp.portal.customer_managed_key #=> String
2352
+ # resp.portal.browser_settings_arn #=> String
2071
2353
  # resp.portal.data_protection_settings_arn #=> String
2072
- # resp.portal.display_name #=> String
2073
- # resp.portal.instance_type #=> String, one of "standard.regular", "standard.large", "standard.xlarge"
2074
- # resp.portal.ip_access_settings_arn #=> String
2075
- # resp.portal.max_concurrent_sessions #=> Integer
2354
+ # resp.portal.user_settings_arn #=> String
2076
2355
  # resp.portal.network_settings_arn #=> String
2077
- # resp.portal.portal_arn #=> String
2078
- # resp.portal.portal_endpoint #=> String
2079
- # resp.portal.portal_status #=> String, one of "Incomplete", "Pending", "Active"
2080
- # resp.portal.renderer_type #=> String, one of "AppStream"
2081
- # resp.portal.status_reason #=> String
2356
+ # resp.portal.session_logger_arn #=> String
2082
2357
  # resp.portal.trust_store_arn #=> String
2358
+ # resp.portal.status_reason #=> String
2083
2359
  # resp.portal.user_access_logging_settings_arn #=> String
2084
- # resp.portal.user_settings_arn #=> String
2360
+ # resp.portal.authentication_type #=> String, one of "Standard", "IAM_Identity_Center"
2361
+ # resp.portal.ip_access_settings_arn #=> String
2362
+ # resp.portal.customer_managed_key #=> String
2363
+ # resp.portal.additional_encryption_context #=> Hash
2364
+ # resp.portal.additional_encryption_context["StringType"] #=> String
2365
+ # resp.portal.instance_type #=> String, one of "standard.regular", "standard.large", "standard.xlarge"
2366
+ # resp.portal.max_concurrent_sessions #=> Integer
2085
2367
  #
2086
2368
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetPortal AWS API Documentation
2087
2369
  #
@@ -2124,40 +2406,154 @@ module Aws::WorkSpacesWeb
2124
2406
 
2125
2407
  # Gets information for a secure browser session.
2126
2408
  #
2127
- # @option params [required, String] :portal_id
2128
- # The ID of the web portal for the session.
2409
+ # @option params [required, String] :portal_id
2410
+ # The ID of the web portal for the session.
2411
+ #
2412
+ # @option params [required, String] :session_id
2413
+ # The ID of the session.
2414
+ #
2415
+ # @return [Types::GetSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2416
+ #
2417
+ # * {Types::GetSessionResponse#session #session} => Types::Session
2418
+ #
2419
+ # @example Request syntax with placeholder values
2420
+ #
2421
+ # resp = client.get_session({
2422
+ # portal_id: "PortalId", # required
2423
+ # session_id: "SessionId", # required
2424
+ # })
2425
+ #
2426
+ # @example Response structure
2427
+ #
2428
+ # resp.session.portal_arn #=> String
2429
+ # resp.session.session_id #=> String
2430
+ # resp.session.username #=> String
2431
+ # resp.session.client_ip_addresses #=> Array
2432
+ # resp.session.client_ip_addresses[0] #=> String
2433
+ # resp.session.status #=> String, one of "Active", "Terminated"
2434
+ # resp.session.start_time #=> Time
2435
+ # resp.session.end_time #=> Time
2436
+ #
2437
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetSession AWS API Documentation
2438
+ #
2439
+ # @overload get_session(params = {})
2440
+ # @param [Hash] params ({})
2441
+ def get_session(params = {}, options = {})
2442
+ req = build_request(:get_session, params)
2443
+ req.send_request(options)
2444
+ end
2445
+
2446
+ # Gets details about a specific session logger resource.
2447
+ #
2448
+ # @option params [required, String] :session_logger_arn
2449
+ # The ARN of the session logger.
2450
+ #
2451
+ # @return [Types::GetSessionLoggerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2452
+ #
2453
+ # * {Types::GetSessionLoggerResponse#session_logger #session_logger} => Types::SessionLogger
2454
+ #
2455
+ #
2456
+ # @example Example: Get Session Logger with All Events
2457
+ #
2458
+ # # Retrieves a session logger configured for all events
2129
2459
  #
2130
- # @option params [required, String] :session_id
2131
- # The ID of the session.
2460
+ # resp = client.get_session_logger({
2461
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/12345678-1234-1234-1234-123456789012",
2462
+ # })
2132
2463
  #
2133
- # @return [Types::GetSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2464
+ # resp.to_h outputs the following:
2465
+ # {
2466
+ # session_logger: {
2467
+ # associated_portal_arns: [
2468
+ # "arn:aws:workspaces-web:us-west-2:123456789012:portal/87654321-4321-4321-4321-210987654321",
2469
+ # ],
2470
+ # creation_date: Time.parse("2024-01-15T10:30:00Z"),
2471
+ # display_name: "Session Logger with All Events",
2472
+ # event_filter: {
2473
+ # all: {
2474
+ # },
2475
+ # },
2476
+ # log_configuration: {
2477
+ # s3: {
2478
+ # bucket: "my-session-logs-bucket-1",
2479
+ # bucket_owner: "123456789012",
2480
+ # folder_structure: "Flat",
2481
+ # key_prefix: "session-logs/all/events",
2482
+ # log_file_format: "Json",
2483
+ # },
2484
+ # },
2485
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/12345678-1234-1234-1234-123456789012",
2486
+ # },
2487
+ # }
2488
+ #
2489
+ # @example Example: Get Session Logger with Specific Events
2490
+ #
2491
+ # # Retrieves a session logger configured for specific events
2492
+ #
2493
+ # resp = client.get_session_logger({
2494
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/87654321-4321-4321-4321-210987654321",
2495
+ # })
2134
2496
  #
2135
- # * {Types::GetSessionResponse#session #session} => Types::Session
2497
+ # resp.to_h outputs the following:
2498
+ # {
2499
+ # session_logger: {
2500
+ # additional_encryption_context: {
2501
+ # "EncryptionContextKey" => "EncryptionContextValue",
2502
+ # },
2503
+ # creation_date: Time.parse("2024-01-15T14:45:00Z"),
2504
+ # customer_managed_key: "arn:aws:kms:us-west-2:123456789012:key/12345678-1234-1234-1234-123456789012",
2505
+ # display_name: "Session Logger with Each Events",
2506
+ # event_filter: {
2507
+ # include: [
2508
+ # "SessionStart",
2509
+ # "SessionEnd",
2510
+ # "UrlLoad",
2511
+ # "WebsiteInteract",
2512
+ # ],
2513
+ # },
2514
+ # log_configuration: {
2515
+ # s3: {
2516
+ # bucket: "my-session-logs-bucket-2",
2517
+ # bucket_owner: "123456789012",
2518
+ # folder_structure: "NestedByDate",
2519
+ # key_prefix: "session-logs/each/event",
2520
+ # log_file_format: "JSONLines",
2521
+ # },
2522
+ # },
2523
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/87654321-4321-4321-4321-210987654321",
2524
+ # },
2525
+ # }
2136
2526
  #
2137
2527
  # @example Request syntax with placeholder values
2138
2528
  #
2139
- # resp = client.get_session({
2140
- # portal_id: "PortalId", # required
2141
- # session_id: "SessionId", # required
2529
+ # resp = client.get_session_logger({
2530
+ # session_logger_arn: "ARN", # required
2142
2531
  # })
2143
2532
  #
2144
2533
  # @example Response structure
2145
2534
  #
2146
- # resp.session.client_ip_addresses #=> Array
2147
- # resp.session.client_ip_addresses[0] #=> String
2148
- # resp.session.end_time #=> Time
2149
- # resp.session.portal_arn #=> String
2150
- # resp.session.session_id #=> String
2151
- # resp.session.start_time #=> Time
2152
- # resp.session.status #=> String, one of "Active", "Terminated"
2153
- # resp.session.username #=> String
2154
- #
2155
- # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetSession AWS API Documentation
2156
- #
2157
- # @overload get_session(params = {})
2535
+ # resp.session_logger.session_logger_arn #=> String
2536
+ # resp.session_logger.event_filter.include #=> Array
2537
+ # resp.session_logger.event_filter.include[0] #=> String, one of "WebsiteInteract", "FileDownloadFromSecureBrowserToRemoteDisk", "FileTransferFromRemoteToLocalDisk", "FileTransferFromLocalToRemoteDisk", "FileUploadFromRemoteDiskToSecureBrowser", "ContentPasteToWebsite", "ContentTransferFromLocalToRemoteClipboard", "ContentCopyFromWebsite", "UrlLoad", "TabOpen", "TabClose", "PrintJobSubmit", "SessionConnect", "SessionStart", "SessionDisconnect", "SessionEnd"
2538
+ # resp.session_logger.log_configuration.s3.bucket #=> String
2539
+ # resp.session_logger.log_configuration.s3.key_prefix #=> String
2540
+ # resp.session_logger.log_configuration.s3.bucket_owner #=> String
2541
+ # resp.session_logger.log_configuration.s3.log_file_format #=> String, one of "JSONLines", "Json"
2542
+ # resp.session_logger.log_configuration.s3.folder_structure #=> String, one of "Flat", "NestedByDate"
2543
+ # resp.session_logger.customer_managed_key #=> String
2544
+ # resp.session_logger.additional_encryption_context #=> Hash
2545
+ # resp.session_logger.additional_encryption_context["StringType"] #=> String
2546
+ # resp.session_logger.associated_portal_arns #=> Array
2547
+ # resp.session_logger.associated_portal_arns[0] #=> String
2548
+ # resp.session_logger.display_name #=> String
2549
+ # resp.session_logger.creation_date #=> Time
2550
+ #
2551
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetSessionLogger AWS API Documentation
2552
+ #
2553
+ # @overload get_session_logger(params = {})
2158
2554
  # @param [Hash] params ({})
2159
- def get_session(params = {}, options = {})
2160
- req = build_request(:get_session, params)
2555
+ def get_session_logger(params = {}, options = {})
2556
+ req = build_request(:get_session_logger, params)
2161
2557
  req.send_request(options)
2162
2558
  end
2163
2559
 
@@ -2193,33 +2589,33 @@ module Aws::WorkSpacesWeb
2193
2589
 
2194
2590
  # Gets the trust store certificate.
2195
2591
  #
2196
- # @option params [required, String] :thumbprint
2197
- # The thumbprint of the trust store certificate.
2198
- #
2199
2592
  # @option params [required, String] :trust_store_arn
2200
2593
  # The ARN of the trust store certificate.
2201
2594
  #
2595
+ # @option params [required, String] :thumbprint
2596
+ # The thumbprint of the trust store certificate.
2597
+ #
2202
2598
  # @return [Types::GetTrustStoreCertificateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2203
2599
  #
2204
- # * {Types::GetTrustStoreCertificateResponse#certificate #certificate} => Types::Certificate
2205
2600
  # * {Types::GetTrustStoreCertificateResponse#trust_store_arn #trust_store_arn} => String
2601
+ # * {Types::GetTrustStoreCertificateResponse#certificate #certificate} => Types::Certificate
2206
2602
  #
2207
2603
  # @example Request syntax with placeholder values
2208
2604
  #
2209
2605
  # resp = client.get_trust_store_certificate({
2210
- # thumbprint: "CertificateThumbprint", # required
2211
2606
  # trust_store_arn: "ARN", # required
2607
+ # thumbprint: "CertificateThumbprint", # required
2212
2608
  # })
2213
2609
  #
2214
2610
  # @example Response structure
2215
2611
  #
2216
- # resp.certificate.body #=> String
2612
+ # resp.trust_store_arn #=> String
2613
+ # resp.certificate.thumbprint #=> String
2614
+ # resp.certificate.subject #=> String
2217
2615
  # resp.certificate.issuer #=> String
2218
- # resp.certificate.not_valid_after #=> Time
2219
2616
  # resp.certificate.not_valid_before #=> Time
2220
- # resp.certificate.subject #=> String
2221
- # resp.certificate.thumbprint #=> String
2222
- # resp.trust_store_arn #=> String
2617
+ # resp.certificate.not_valid_after #=> Time
2618
+ # resp.certificate.body #=> String
2223
2619
  #
2224
2620
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetTrustStoreCertificate AWS API Documentation
2225
2621
  #
@@ -2247,10 +2643,10 @@ module Aws::WorkSpacesWeb
2247
2643
  #
2248
2644
  # @example Response structure
2249
2645
  #
2646
+ # resp.user_access_logging_settings.user_access_logging_settings_arn #=> String
2250
2647
  # resp.user_access_logging_settings.associated_portal_arns #=> Array
2251
2648
  # resp.user_access_logging_settings.associated_portal_arns[0] #=> String
2252
2649
  # resp.user_access_logging_settings.kinesis_stream_arn #=> String
2253
- # resp.user_access_logging_settings.user_access_logging_settings_arn #=> String
2254
2650
  #
2255
2651
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetUserAccessLoggingSettings AWS API Documentation
2256
2652
  #
@@ -2278,10 +2674,16 @@ module Aws::WorkSpacesWeb
2278
2674
  #
2279
2675
  # @example Response structure
2280
2676
  #
2281
- # resp.user_settings.additional_encryption_context #=> Hash
2282
- # resp.user_settings.additional_encryption_context["StringType"] #=> String
2677
+ # resp.user_settings.user_settings_arn #=> String
2283
2678
  # resp.user_settings.associated_portal_arns #=> Array
2284
2679
  # resp.user_settings.associated_portal_arns[0] #=> String
2680
+ # resp.user_settings.copy_allowed #=> String, one of "Disabled", "Enabled"
2681
+ # resp.user_settings.paste_allowed #=> String, one of "Disabled", "Enabled"
2682
+ # resp.user_settings.download_allowed #=> String, one of "Disabled", "Enabled"
2683
+ # resp.user_settings.upload_allowed #=> String, one of "Disabled", "Enabled"
2684
+ # resp.user_settings.print_allowed #=> String, one of "Disabled", "Enabled"
2685
+ # resp.user_settings.disconnect_timeout_in_minutes #=> Integer
2686
+ # resp.user_settings.idle_disconnect_timeout_in_minutes #=> Integer
2285
2687
  # resp.user_settings.cookie_synchronization_configuration.allowlist #=> Array
2286
2688
  # resp.user_settings.cookie_synchronization_configuration.allowlist[0].domain #=> String
2287
2689
  # resp.user_settings.cookie_synchronization_configuration.allowlist[0].name #=> String
@@ -2290,21 +2692,15 @@ module Aws::WorkSpacesWeb
2290
2692
  # resp.user_settings.cookie_synchronization_configuration.blocklist[0].domain #=> String
2291
2693
  # resp.user_settings.cookie_synchronization_configuration.blocklist[0].name #=> String
2292
2694
  # resp.user_settings.cookie_synchronization_configuration.blocklist[0].path #=> String
2293
- # resp.user_settings.copy_allowed #=> String, one of "Disabled", "Enabled"
2294
2695
  # resp.user_settings.customer_managed_key #=> String
2696
+ # resp.user_settings.additional_encryption_context #=> Hash
2697
+ # resp.user_settings.additional_encryption_context["StringType"] #=> String
2295
2698
  # resp.user_settings.deep_link_allowed #=> String, one of "Disabled", "Enabled"
2296
- # resp.user_settings.disconnect_timeout_in_minutes #=> Integer
2297
- # resp.user_settings.download_allowed #=> String, one of "Disabled", "Enabled"
2298
- # resp.user_settings.idle_disconnect_timeout_in_minutes #=> Integer
2299
- # resp.user_settings.paste_allowed #=> String, one of "Disabled", "Enabled"
2300
- # resp.user_settings.print_allowed #=> String, one of "Disabled", "Enabled"
2699
+ # resp.user_settings.toolbar_configuration.toolbar_type #=> String, one of "Floating", "Docked"
2700
+ # resp.user_settings.toolbar_configuration.visual_mode #=> String, one of "Dark", "Light"
2301
2701
  # resp.user_settings.toolbar_configuration.hidden_toolbar_items #=> Array
2302
2702
  # resp.user_settings.toolbar_configuration.hidden_toolbar_items[0] #=> String, one of "Windows", "DualMonitor", "FullScreen", "Webcam", "Microphone"
2303
2703
  # resp.user_settings.toolbar_configuration.max_display_resolution #=> String, one of "size4096X2160", "size3840X2160", "size3440X1440", "size2560X1440", "size1920X1080", "size1280X720", "size1024X768", "size800X600"
2304
- # resp.user_settings.toolbar_configuration.toolbar_type #=> String, one of "Floating", "Docked"
2305
- # resp.user_settings.toolbar_configuration.visual_mode #=> String, one of "Dark", "Light"
2306
- # resp.user_settings.upload_allowed #=> String, one of "Disabled", "Enabled"
2307
- # resp.user_settings.user_settings_arn #=> String
2308
2704
  #
2309
2705
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetUserSettings AWS API Documentation
2310
2706
  #
@@ -2317,13 +2713,13 @@ module Aws::WorkSpacesWeb
2317
2713
 
2318
2714
  # Retrieves a list of browser settings.
2319
2715
  #
2320
- # @option params [Integer] :max_results
2321
- # The maximum number of results to be included in the next page.
2322
- #
2323
2716
  # @option params [String] :next_token
2324
2717
  # The pagination token used to retrieve the next page of results for
2325
2718
  # this operation.
2326
2719
  #
2720
+ # @option params [Integer] :max_results
2721
+ # The maximum number of results to be included in the next page.
2722
+ #
2327
2723
  # @return [Types::ListBrowserSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2328
2724
  #
2329
2725
  # * {Types::ListBrowserSettingsResponse#browser_settings #browser_settings} => Array&lt;Types::BrowserSettingsSummary&gt;
@@ -2334,8 +2730,8 @@ module Aws::WorkSpacesWeb
2334
2730
  # @example Request syntax with placeholder values
2335
2731
  #
2336
2732
  # resp = client.list_browser_settings({
2337
- # max_results: 1,
2338
2733
  # next_token: "PaginationToken",
2734
+ # max_results: 1,
2339
2735
  # })
2340
2736
  #
2341
2737
  # @example Response structure
@@ -2355,13 +2751,13 @@ module Aws::WorkSpacesWeb
2355
2751
 
2356
2752
  # Retrieves a list of data protection settings.
2357
2753
  #
2358
- # @option params [Integer] :max_results
2359
- # The maximum number of results to be included in the next page.
2360
- #
2361
2754
  # @option params [String] :next_token
2362
2755
  # The pagination token used to retrieve the next page of results for
2363
2756
  # this operation.
2364
2757
  #
2758
+ # @option params [Integer] :max_results
2759
+ # The maximum number of results to be included in the next page.
2760
+ #
2365
2761
  # @return [Types::ListDataProtectionSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2366
2762
  #
2367
2763
  # * {Types::ListDataProtectionSettingsResponse#data_protection_settings #data_protection_settings} => Array&lt;Types::DataProtectionSettingsSummary&gt;
@@ -2372,17 +2768,17 @@ module Aws::WorkSpacesWeb
2372
2768
  # @example Request syntax with placeholder values
2373
2769
  #
2374
2770
  # resp = client.list_data_protection_settings({
2375
- # max_results: 1,
2376
2771
  # next_token: "PaginationToken",
2772
+ # max_results: 1,
2377
2773
  # })
2378
2774
  #
2379
2775
  # @example Response structure
2380
2776
  #
2381
2777
  # resp.data_protection_settings #=> Array
2382
- # resp.data_protection_settings[0].creation_date #=> Time
2383
2778
  # resp.data_protection_settings[0].data_protection_settings_arn #=> String
2384
- # resp.data_protection_settings[0].description #=> String
2385
2779
  # resp.data_protection_settings[0].display_name #=> String
2780
+ # resp.data_protection_settings[0].description #=> String
2781
+ # resp.data_protection_settings[0].creation_date #=> Time
2386
2782
  # resp.next_token #=> String
2387
2783
  #
2388
2784
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListDataProtectionSettings AWS API Documentation
@@ -2396,38 +2792,38 @@ module Aws::WorkSpacesWeb
2396
2792
 
2397
2793
  # Retrieves a list of identity providers for a specific web portal.
2398
2794
  #
2399
- # @option params [Integer] :max_results
2400
- # The maximum number of results to be included in the next page.
2401
- #
2402
2795
  # @option params [String] :next_token
2403
2796
  # The pagination token used to retrieve the next page of results for
2404
2797
  # this operation.
2405
2798
  #
2799
+ # @option params [Integer] :max_results
2800
+ # The maximum number of results to be included in the next page.
2801
+ #
2406
2802
  # @option params [required, String] :portal_arn
2407
2803
  # The ARN of the web portal.
2408
2804
  #
2409
2805
  # @return [Types::ListIdentityProvidersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2410
2806
  #
2411
- # * {Types::ListIdentityProvidersResponse#identity_providers #identity_providers} => Array&lt;Types::IdentityProviderSummary&gt;
2412
2807
  # * {Types::ListIdentityProvidersResponse#next_token #next_token} => String
2808
+ # * {Types::ListIdentityProvidersResponse#identity_providers #identity_providers} => Array&lt;Types::IdentityProviderSummary&gt;
2413
2809
  #
2414
2810
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2415
2811
  #
2416
2812
  # @example Request syntax with placeholder values
2417
2813
  #
2418
2814
  # resp = client.list_identity_providers({
2419
- # max_results: 1,
2420
2815
  # next_token: "PaginationToken",
2816
+ # max_results: 1,
2421
2817
  # portal_arn: "ARN", # required
2422
2818
  # })
2423
2819
  #
2424
2820
  # @example Response structure
2425
2821
  #
2822
+ # resp.next_token #=> String
2426
2823
  # resp.identity_providers #=> Array
2427
2824
  # resp.identity_providers[0].identity_provider_arn #=> String
2428
2825
  # resp.identity_providers[0].identity_provider_name #=> String
2429
2826
  # resp.identity_providers[0].identity_provider_type #=> String, one of "SAML", "Facebook", "Google", "LoginWithAmazon", "SignInWithApple", "OIDC"
2430
- # resp.next_token #=> String
2431
2827
  #
2432
2828
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListIdentityProviders AWS API Documentation
2433
2829
  #
@@ -2440,13 +2836,13 @@ module Aws::WorkSpacesWeb
2440
2836
 
2441
2837
  # Retrieves a list of IP access settings.
2442
2838
  #
2443
- # @option params [Integer] :max_results
2444
- # The maximum number of results to be included in the next page.
2445
- #
2446
2839
  # @option params [String] :next_token
2447
2840
  # The pagination token used to retrieve the next page of results for
2448
2841
  # this operation.
2449
2842
  #
2843
+ # @option params [Integer] :max_results
2844
+ # The maximum number of results to be included in the next page.
2845
+ #
2450
2846
  # @return [Types::ListIpAccessSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2451
2847
  #
2452
2848
  # * {Types::ListIpAccessSettingsResponse#ip_access_settings #ip_access_settings} => Array&lt;Types::IpAccessSettingsSummary&gt;
@@ -2457,17 +2853,17 @@ module Aws::WorkSpacesWeb
2457
2853
  # @example Request syntax with placeholder values
2458
2854
  #
2459
2855
  # resp = client.list_ip_access_settings({
2460
- # max_results: 1,
2461
2856
  # next_token: "PaginationToken",
2857
+ # max_results: 1,
2462
2858
  # })
2463
2859
  #
2464
2860
  # @example Response structure
2465
2861
  #
2466
2862
  # resp.ip_access_settings #=> Array
2467
- # resp.ip_access_settings[0].creation_date #=> Time
2468
- # resp.ip_access_settings[0].description #=> String
2469
- # resp.ip_access_settings[0].display_name #=> String
2470
2863
  # resp.ip_access_settings[0].ip_access_settings_arn #=> String
2864
+ # resp.ip_access_settings[0].display_name #=> String
2865
+ # resp.ip_access_settings[0].description #=> String
2866
+ # resp.ip_access_settings[0].creation_date #=> Time
2471
2867
  # resp.next_token #=> String
2472
2868
  #
2473
2869
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListIpAccessSettings AWS API Documentation
@@ -2481,13 +2877,13 @@ module Aws::WorkSpacesWeb
2481
2877
 
2482
2878
  # Retrieves a list of network settings.
2483
2879
  #
2484
- # @option params [Integer] :max_results
2485
- # The maximum number of results to be included in the next page.
2486
- #
2487
2880
  # @option params [String] :next_token
2488
2881
  # The pagination token used to retrieve the next page of results for
2489
2882
  # this operation.
2490
2883
  #
2884
+ # @option params [Integer] :max_results
2885
+ # The maximum number of results to be included in the next page.
2886
+ #
2491
2887
  # @return [Types::ListNetworkSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2492
2888
  #
2493
2889
  # * {Types::ListNetworkSettingsResponse#network_settings #network_settings} => Array&lt;Types::NetworkSettingsSummary&gt;
@@ -2498,8 +2894,8 @@ module Aws::WorkSpacesWeb
2498
2894
  # @example Request syntax with placeholder values
2499
2895
  #
2500
2896
  # resp = client.list_network_settings({
2501
- # max_results: 1,
2502
2897
  # next_token: "PaginationToken",
2898
+ # max_results: 1,
2503
2899
  # })
2504
2900
  #
2505
2901
  # @example Response structure
@@ -2520,48 +2916,49 @@ module Aws::WorkSpacesWeb
2520
2916
 
2521
2917
  # Retrieves a list or web portals.
2522
2918
  #
2523
- # @option params [Integer] :max_results
2524
- # The maximum number of results to be included in the next page.
2525
- #
2526
2919
  # @option params [String] :next_token
2527
2920
  # The pagination token used to retrieve the next page of results for
2528
2921
  # this operation.
2529
2922
  #
2923
+ # @option params [Integer] :max_results
2924
+ # The maximum number of results to be included in the next page.
2925
+ #
2530
2926
  # @return [Types::ListPortalsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2531
2927
  #
2532
- # * {Types::ListPortalsResponse#next_token #next_token} => String
2533
2928
  # * {Types::ListPortalsResponse#portals #portals} => Array&lt;Types::PortalSummary&gt;
2929
+ # * {Types::ListPortalsResponse#next_token #next_token} => String
2534
2930
  #
2535
2931
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2536
2932
  #
2537
2933
  # @example Request syntax with placeholder values
2538
2934
  #
2539
2935
  # resp = client.list_portals({
2540
- # max_results: 1,
2541
2936
  # next_token: "PaginationToken",
2937
+ # max_results: 1,
2542
2938
  # })
2543
2939
  #
2544
2940
  # @example Response structure
2545
2941
  #
2546
- # resp.next_token #=> String
2547
2942
  # resp.portals #=> Array
2548
- # resp.portals[0].authentication_type #=> String, one of "Standard", "IAM_Identity_Center"
2549
- # resp.portals[0].browser_settings_arn #=> String
2943
+ # resp.portals[0].portal_arn #=> String
2944
+ # resp.portals[0].renderer_type #=> String, one of "AppStream"
2550
2945
  # resp.portals[0].browser_type #=> String, one of "Chrome"
2946
+ # resp.portals[0].portal_status #=> String, one of "Incomplete", "Pending", "Active"
2947
+ # resp.portals[0].portal_endpoint #=> String
2948
+ # resp.portals[0].display_name #=> String
2551
2949
  # resp.portals[0].creation_date #=> Time
2950
+ # resp.portals[0].browser_settings_arn #=> String
2552
2951
  # resp.portals[0].data_protection_settings_arn #=> String
2553
- # resp.portals[0].display_name #=> String
2554
- # resp.portals[0].instance_type #=> String, one of "standard.regular", "standard.large", "standard.xlarge"
2555
- # resp.portals[0].ip_access_settings_arn #=> String
2556
- # resp.portals[0].max_concurrent_sessions #=> Integer
2952
+ # resp.portals[0].user_settings_arn #=> String
2557
2953
  # resp.portals[0].network_settings_arn #=> String
2558
- # resp.portals[0].portal_arn #=> String
2559
- # resp.portals[0].portal_endpoint #=> String
2560
- # resp.portals[0].portal_status #=> String, one of "Incomplete", "Pending", "Active"
2561
- # resp.portals[0].renderer_type #=> String, one of "AppStream"
2954
+ # resp.portals[0].session_logger_arn #=> String
2562
2955
  # resp.portals[0].trust_store_arn #=> String
2563
2956
  # resp.portals[0].user_access_logging_settings_arn #=> String
2564
- # resp.portals[0].user_settings_arn #=> String
2957
+ # resp.portals[0].authentication_type #=> String, one of "Standard", "IAM_Identity_Center"
2958
+ # resp.portals[0].ip_access_settings_arn #=> String
2959
+ # resp.portals[0].instance_type #=> String, one of "standard.regular", "standard.large", "standard.xlarge"
2960
+ # resp.portals[0].max_concurrent_sessions #=> Integer
2961
+ # resp.next_token #=> String
2565
2962
  #
2566
2963
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListPortals AWS API Documentation
2567
2964
  #
@@ -2572,19 +2969,132 @@ module Aws::WorkSpacesWeb
2572
2969
  req.send_request(options)
2573
2970
  end
2574
2971
 
2575
- # Lists information for multiple secure browser sessions from a specific
2576
- # portal.
2577
- #
2578
- # @option params [Integer] :max_results
2579
- # The maximum number of results to be included in the next page.
2972
+ # Lists all available session logger resources.
2580
2973
  #
2581
2974
  # @option params [String] :next_token
2582
2975
  # The pagination token used to retrieve the next page of results for
2583
2976
  # this operation.
2584
2977
  #
2978
+ # @option params [Integer] :max_results
2979
+ # The maximum number of results to be included in the next page.
2980
+ #
2981
+ # @return [Types::ListSessionLoggersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2982
+ #
2983
+ # * {Types::ListSessionLoggersResponse#session_loggers #session_loggers} => Array&lt;Types::SessionLoggerSummary&gt;
2984
+ # * {Types::ListSessionLoggersResponse#next_token #next_token} => String
2985
+ #
2986
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2987
+ #
2988
+ #
2989
+ # @example Example: List All Session Loggers
2990
+ #
2991
+ # # Lists all session loggers in the account without pagination
2992
+ #
2993
+ # resp = client.list_session_loggers({
2994
+ # })
2995
+ #
2996
+ # resp.to_h outputs the following:
2997
+ # {
2998
+ # session_loggers: [
2999
+ # {
3000
+ # creation_date: Time.parse("2024-01-15T10:30:00Z"),
3001
+ # display_name: "Session Logger with All Events",
3002
+ # log_configuration: {
3003
+ # s3: {
3004
+ # bucket: "my-session-logs-bucket-1",
3005
+ # bucket_owner: "123456789012",
3006
+ # folder_structure: "Flat",
3007
+ # key_prefix: "session-logs/all/events",
3008
+ # log_file_format: "Json",
3009
+ # },
3010
+ # },
3011
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/12345678-1234-1234-1234-123456789012",
3012
+ # },
3013
+ # {
3014
+ # creation_date: Time.parse("2024-01-15T14:45:00Z"),
3015
+ # display_name: "Session Logger with Each Events",
3016
+ # log_configuration: {
3017
+ # s3: {
3018
+ # bucket: "my-session-logs-bucket-2",
3019
+ # bucket_owner: "123456789012",
3020
+ # folder_structure: "NestedByDate",
3021
+ # key_prefix: "session-logs/each/event",
3022
+ # log_file_format: "JSONLines",
3023
+ # },
3024
+ # },
3025
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/87654321-4321-4321-4321-210987654321",
3026
+ # },
3027
+ # ],
3028
+ # }
3029
+ #
3030
+ # @example Example: List Session Loggers with Pagination
3031
+ #
3032
+ # # Lists session loggers with pagination parameters
3033
+ #
3034
+ # resp = client.list_session_loggers({
3035
+ # max_results: 1,
3036
+ # next_token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
3037
+ # })
3038
+ #
3039
+ # resp.to_h outputs the following:
3040
+ # {
3041
+ # next_token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
3042
+ # session_loggers: [
3043
+ # {
3044
+ # creation_date: Time.parse("2024-03-15T12:45:00Z"),
3045
+ # display_name: "Session Logger Example with Pagination",
3046
+ # log_configuration: {
3047
+ # s3: {
3048
+ # bucket: "my-session-logs-bucket-3",
3049
+ # bucket_owner: "123456789012",
3050
+ # folder_structure: "Flat",
3051
+ # key_prefix: "session-logs/pagination/example",
3052
+ # log_file_format: "JSONLines",
3053
+ # },
3054
+ # },
3055
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/11111111-1111-1111-1111-111111111111",
3056
+ # },
3057
+ # ],
3058
+ # }
3059
+ #
3060
+ # @example Request syntax with placeholder values
3061
+ #
3062
+ # resp = client.list_session_loggers({
3063
+ # next_token: "PaginationToken",
3064
+ # max_results: 1,
3065
+ # })
3066
+ #
3067
+ # @example Response structure
3068
+ #
3069
+ # resp.session_loggers #=> Array
3070
+ # resp.session_loggers[0].session_logger_arn #=> String
3071
+ # resp.session_loggers[0].log_configuration.s3.bucket #=> String
3072
+ # resp.session_loggers[0].log_configuration.s3.key_prefix #=> String
3073
+ # resp.session_loggers[0].log_configuration.s3.bucket_owner #=> String
3074
+ # resp.session_loggers[0].log_configuration.s3.log_file_format #=> String, one of "JSONLines", "Json"
3075
+ # resp.session_loggers[0].log_configuration.s3.folder_structure #=> String, one of "Flat", "NestedByDate"
3076
+ # resp.session_loggers[0].display_name #=> String
3077
+ # resp.session_loggers[0].creation_date #=> Time
3078
+ # resp.next_token #=> String
3079
+ #
3080
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListSessionLoggers AWS API Documentation
3081
+ #
3082
+ # @overload list_session_loggers(params = {})
3083
+ # @param [Hash] params ({})
3084
+ def list_session_loggers(params = {}, options = {})
3085
+ req = build_request(:list_session_loggers, params)
3086
+ req.send_request(options)
3087
+ end
3088
+
3089
+ # Lists information for multiple secure browser sessions from a specific
3090
+ # portal.
3091
+ #
2585
3092
  # @option params [required, String] :portal_id
2586
3093
  # The ID of the web portal for the sessions.
2587
3094
  #
3095
+ # @option params [String] :username
3096
+ # The username of the session.
3097
+ #
2588
3098
  # @option params [String] :session_id
2589
3099
  # The ID of the session.
2590
3100
  #
@@ -2594,38 +3104,42 @@ module Aws::WorkSpacesWeb
2594
3104
  # @option params [String] :status
2595
3105
  # The status of the session.
2596
3106
  #
2597
- # @option params [String] :username
2598
- # The username of the session.
3107
+ # @option params [Integer] :max_results
3108
+ # The maximum number of results to be included in the next page.
3109
+ #
3110
+ # @option params [String] :next_token
3111
+ # The pagination token used to retrieve the next page of results for
3112
+ # this operation.
2599
3113
  #
2600
3114
  # @return [Types::ListSessionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2601
3115
  #
2602
- # * {Types::ListSessionsResponse#next_token #next_token} => String
2603
3116
  # * {Types::ListSessionsResponse#sessions #sessions} => Array&lt;Types::SessionSummary&gt;
3117
+ # * {Types::ListSessionsResponse#next_token #next_token} => String
2604
3118
  #
2605
3119
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2606
3120
  #
2607
3121
  # @example Request syntax with placeholder values
2608
3122
  #
2609
3123
  # resp = client.list_sessions({
2610
- # max_results: 1,
2611
- # next_token: "PaginationToken",
2612
3124
  # portal_id: "PortalId", # required
3125
+ # username: "Username",
2613
3126
  # session_id: "SessionId",
2614
3127
  # sort_by: "StartTimeAscending", # accepts StartTimeAscending, StartTimeDescending
2615
3128
  # status: "Active", # accepts Active, Terminated
2616
- # username: "Username",
3129
+ # max_results: 1,
3130
+ # next_token: "PaginationToken",
2617
3131
  # })
2618
3132
  #
2619
3133
  # @example Response structure
2620
3134
  #
2621
- # resp.next_token #=> String
2622
3135
  # resp.sessions #=> Array
2623
- # resp.sessions[0].end_time #=> Time
2624
3136
  # resp.sessions[0].portal_arn #=> String
2625
3137
  # resp.sessions[0].session_id #=> String
2626
- # resp.sessions[0].start_time #=> Time
2627
- # resp.sessions[0].status #=> String, one of "Active", "Terminated"
2628
3138
  # resp.sessions[0].username #=> String
3139
+ # resp.sessions[0].status #=> String, one of "Active", "Terminated"
3140
+ # resp.sessions[0].start_time #=> Time
3141
+ # resp.sessions[0].end_time #=> Time
3142
+ # resp.next_token #=> String
2629
3143
  #
2630
3144
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListSessions AWS API Documentation
2631
3145
  #
@@ -2668,42 +3182,42 @@ module Aws::WorkSpacesWeb
2668
3182
 
2669
3183
  # Retrieves a list of trust store certificates.
2670
3184
  #
2671
- # @option params [Integer] :max_results
2672
- # The maximum number of results to be included in the next page.
3185
+ # @option params [required, String] :trust_store_arn
3186
+ # The ARN of the trust store
2673
3187
  #
2674
3188
  # @option params [String] :next_token
2675
3189
  # The pagination token used to retrieve the next page of results for
2676
3190
  # this operation.
2677
3191
  #
2678
- # @option params [required, String] :trust_store_arn
2679
- # The ARN of the trust store
3192
+ # @option params [Integer] :max_results
3193
+ # The maximum number of results to be included in the next page.
2680
3194
  #
2681
3195
  # @return [Types::ListTrustStoreCertificatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2682
3196
  #
2683
3197
  # * {Types::ListTrustStoreCertificatesResponse#certificate_list #certificate_list} => Array&lt;Types::CertificateSummary&gt;
2684
- # * {Types::ListTrustStoreCertificatesResponse#next_token #next_token} => String
2685
3198
  # * {Types::ListTrustStoreCertificatesResponse#trust_store_arn #trust_store_arn} => String
3199
+ # * {Types::ListTrustStoreCertificatesResponse#next_token #next_token} => String
2686
3200
  #
2687
3201
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2688
3202
  #
2689
3203
  # @example Request syntax with placeholder values
2690
3204
  #
2691
3205
  # resp = client.list_trust_store_certificates({
2692
- # max_results: 1,
2693
- # next_token: "PaginationToken",
2694
3206
  # trust_store_arn: "ARN", # required
3207
+ # next_token: "PaginationToken",
3208
+ # max_results: 1,
2695
3209
  # })
2696
3210
  #
2697
3211
  # @example Response structure
2698
3212
  #
2699
3213
  # resp.certificate_list #=> Array
3214
+ # resp.certificate_list[0].thumbprint #=> String
3215
+ # resp.certificate_list[0].subject #=> String
2700
3216
  # resp.certificate_list[0].issuer #=> String
2701
- # resp.certificate_list[0].not_valid_after #=> Time
2702
3217
  # resp.certificate_list[0].not_valid_before #=> Time
2703
- # resp.certificate_list[0].subject #=> String
2704
- # resp.certificate_list[0].thumbprint #=> String
2705
- # resp.next_token #=> String
3218
+ # resp.certificate_list[0].not_valid_after #=> Time
2706
3219
  # resp.trust_store_arn #=> String
3220
+ # resp.next_token #=> String
2707
3221
  #
2708
3222
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListTrustStoreCertificates AWS API Documentation
2709
3223
  #
@@ -2716,32 +3230,32 @@ module Aws::WorkSpacesWeb
2716
3230
 
2717
3231
  # Retrieves a list of trust stores.
2718
3232
  #
2719
- # @option params [Integer] :max_results
2720
- # The maximum number of results to be included in the next page.
2721
- #
2722
3233
  # @option params [String] :next_token
2723
3234
  # The pagination token used to retrieve the next page of results for
2724
3235
  # this operation.
2725
3236
  #
3237
+ # @option params [Integer] :max_results
3238
+ # The maximum number of results to be included in the next page.
3239
+ #
2726
3240
  # @return [Types::ListTrustStoresResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2727
3241
  #
2728
- # * {Types::ListTrustStoresResponse#next_token #next_token} => String
2729
3242
  # * {Types::ListTrustStoresResponse#trust_stores #trust_stores} => Array&lt;Types::TrustStoreSummary&gt;
3243
+ # * {Types::ListTrustStoresResponse#next_token #next_token} => String
2730
3244
  #
2731
3245
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2732
3246
  #
2733
3247
  # @example Request syntax with placeholder values
2734
3248
  #
2735
3249
  # resp = client.list_trust_stores({
2736
- # max_results: 1,
2737
3250
  # next_token: "PaginationToken",
3251
+ # max_results: 1,
2738
3252
  # })
2739
3253
  #
2740
3254
  # @example Response structure
2741
3255
  #
2742
- # resp.next_token #=> String
2743
3256
  # resp.trust_stores #=> Array
2744
3257
  # resp.trust_stores[0].trust_store_arn #=> String
3258
+ # resp.next_token #=> String
2745
3259
  #
2746
3260
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListTrustStores AWS API Documentation
2747
3261
  #
@@ -2754,33 +3268,33 @@ module Aws::WorkSpacesWeb
2754
3268
 
2755
3269
  # Retrieves a list of user access logging settings.
2756
3270
  #
2757
- # @option params [Integer] :max_results
2758
- # The maximum number of results to be included in the next page.
2759
- #
2760
3271
  # @option params [String] :next_token
2761
3272
  # The pagination token used to retrieve the next page of results for
2762
3273
  # this operation.
2763
3274
  #
3275
+ # @option params [Integer] :max_results
3276
+ # The maximum number of results to be included in the next page.
3277
+ #
2764
3278
  # @return [Types::ListUserAccessLoggingSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2765
3279
  #
2766
- # * {Types::ListUserAccessLoggingSettingsResponse#next_token #next_token} => String
2767
3280
  # * {Types::ListUserAccessLoggingSettingsResponse#user_access_logging_settings #user_access_logging_settings} => Array&lt;Types::UserAccessLoggingSettingsSummary&gt;
3281
+ # * {Types::ListUserAccessLoggingSettingsResponse#next_token #next_token} => String
2768
3282
  #
2769
3283
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2770
3284
  #
2771
3285
  # @example Request syntax with placeholder values
2772
3286
  #
2773
3287
  # resp = client.list_user_access_logging_settings({
2774
- # max_results: 1,
2775
3288
  # next_token: "PaginationToken",
3289
+ # max_results: 1,
2776
3290
  # })
2777
3291
  #
2778
3292
  # @example Response structure
2779
3293
  #
2780
- # resp.next_token #=> String
2781
3294
  # resp.user_access_logging_settings #=> Array
2782
- # resp.user_access_logging_settings[0].kinesis_stream_arn #=> String
2783
3295
  # resp.user_access_logging_settings[0].user_access_logging_settings_arn #=> String
3296
+ # resp.user_access_logging_settings[0].kinesis_stream_arn #=> String
3297
+ # resp.next_token #=> String
2784
3298
  #
2785
3299
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListUserAccessLoggingSettings AWS API Documentation
2786
3300
  #
@@ -2793,31 +3307,38 @@ module Aws::WorkSpacesWeb
2793
3307
 
2794
3308
  # Retrieves a list of user settings.
2795
3309
  #
2796
- # @option params [Integer] :max_results
2797
- # The maximum number of results to be included in the next page.
2798
- #
2799
3310
  # @option params [String] :next_token
2800
3311
  # The pagination token used to retrieve the next page of results for
2801
3312
  # this operation.
2802
3313
  #
3314
+ # @option params [Integer] :max_results
3315
+ # The maximum number of results to be included in the next page.
3316
+ #
2803
3317
  # @return [Types::ListUserSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2804
3318
  #
2805
- # * {Types::ListUserSettingsResponse#next_token #next_token} => String
2806
3319
  # * {Types::ListUserSettingsResponse#user_settings #user_settings} => Array&lt;Types::UserSettingsSummary&gt;
3320
+ # * {Types::ListUserSettingsResponse#next_token #next_token} => String
2807
3321
  #
2808
3322
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2809
3323
  #
2810
3324
  # @example Request syntax with placeholder values
2811
3325
  #
2812
3326
  # resp = client.list_user_settings({
2813
- # max_results: 1,
2814
3327
  # next_token: "PaginationToken",
3328
+ # max_results: 1,
2815
3329
  # })
2816
3330
  #
2817
3331
  # @example Response structure
2818
3332
  #
2819
- # resp.next_token #=> String
2820
3333
  # resp.user_settings #=> Array
3334
+ # resp.user_settings[0].user_settings_arn #=> String
3335
+ # resp.user_settings[0].copy_allowed #=> String, one of "Disabled", "Enabled"
3336
+ # resp.user_settings[0].paste_allowed #=> String, one of "Disabled", "Enabled"
3337
+ # resp.user_settings[0].download_allowed #=> String, one of "Disabled", "Enabled"
3338
+ # resp.user_settings[0].upload_allowed #=> String, one of "Disabled", "Enabled"
3339
+ # resp.user_settings[0].print_allowed #=> String, one of "Disabled", "Enabled"
3340
+ # resp.user_settings[0].disconnect_timeout_in_minutes #=> Integer
3341
+ # resp.user_settings[0].idle_disconnect_timeout_in_minutes #=> Integer
2821
3342
  # resp.user_settings[0].cookie_synchronization_configuration.allowlist #=> Array
2822
3343
  # resp.user_settings[0].cookie_synchronization_configuration.allowlist[0].domain #=> String
2823
3344
  # resp.user_settings[0].cookie_synchronization_configuration.allowlist[0].name #=> String
@@ -2826,20 +3347,13 @@ module Aws::WorkSpacesWeb
2826
3347
  # resp.user_settings[0].cookie_synchronization_configuration.blocklist[0].domain #=> String
2827
3348
  # resp.user_settings[0].cookie_synchronization_configuration.blocklist[0].name #=> String
2828
3349
  # resp.user_settings[0].cookie_synchronization_configuration.blocklist[0].path #=> String
2829
- # resp.user_settings[0].copy_allowed #=> String, one of "Disabled", "Enabled"
2830
3350
  # resp.user_settings[0].deep_link_allowed #=> String, one of "Disabled", "Enabled"
2831
- # resp.user_settings[0].disconnect_timeout_in_minutes #=> Integer
2832
- # resp.user_settings[0].download_allowed #=> String, one of "Disabled", "Enabled"
2833
- # resp.user_settings[0].idle_disconnect_timeout_in_minutes #=> Integer
2834
- # resp.user_settings[0].paste_allowed #=> String, one of "Disabled", "Enabled"
2835
- # resp.user_settings[0].print_allowed #=> String, one of "Disabled", "Enabled"
3351
+ # resp.user_settings[0].toolbar_configuration.toolbar_type #=> String, one of "Floating", "Docked"
3352
+ # resp.user_settings[0].toolbar_configuration.visual_mode #=> String, one of "Dark", "Light"
2836
3353
  # resp.user_settings[0].toolbar_configuration.hidden_toolbar_items #=> Array
2837
3354
  # resp.user_settings[0].toolbar_configuration.hidden_toolbar_items[0] #=> String, one of "Windows", "DualMonitor", "FullScreen", "Webcam", "Microphone"
2838
3355
  # resp.user_settings[0].toolbar_configuration.max_display_resolution #=> String, one of "size4096X2160", "size3840X2160", "size3440X1440", "size2560X1440", "size1920X1080", "size1280X720", "size1024X768", "size800X600"
2839
- # resp.user_settings[0].toolbar_configuration.toolbar_type #=> String, one of "Floating", "Docked"
2840
- # resp.user_settings[0].toolbar_configuration.visual_mode #=> String, one of "Dark", "Light"
2841
- # resp.user_settings[0].upload_allowed #=> String, one of "Disabled", "Enabled"
2842
- # resp.user_settings[0].user_settings_arn #=> String
3356
+ # resp.next_token #=> String
2843
3357
  #
2844
3358
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListUserSettings AWS API Documentation
2845
3359
  #
@@ -2852,6 +3366,12 @@ module Aws::WorkSpacesWeb
2852
3366
 
2853
3367
  # Adds or overwrites one or more tags for the specified resource.
2854
3368
  #
3369
+ # @option params [required, String] :resource_arn
3370
+ # The ARN of the resource.
3371
+ #
3372
+ # @option params [required, Array<Types::Tag>] :tags
3373
+ # The tags of the resource.
3374
+ #
2855
3375
  # @option params [String] :client_token
2856
3376
  # A unique, case-sensitive identifier that you provide to ensure the
2857
3377
  # idempotency of the request. Idempotency ensures that an API request
@@ -2865,18 +3385,11 @@ module Aws::WorkSpacesWeb
2865
3385
  # **A suitable default value is auto-generated.** You should normally
2866
3386
  # not need to pass this option.**
2867
3387
  #
2868
- # @option params [required, String] :resource_arn
2869
- # The ARN of the resource.
2870
- #
2871
- # @option params [required, Array<Types::Tag>] :tags
2872
- # The tags of the resource.
2873
- #
2874
3388
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2875
3389
  #
2876
3390
  # @example Request syntax with placeholder values
2877
3391
  #
2878
3392
  # resp = client.tag_resource({
2879
- # client_token: "ClientToken",
2880
3393
  # resource_arn: "ARN", # required
2881
3394
  # tags: [ # required
2882
3395
  # {
@@ -2884,6 +3397,7 @@ module Aws::WorkSpacesWeb
2884
3397
  # value: "TagValue", # required
2885
3398
  # },
2886
3399
  # ],
3400
+ # client_token: "ClientToken",
2887
3401
  # })
2888
3402
  #
2889
3403
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/TagResource AWS API Documentation
@@ -2923,13 +3437,13 @@ module Aws::WorkSpacesWeb
2923
3437
 
2924
3438
  # Updates browser settings.
2925
3439
  #
3440
+ # @option params [required, String] :browser_settings_arn
3441
+ # The ARN of the browser settings.
3442
+ #
2926
3443
  # @option params [String] :browser_policy
2927
3444
  # A JSON string containing Chrome Enterprise policies that will be
2928
3445
  # applied to all streaming sessions.
2929
3446
  #
2930
- # @option params [required, String] :browser_settings_arn
2931
- # The ARN of the browser settings.
2932
- #
2933
3447
  # @option params [String] :client_token
2934
3448
  # A unique, case-sensitive identifier that you provide to ensure the
2935
3449
  # idempotency of the request. Idempotency ensures that an API request
@@ -2950,20 +3464,20 @@ module Aws::WorkSpacesWeb
2950
3464
  # @example Request syntax with placeholder values
2951
3465
  #
2952
3466
  # resp = client.update_browser_settings({
2953
- # browser_policy: "BrowserPolicy",
2954
3467
  # browser_settings_arn: "ARN", # required
3468
+ # browser_policy: "BrowserPolicy",
2955
3469
  # client_token: "ClientToken",
2956
3470
  # })
2957
3471
  #
2958
3472
  # @example Response structure
2959
3473
  #
2960
- # resp.browser_settings.additional_encryption_context #=> Hash
2961
- # resp.browser_settings.additional_encryption_context["StringType"] #=> String
3474
+ # resp.browser_settings.browser_settings_arn #=> String
2962
3475
  # resp.browser_settings.associated_portal_arns #=> Array
2963
3476
  # resp.browser_settings.associated_portal_arns[0] #=> String
2964
3477
  # resp.browser_settings.browser_policy #=> String
2965
- # resp.browser_settings.browser_settings_arn #=> String
2966
3478
  # resp.browser_settings.customer_managed_key #=> String
3479
+ # resp.browser_settings.additional_encryption_context #=> Hash
3480
+ # resp.browser_settings.additional_encryption_context["StringType"] #=> String
2967
3481
  #
2968
3482
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateBrowserSettings AWS API Documentation
2969
3483
  #
@@ -2976,6 +3490,19 @@ module Aws::WorkSpacesWeb
2976
3490
 
2977
3491
  # Updates data protection settings.
2978
3492
  #
3493
+ # @option params [required, String] :data_protection_settings_arn
3494
+ # The ARN of the data protection settings.
3495
+ #
3496
+ # @option params [Types::InlineRedactionConfiguration] :inline_redaction_configuration
3497
+ # The inline redaction configuration of the data protection settings
3498
+ # that will be applied to all sessions.
3499
+ #
3500
+ # @option params [String] :display_name
3501
+ # The display name of the data protection settings.
3502
+ #
3503
+ # @option params [String] :description
3504
+ # The description of the data protection settings.
3505
+ #
2979
3506
  # @option params [String] :client_token
2980
3507
  # A unique, case-sensitive identifier that you provide to ensure the
2981
3508
  # idempotency of the request. Idempotency ensures that an API request
@@ -2989,19 +3516,6 @@ module Aws::WorkSpacesWeb
2989
3516
  # **A suitable default value is auto-generated.** You should normally
2990
3517
  # not need to pass this option.**
2991
3518
  #
2992
- # @option params [required, String] :data_protection_settings_arn
2993
- # The ARN of the data protection settings.
2994
- #
2995
- # @option params [String] :description
2996
- # The description of the data protection settings.
2997
- #
2998
- # @option params [String] :display_name
2999
- # The display name of the data protection settings.
3000
- #
3001
- # @option params [Types::InlineRedactionConfiguration] :inline_redaction_configuration
3002
- # The inline redaction configuration of the data protection settings
3003
- # that will be applied to all sessions.
3004
- #
3005
3519
  # @return [Types::UpdateDataProtectionSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3006
3520
  #
3007
3521
  # * {Types::UpdateDataProtectionSettingsResponse#data_protection_settings #data_protection_settings} => Types::DataProtectionSettings
@@ -3009,64 +3523,64 @@ module Aws::WorkSpacesWeb
3009
3523
  # @example Request syntax with placeholder values
3010
3524
  #
3011
3525
  # resp = client.update_data_protection_settings({
3012
- # client_token: "ClientToken",
3013
3526
  # data_protection_settings_arn: "ARN", # required
3014
- # description: "DescriptionSafe",
3015
- # display_name: "DisplayNameSafe",
3016
3527
  # inline_redaction_configuration: {
3017
- # global_confidence_level: 1,
3018
- # global_enforced_urls: ["InlineRedactionUrl"],
3019
- # global_exempt_urls: ["InlineRedactionUrl"],
3020
3528
  # inline_redaction_patterns: [ # required
3021
3529
  # {
3022
3530
  # built_in_pattern_id: "BuiltInPatternId",
3023
- # confidence_level: 1,
3024
3531
  # custom_pattern: {
3025
- # keyword_regex: "Regex",
3026
- # pattern_description: "DescriptionSafe",
3027
3532
  # pattern_name: "PatternName", # required
3028
3533
  # pattern_regex: "Regex", # required
3534
+ # pattern_description: "DescriptionSafe",
3535
+ # keyword_regex: "Regex",
3029
3536
  # },
3030
- # enforced_urls: ["InlineRedactionUrl"],
3031
- # exempt_urls: ["InlineRedactionUrl"],
3032
3537
  # redaction_place_holder: { # required
3033
- # redaction_place_holder_text: "RedactionPlaceHolderText",
3034
3538
  # redaction_place_holder_type: "CustomText", # required, accepts CustomText
3539
+ # redaction_place_holder_text: "RedactionPlaceHolderText",
3035
3540
  # },
3541
+ # enforced_urls: ["InlineRedactionUrl"],
3542
+ # exempt_urls: ["InlineRedactionUrl"],
3543
+ # confidence_level: 1,
3036
3544
  # },
3037
3545
  # ],
3546
+ # global_enforced_urls: ["InlineRedactionUrl"],
3547
+ # global_exempt_urls: ["InlineRedactionUrl"],
3548
+ # global_confidence_level: 1,
3038
3549
  # },
3550
+ # display_name: "DisplayNameSafe",
3551
+ # description: "DescriptionSafe",
3552
+ # client_token: "ClientToken",
3039
3553
  # })
3040
3554
  #
3041
3555
  # @example Response structure
3042
3556
  #
3043
- # resp.data_protection_settings.additional_encryption_context #=> Hash
3044
- # resp.data_protection_settings.additional_encryption_context["StringType"] #=> String
3045
- # resp.data_protection_settings.associated_portal_arns #=> Array
3046
- # resp.data_protection_settings.associated_portal_arns[0] #=> String
3047
- # resp.data_protection_settings.creation_date #=> Time
3048
- # resp.data_protection_settings.customer_managed_key #=> String
3049
3557
  # resp.data_protection_settings.data_protection_settings_arn #=> String
3050
- # resp.data_protection_settings.description #=> String
3051
- # resp.data_protection_settings.display_name #=> String
3052
- # resp.data_protection_settings.inline_redaction_configuration.global_confidence_level #=> Integer
3053
- # resp.data_protection_settings.inline_redaction_configuration.global_enforced_urls #=> Array
3054
- # resp.data_protection_settings.inline_redaction_configuration.global_enforced_urls[0] #=> String
3055
- # resp.data_protection_settings.inline_redaction_configuration.global_exempt_urls #=> Array
3056
- # resp.data_protection_settings.inline_redaction_configuration.global_exempt_urls[0] #=> String
3057
3558
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns #=> Array
3058
3559
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].built_in_pattern_id #=> String
3059
- # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].confidence_level #=> Integer
3060
- # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].custom_pattern.keyword_regex #=> String
3061
- # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].custom_pattern.pattern_description #=> String
3062
3560
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].custom_pattern.pattern_name #=> String
3063
3561
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].custom_pattern.pattern_regex #=> String
3562
+ # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].custom_pattern.pattern_description #=> String
3563
+ # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].custom_pattern.keyword_regex #=> String
3564
+ # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].redaction_place_holder.redaction_place_holder_type #=> String, one of "CustomText"
3565
+ # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].redaction_place_holder.redaction_place_holder_text #=> String
3064
3566
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].enforced_urls #=> Array
3065
3567
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].enforced_urls[0] #=> String
3066
3568
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].exempt_urls #=> Array
3067
3569
  # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].exempt_urls[0] #=> String
3068
- # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].redaction_place_holder.redaction_place_holder_text #=> String
3069
- # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].redaction_place_holder.redaction_place_holder_type #=> String, one of "CustomText"
3570
+ # resp.data_protection_settings.inline_redaction_configuration.inline_redaction_patterns[0].confidence_level #=> Integer
3571
+ # resp.data_protection_settings.inline_redaction_configuration.global_enforced_urls #=> Array
3572
+ # resp.data_protection_settings.inline_redaction_configuration.global_enforced_urls[0] #=> String
3573
+ # resp.data_protection_settings.inline_redaction_configuration.global_exempt_urls #=> Array
3574
+ # resp.data_protection_settings.inline_redaction_configuration.global_exempt_urls[0] #=> String
3575
+ # resp.data_protection_settings.inline_redaction_configuration.global_confidence_level #=> Integer
3576
+ # resp.data_protection_settings.associated_portal_arns #=> Array
3577
+ # resp.data_protection_settings.associated_portal_arns[0] #=> String
3578
+ # resp.data_protection_settings.display_name #=> String
3579
+ # resp.data_protection_settings.description #=> String
3580
+ # resp.data_protection_settings.creation_date #=> Time
3581
+ # resp.data_protection_settings.customer_managed_key #=> String
3582
+ # resp.data_protection_settings.additional_encryption_context #=> Hash
3583
+ # resp.data_protection_settings.additional_encryption_context["StringType"] #=> String
3070
3584
  #
3071
3585
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateDataProtectionSettings AWS API Documentation
3072
3586
  #
@@ -3079,22 +3593,15 @@ module Aws::WorkSpacesWeb
3079
3593
 
3080
3594
  # Updates the identity provider.
3081
3595
  #
3082
- # @option params [String] :client_token
3083
- # A unique, case-sensitive identifier that you provide to ensure the
3084
- # idempotency of the request. Idempotency ensures that an API request
3085
- # completes only once. With an idempotent request, if the original
3086
- # request completes successfully, subsequent retries with the same
3087
- # client token return the result from the original successful request.
3088
- #
3089
- # If you do not specify a client token, one is automatically generated
3090
- # by the Amazon Web Services SDK.
3091
- #
3092
- # **A suitable default value is auto-generated.** You should normally
3093
- # not need to pass this option.**
3094
- #
3095
3596
  # @option params [required, String] :identity_provider_arn
3096
3597
  # The ARN of the identity provider.
3097
3598
  #
3599
+ # @option params [String] :identity_provider_name
3600
+ # The name of the identity provider.
3601
+ #
3602
+ # @option params [String] :identity_provider_type
3603
+ # The type of the identity provider.
3604
+ #
3098
3605
  # @option params [Hash<String,String>] :identity_provider_details
3099
3606
  # The details of the identity provider. The following list describes the
3100
3607
  # provider detail keys for each identity provider type.
@@ -3162,11 +3669,18 @@ module Aws::WorkSpacesWeb
3162
3669
  #
3163
3670
  # * `EncryptedResponses` (boolean) *optional*
3164
3671
  #
3165
- # @option params [String] :identity_provider_name
3166
- # The name of the identity provider.
3672
+ # @option params [String] :client_token
3673
+ # A unique, case-sensitive identifier that you provide to ensure the
3674
+ # idempotency of the request. Idempotency ensures that an API request
3675
+ # completes only once. With an idempotent request, if the original
3676
+ # request completes successfully, subsequent retries with the same
3677
+ # client token return the result from the original successful request.
3167
3678
  #
3168
- # @option params [String] :identity_provider_type
3169
- # The type of the identity provider.
3679
+ # If you do not specify a client token, one is automatically generated
3680
+ # by the Amazon Web Services SDK.
3681
+ #
3682
+ # **A suitable default value is auto-generated.** You should normally
3683
+ # not need to pass this option.**
3170
3684
  #
3171
3685
  # @return [Types::UpdateIdentityProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3172
3686
  #
@@ -3175,22 +3689,22 @@ module Aws::WorkSpacesWeb
3175
3689
  # @example Request syntax with placeholder values
3176
3690
  #
3177
3691
  # resp = client.update_identity_provider({
3178
- # client_token: "ClientToken",
3179
3692
  # identity_provider_arn: "SubresourceARN", # required
3693
+ # identity_provider_name: "IdentityProviderName",
3694
+ # identity_provider_type: "SAML", # accepts SAML, Facebook, Google, LoginWithAmazon, SignInWithApple, OIDC
3180
3695
  # identity_provider_details: {
3181
3696
  # "StringType" => "StringType",
3182
3697
  # },
3183
- # identity_provider_name: "IdentityProviderName",
3184
- # identity_provider_type: "SAML", # accepts SAML, Facebook, Google, LoginWithAmazon, SignInWithApple, OIDC
3698
+ # client_token: "ClientToken",
3185
3699
  # })
3186
3700
  #
3187
3701
  # @example Response structure
3188
3702
  #
3189
3703
  # resp.identity_provider.identity_provider_arn #=> String
3190
- # resp.identity_provider.identity_provider_details #=> Hash
3191
- # resp.identity_provider.identity_provider_details["StringType"] #=> String
3192
3704
  # resp.identity_provider.identity_provider_name #=> String
3193
3705
  # resp.identity_provider.identity_provider_type #=> String, one of "SAML", "Facebook", "Google", "LoginWithAmazon", "SignInWithApple", "OIDC"
3706
+ # resp.identity_provider.identity_provider_details #=> Hash
3707
+ # resp.identity_provider.identity_provider_details["StringType"] #=> String
3194
3708
  #
3195
3709
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateIdentityProvider AWS API Documentation
3196
3710
  #
@@ -3203,6 +3717,18 @@ module Aws::WorkSpacesWeb
3203
3717
 
3204
3718
  # Updates IP access settings.
3205
3719
  #
3720
+ # @option params [required, String] :ip_access_settings_arn
3721
+ # The ARN of the IP access settings.
3722
+ #
3723
+ # @option params [String] :display_name
3724
+ # The display name of the IP access settings.
3725
+ #
3726
+ # @option params [String] :description
3727
+ # The description of the IP access settings.
3728
+ #
3729
+ # @option params [Array<Types::IpRule>] :ip_rules
3730
+ # The updated IP rules of the IP access settings.
3731
+ #
3206
3732
  # @option params [String] :client_token
3207
3733
  # A unique, case-sensitive identifier that you provide to ensure the
3208
3734
  # idempotency of the request. Idempotency ensures that an API request
@@ -3216,18 +3742,6 @@ module Aws::WorkSpacesWeb
3216
3742
  # **A suitable default value is auto-generated.** You should normally
3217
3743
  # not need to pass this option.**
3218
3744
  #
3219
- # @option params [String] :description
3220
- # The description of the IP access settings.
3221
- #
3222
- # @option params [String] :display_name
3223
- # The display name of the IP access settings.
3224
- #
3225
- # @option params [required, String] :ip_access_settings_arn
3226
- # The ARN of the IP access settings.
3227
- #
3228
- # @option params [Array<Types::IpRule>] :ip_rules
3229
- # The updated IP rules of the IP access settings.
3230
- #
3231
3745
  # @return [Types::UpdateIpAccessSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3232
3746
  #
3233
3747
  # * {Types::UpdateIpAccessSettingsResponse#ip_access_settings #ip_access_settings} => Types::IpAccessSettings
@@ -3235,32 +3749,32 @@ module Aws::WorkSpacesWeb
3235
3749
  # @example Request syntax with placeholder values
3236
3750
  #
3237
3751
  # resp = client.update_ip_access_settings({
3238
- # client_token: "ClientToken",
3239
- # description: "Description",
3240
- # display_name: "DisplayName",
3241
3752
  # ip_access_settings_arn: "ARN", # required
3753
+ # display_name: "DisplayName",
3754
+ # description: "Description",
3242
3755
  # ip_rules: [
3243
3756
  # {
3244
- # description: "Description",
3245
3757
  # ip_range: "IpRange", # required
3758
+ # description: "Description",
3246
3759
  # },
3247
3760
  # ],
3761
+ # client_token: "ClientToken",
3248
3762
  # })
3249
3763
  #
3250
3764
  # @example Response structure
3251
3765
  #
3252
- # resp.ip_access_settings.additional_encryption_context #=> Hash
3253
- # resp.ip_access_settings.additional_encryption_context["StringType"] #=> String
3766
+ # resp.ip_access_settings.ip_access_settings_arn #=> String
3254
3767
  # resp.ip_access_settings.associated_portal_arns #=> Array
3255
3768
  # resp.ip_access_settings.associated_portal_arns[0] #=> String
3256
- # resp.ip_access_settings.creation_date #=> Time
3257
- # resp.ip_access_settings.customer_managed_key #=> String
3258
- # resp.ip_access_settings.description #=> String
3259
- # resp.ip_access_settings.display_name #=> String
3260
- # resp.ip_access_settings.ip_access_settings_arn #=> String
3261
3769
  # resp.ip_access_settings.ip_rules #=> Array
3262
- # resp.ip_access_settings.ip_rules[0].description #=> String
3263
3770
  # resp.ip_access_settings.ip_rules[0].ip_range #=> String
3771
+ # resp.ip_access_settings.ip_rules[0].description #=> String
3772
+ # resp.ip_access_settings.display_name #=> String
3773
+ # resp.ip_access_settings.description #=> String
3774
+ # resp.ip_access_settings.creation_date #=> Time
3775
+ # resp.ip_access_settings.customer_managed_key #=> String
3776
+ # resp.ip_access_settings.additional_encryption_context #=> Hash
3777
+ # resp.ip_access_settings.additional_encryption_context["StringType"] #=> String
3264
3778
  #
3265
3779
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateIpAccessSettings AWS API Documentation
3266
3780
  #
@@ -3273,6 +3787,21 @@ module Aws::WorkSpacesWeb
3273
3787
 
3274
3788
  # Updates network settings.
3275
3789
  #
3790
+ # @option params [required, String] :network_settings_arn
3791
+ # The ARN of the network settings.
3792
+ #
3793
+ # @option params [String] :vpc_id
3794
+ # The VPC that streaming instances will connect to.
3795
+ #
3796
+ # @option params [Array<String>] :subnet_ids
3797
+ # The subnets in which network interfaces are created to connect
3798
+ # streaming instances to your VPC. At least two of these subnets must be
3799
+ # in different availability zones.
3800
+ #
3801
+ # @option params [Array<String>] :security_group_ids
3802
+ # One or more security groups used to control access from streaming
3803
+ # instances to your VPC.
3804
+ #
3276
3805
  # @option params [String] :client_token
3277
3806
  # A unique, case-sensitive identifier that you provide to ensure the
3278
3807
  # idempotency of the request. Idempotency ensures that an API request
@@ -3286,21 +3815,6 @@ module Aws::WorkSpacesWeb
3286
3815
  # **A suitable default value is auto-generated.** You should normally
3287
3816
  # not need to pass this option.**
3288
3817
  #
3289
- # @option params [required, String] :network_settings_arn
3290
- # The ARN of the network settings.
3291
- #
3292
- # @option params [Array<String>] :security_group_ids
3293
- # One or more security groups used to control access from streaming
3294
- # instances to your VPC.
3295
- #
3296
- # @option params [Array<String>] :subnet_ids
3297
- # The subnets in which network interfaces are created to connect
3298
- # streaming instances to your VPC. At least two of these subnets must be
3299
- # in different availability zones.
3300
- #
3301
- # @option params [String] :vpc_id
3302
- # The VPC that streaming instances will connect to.
3303
- #
3304
3818
  # @return [Types::UpdateNetworkSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3305
3819
  #
3306
3820
  # * {Types::UpdateNetworkSettingsResponse#network_settings #network_settings} => Types::NetworkSettings
@@ -3308,23 +3822,23 @@ module Aws::WorkSpacesWeb
3308
3822
  # @example Request syntax with placeholder values
3309
3823
  #
3310
3824
  # resp = client.update_network_settings({
3311
- # client_token: "ClientToken",
3312
3825
  # network_settings_arn: "ARN", # required
3313
- # security_group_ids: ["SecurityGroupId"],
3314
- # subnet_ids: ["SubnetId"],
3315
3826
  # vpc_id: "VpcId",
3827
+ # subnet_ids: ["SubnetId"],
3828
+ # security_group_ids: ["SecurityGroupId"],
3829
+ # client_token: "ClientToken",
3316
3830
  # })
3317
3831
  #
3318
3832
  # @example Response structure
3319
3833
  #
3834
+ # resp.network_settings.network_settings_arn #=> String
3320
3835
  # resp.network_settings.associated_portal_arns #=> Array
3321
3836
  # resp.network_settings.associated_portal_arns[0] #=> String
3322
- # resp.network_settings.network_settings_arn #=> String
3323
- # resp.network_settings.security_group_ids #=> Array
3324
- # resp.network_settings.security_group_ids[0] #=> String
3837
+ # resp.network_settings.vpc_id #=> String
3325
3838
  # resp.network_settings.subnet_ids #=> Array
3326
3839
  # resp.network_settings.subnet_ids[0] #=> String
3327
- # resp.network_settings.vpc_id #=> String
3840
+ # resp.network_settings.security_group_ids #=> Array
3841
+ # resp.network_settings.security_group_ids[0] #=> String
3328
3842
  #
3329
3843
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateNetworkSettings AWS API Documentation
3330
3844
  #
@@ -3337,6 +3851,13 @@ module Aws::WorkSpacesWeb
3337
3851
 
3338
3852
  # Updates a web portal.
3339
3853
  #
3854
+ # @option params [required, String] :portal_arn
3855
+ # The ARN of the web portal.
3856
+ #
3857
+ # @option params [String] :display_name
3858
+ # The name of the web portal. This is not visible to users who log into
3859
+ # the web portal.
3860
+ #
3340
3861
  # @option params [String] :authentication_type
3341
3862
  # The type of authentication integration points used when signing into
3342
3863
  # the web portal. Defaults to `Standard`.
@@ -3352,19 +3873,12 @@ module Aws::WorkSpacesWeb
3352
3873
  # provider integration), plus user and group access to your web portal,
3353
3874
  # can be configured in the IAM Identity Center.
3354
3875
  #
3355
- # @option params [String] :display_name
3356
- # The name of the web portal. This is not visible to users who log into
3357
- # the web portal.
3358
- #
3359
3876
  # @option params [String] :instance_type
3360
3877
  # The type and resources of the underlying instance.
3361
3878
  #
3362
3879
  # @option params [Integer] :max_concurrent_sessions
3363
3880
  # The maximum number of concurrent sessions for the portal.
3364
3881
  #
3365
- # @option params [required, String] :portal_arn
3366
- # The ARN of the web portal.
3367
- #
3368
3882
  # @return [Types::UpdatePortalResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3369
3883
  #
3370
3884
  # * {Types::UpdatePortalResponse#portal #portal} => Types::Portal
@@ -3372,36 +3886,37 @@ module Aws::WorkSpacesWeb
3372
3886
  # @example Request syntax with placeholder values
3373
3887
  #
3374
3888
  # resp = client.update_portal({
3375
- # authentication_type: "Standard", # accepts Standard, IAM_Identity_Center
3889
+ # portal_arn: "ARN", # required
3376
3890
  # display_name: "DisplayName",
3891
+ # authentication_type: "Standard", # accepts Standard, IAM_Identity_Center
3377
3892
  # instance_type: "standard.regular", # accepts standard.regular, standard.large, standard.xlarge
3378
3893
  # max_concurrent_sessions: 1,
3379
- # portal_arn: "ARN", # required
3380
3894
  # })
3381
3895
  #
3382
3896
  # @example Response structure
3383
3897
  #
3384
- # resp.portal.additional_encryption_context #=> Hash
3385
- # resp.portal.additional_encryption_context["StringType"] #=> String
3386
- # resp.portal.authentication_type #=> String, one of "Standard", "IAM_Identity_Center"
3387
- # resp.portal.browser_settings_arn #=> String
3898
+ # resp.portal.portal_arn #=> String
3899
+ # resp.portal.renderer_type #=> String, one of "AppStream"
3388
3900
  # resp.portal.browser_type #=> String, one of "Chrome"
3901
+ # resp.portal.portal_status #=> String, one of "Incomplete", "Pending", "Active"
3902
+ # resp.portal.portal_endpoint #=> String
3903
+ # resp.portal.display_name #=> String
3389
3904
  # resp.portal.creation_date #=> Time
3390
- # resp.portal.customer_managed_key #=> String
3905
+ # resp.portal.browser_settings_arn #=> String
3391
3906
  # resp.portal.data_protection_settings_arn #=> String
3392
- # resp.portal.display_name #=> String
3393
- # resp.portal.instance_type #=> String, one of "standard.regular", "standard.large", "standard.xlarge"
3394
- # resp.portal.ip_access_settings_arn #=> String
3395
- # resp.portal.max_concurrent_sessions #=> Integer
3907
+ # resp.portal.user_settings_arn #=> String
3396
3908
  # resp.portal.network_settings_arn #=> String
3397
- # resp.portal.portal_arn #=> String
3398
- # resp.portal.portal_endpoint #=> String
3399
- # resp.portal.portal_status #=> String, one of "Incomplete", "Pending", "Active"
3400
- # resp.portal.renderer_type #=> String, one of "AppStream"
3401
- # resp.portal.status_reason #=> String
3909
+ # resp.portal.session_logger_arn #=> String
3402
3910
  # resp.portal.trust_store_arn #=> String
3911
+ # resp.portal.status_reason #=> String
3403
3912
  # resp.portal.user_access_logging_settings_arn #=> String
3404
- # resp.portal.user_settings_arn #=> String
3913
+ # resp.portal.authentication_type #=> String, one of "Standard", "IAM_Identity_Center"
3914
+ # resp.portal.ip_access_settings_arn #=> String
3915
+ # resp.portal.customer_managed_key #=> String
3916
+ # resp.portal.additional_encryption_context #=> Hash
3917
+ # resp.portal.additional_encryption_context["StringType"] #=> String
3918
+ # resp.portal.instance_type #=> String, one of "standard.regular", "standard.large", "standard.xlarge"
3919
+ # resp.portal.max_concurrent_sessions #=> Integer
3405
3920
  #
3406
3921
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdatePortal AWS API Documentation
3407
3922
  #
@@ -3412,8 +3927,163 @@ module Aws::WorkSpacesWeb
3412
3927
  req.send_request(options)
3413
3928
  end
3414
3929
 
3930
+ # Updates the details of a session logger.
3931
+ #
3932
+ # @option params [required, String] :session_logger_arn
3933
+ # The ARN of the session logger to update.
3934
+ #
3935
+ # @option params [Types::EventFilter] :event_filter
3936
+ # The updated eventFilter.
3937
+ #
3938
+ # @option params [Types::LogConfiguration] :log_configuration
3939
+ # The updated logConfiguration.
3940
+ #
3941
+ # @option params [String] :display_name
3942
+ # The updated display name.
3943
+ #
3944
+ # @return [Types::UpdateSessionLoggerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3945
+ #
3946
+ # * {Types::UpdateSessionLoggerResponse#session_logger #session_logger} => Types::SessionLogger
3947
+ #
3948
+ #
3949
+ # @example Example: Update Session Logger Event Filter
3950
+ #
3951
+ # # Updates a session logger to capture specific events instead of all events
3952
+ #
3953
+ # resp = client.update_session_logger({
3954
+ # event_filter: {
3955
+ # include: [
3956
+ # "SessionStart",
3957
+ # "SessionEnd",
3958
+ # "UrlLoad",
3959
+ # "WebsiteInteract",
3960
+ # ],
3961
+ # },
3962
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/12345678-1234-1234-1234-123456789012",
3963
+ # })
3964
+ #
3965
+ # resp.to_h outputs the following:
3966
+ # {
3967
+ # session_logger: {
3968
+ # creation_date: Time.parse("2024-01-15T10:30:00Z"),
3969
+ # display_name: "Updated Session Logger with Specific Events",
3970
+ # event_filter: {
3971
+ # include: [
3972
+ # "SessionStart",
3973
+ # "SessionEnd",
3974
+ # "UrlLoad",
3975
+ # "WebsiteInteract",
3976
+ # ],
3977
+ # },
3978
+ # log_configuration: {
3979
+ # s3: {
3980
+ # bucket: "my-session-logs-bucket",
3981
+ # bucket_owner: "123456789012",
3982
+ # folder_structure: "Flat",
3983
+ # key_prefix: "updated/session-logs/each/event",
3984
+ # log_file_format: "Json",
3985
+ # },
3986
+ # },
3987
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/12345678-1234-1234-1234-123456789012",
3988
+ # },
3989
+ # }
3990
+ #
3991
+ # @example Example: Update Session Logger Configuration
3992
+ #
3993
+ # # Updates the log configuration of a session logger
3994
+ #
3995
+ # resp = client.update_session_logger({
3996
+ # log_configuration: {
3997
+ # s3: {
3998
+ # bucket: "updated-my-session-logs-bucket-2",
3999
+ # bucket_owner: "123456789012",
4000
+ # folder_structure: "Flat",
4001
+ # key_prefix: "updated/key/prefix",
4002
+ # log_file_format: "Json",
4003
+ # },
4004
+ # },
4005
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/87654321-4321-4321-4321-210987654321",
4006
+ # })
4007
+ #
4008
+ # resp.to_h outputs the following:
4009
+ # {
4010
+ # session_logger: {
4011
+ # additional_encryption_context: {
4012
+ # "EncryptionContextKey" => "EncryptionContextValue",
4013
+ # },
4014
+ # creation_date: Time.parse("2024-01-15T14:45:00Z"),
4015
+ # customer_managed_key: "arn:aws:kms:us-west-2:123456789012:key/12345678-1234-1234-1234-123456789012",
4016
+ # display_name: "Updated Session Logger with Log Config",
4017
+ # event_filter: {
4018
+ # all: {
4019
+ # },
4020
+ # },
4021
+ # log_configuration: {
4022
+ # s3: {
4023
+ # bucket: "updated-my-session-logs-bucket-2",
4024
+ # bucket_owner: "123456789012",
4025
+ # folder_structure: "Flat",
4026
+ # key_prefix: "updated/key/prefix",
4027
+ # log_file_format: "Json",
4028
+ # },
4029
+ # },
4030
+ # session_logger_arn: "arn:aws:workspaces-web:us-west-2:123456789012:sessionLogger/87654321-4321-4321-4321-210987654321",
4031
+ # },
4032
+ # }
4033
+ #
4034
+ # @example Request syntax with placeholder values
4035
+ #
4036
+ # resp = client.update_session_logger({
4037
+ # session_logger_arn: "ARN", # required
4038
+ # event_filter: {
4039
+ # all: {
4040
+ # },
4041
+ # include: ["WebsiteInteract"], # accepts WebsiteInteract, FileDownloadFromSecureBrowserToRemoteDisk, FileTransferFromRemoteToLocalDisk, FileTransferFromLocalToRemoteDisk, FileUploadFromRemoteDiskToSecureBrowser, ContentPasteToWebsite, ContentTransferFromLocalToRemoteClipboard, ContentCopyFromWebsite, UrlLoad, TabOpen, TabClose, PrintJobSubmit, SessionConnect, SessionStart, SessionDisconnect, SessionEnd
4042
+ # },
4043
+ # log_configuration: {
4044
+ # s3: {
4045
+ # bucket: "S3Bucket", # required
4046
+ # key_prefix: "S3KeyPrefix",
4047
+ # bucket_owner: "S3BucketOwner",
4048
+ # log_file_format: "JSONLines", # required, accepts JSONLines, Json
4049
+ # folder_structure: "Flat", # required, accepts Flat, NestedByDate
4050
+ # },
4051
+ # },
4052
+ # display_name: "DisplayNameSafe",
4053
+ # })
4054
+ #
4055
+ # @example Response structure
4056
+ #
4057
+ # resp.session_logger.session_logger_arn #=> String
4058
+ # resp.session_logger.event_filter.include #=> Array
4059
+ # resp.session_logger.event_filter.include[0] #=> String, one of "WebsiteInteract", "FileDownloadFromSecureBrowserToRemoteDisk", "FileTransferFromRemoteToLocalDisk", "FileTransferFromLocalToRemoteDisk", "FileUploadFromRemoteDiskToSecureBrowser", "ContentPasteToWebsite", "ContentTransferFromLocalToRemoteClipboard", "ContentCopyFromWebsite", "UrlLoad", "TabOpen", "TabClose", "PrintJobSubmit", "SessionConnect", "SessionStart", "SessionDisconnect", "SessionEnd"
4060
+ # resp.session_logger.log_configuration.s3.bucket #=> String
4061
+ # resp.session_logger.log_configuration.s3.key_prefix #=> String
4062
+ # resp.session_logger.log_configuration.s3.bucket_owner #=> String
4063
+ # resp.session_logger.log_configuration.s3.log_file_format #=> String, one of "JSONLines", "Json"
4064
+ # resp.session_logger.log_configuration.s3.folder_structure #=> String, one of "Flat", "NestedByDate"
4065
+ # resp.session_logger.customer_managed_key #=> String
4066
+ # resp.session_logger.additional_encryption_context #=> Hash
4067
+ # resp.session_logger.additional_encryption_context["StringType"] #=> String
4068
+ # resp.session_logger.associated_portal_arns #=> Array
4069
+ # resp.session_logger.associated_portal_arns[0] #=> String
4070
+ # resp.session_logger.display_name #=> String
4071
+ # resp.session_logger.creation_date #=> Time
4072
+ #
4073
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateSessionLogger AWS API Documentation
4074
+ #
4075
+ # @overload update_session_logger(params = {})
4076
+ # @param [Hash] params ({})
4077
+ def update_session_logger(params = {}, options = {})
4078
+ req = build_request(:update_session_logger, params)
4079
+ req.send_request(options)
4080
+ end
4081
+
3415
4082
  # Updates the trust store.
3416
4083
  #
4084
+ # @option params [required, String] :trust_store_arn
4085
+ # The ARN of the trust store.
4086
+ #
3417
4087
  # @option params [Array<String, StringIO, File>] :certificates_to_add
3418
4088
  # A list of CA certificates to add to the trust store.
3419
4089
  #
@@ -3433,9 +4103,6 @@ module Aws::WorkSpacesWeb
3433
4103
  # **A suitable default value is auto-generated.** You should normally
3434
4104
  # not need to pass this option.**
3435
4105
  #
3436
- # @option params [required, String] :trust_store_arn
3437
- # The ARN of the trust store.
3438
- #
3439
4106
  # @return [Types::UpdateTrustStoreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3440
4107
  #
3441
4108
  # * {Types::UpdateTrustStoreResponse#trust_store_arn #trust_store_arn} => String
@@ -3443,10 +4110,10 @@ module Aws::WorkSpacesWeb
3443
4110
  # @example Request syntax with placeholder values
3444
4111
  #
3445
4112
  # resp = client.update_trust_store({
4113
+ # trust_store_arn: "ARN", # required
3446
4114
  # certificates_to_add: ["data"],
3447
4115
  # certificates_to_delete: ["CertificateThumbprint"],
3448
4116
  # client_token: "ClientToken",
3449
- # trust_store_arn: "ARN", # required
3450
4117
  # })
3451
4118
  #
3452
4119
  # @example Response structure
@@ -3464,6 +4131,12 @@ module Aws::WorkSpacesWeb
3464
4131
 
3465
4132
  # Updates the user access logging settings.
3466
4133
  #
4134
+ # @option params [required, String] :user_access_logging_settings_arn
4135
+ # The ARN of the user access logging settings.
4136
+ #
4137
+ # @option params [String] :kinesis_stream_arn
4138
+ # The ARN of the Kinesis stream.
4139
+ #
3467
4140
  # @option params [String] :client_token
3468
4141
  # A unique, case-sensitive identifier that you provide to ensure the
3469
4142
  # idempotency of the request. Idempotency ensures that an API request
@@ -3477,12 +4150,6 @@ module Aws::WorkSpacesWeb
3477
4150
  # **A suitable default value is auto-generated.** You should normally
3478
4151
  # not need to pass this option.**
3479
4152
  #
3480
- # @option params [String] :kinesis_stream_arn
3481
- # The ARN of the Kinesis stream.
3482
- #
3483
- # @option params [required, String] :user_access_logging_settings_arn
3484
- # The ARN of the user access logging settings.
3485
- #
3486
4153
  # @return [Types::UpdateUserAccessLoggingSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3487
4154
  #
3488
4155
  # * {Types::UpdateUserAccessLoggingSettingsResponse#user_access_logging_settings #user_access_logging_settings} => Types::UserAccessLoggingSettings
@@ -3490,17 +4157,17 @@ module Aws::WorkSpacesWeb
3490
4157
  # @example Request syntax with placeholder values
3491
4158
  #
3492
4159
  # resp = client.update_user_access_logging_settings({
3493
- # client_token: "ClientToken",
3494
- # kinesis_stream_arn: "KinesisStreamArn",
3495
4160
  # user_access_logging_settings_arn: "ARN", # required
4161
+ # kinesis_stream_arn: "KinesisStreamArn",
4162
+ # client_token: "ClientToken",
3496
4163
  # })
3497
4164
  #
3498
4165
  # @example Response structure
3499
4166
  #
4167
+ # resp.user_access_logging_settings.user_access_logging_settings_arn #=> String
3500
4168
  # resp.user_access_logging_settings.associated_portal_arns #=> Array
3501
4169
  # resp.user_access_logging_settings.associated_portal_arns[0] #=> String
3502
4170
  # resp.user_access_logging_settings.kinesis_stream_arn #=> String
3503
- # resp.user_access_logging_settings.user_access_logging_settings_arn #=> String
3504
4171
  #
3505
4172
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateUserAccessLoggingSettings AWS API Documentation
3506
4173
  #
@@ -3513,6 +4180,37 @@ module Aws::WorkSpacesWeb
3513
4180
 
3514
4181
  # Updates the user settings.
3515
4182
  #
4183
+ # @option params [required, String] :user_settings_arn
4184
+ # The ARN of the user settings.
4185
+ #
4186
+ # @option params [String] :copy_allowed
4187
+ # Specifies whether the user can copy text from the streaming session to
4188
+ # the local device.
4189
+ #
4190
+ # @option params [String] :paste_allowed
4191
+ # Specifies whether the user can paste text from the local device to the
4192
+ # streaming session.
4193
+ #
4194
+ # @option params [String] :download_allowed
4195
+ # Specifies whether the user can download files from the streaming
4196
+ # session to the local device.
4197
+ #
4198
+ # @option params [String] :upload_allowed
4199
+ # Specifies whether the user can upload files from the local device to
4200
+ # the streaming session.
4201
+ #
4202
+ # @option params [String] :print_allowed
4203
+ # Specifies whether the user can print to the local device.
4204
+ #
4205
+ # @option params [Integer] :disconnect_timeout_in_minutes
4206
+ # The amount of time that a streaming session remains active after users
4207
+ # disconnect.
4208
+ #
4209
+ # @option params [Integer] :idle_disconnect_timeout_in_minutes
4210
+ # The amount of time that users can be idle (inactive) before they are
4211
+ # disconnected from their streaming session and the disconnect timeout
4212
+ # interval begins.
4213
+ #
3516
4214
  # @option params [String] :client_token
3517
4215
  # A unique, case-sensitive identifier that you provide to ensure the
3518
4216
  # idempotency of the request. Idempotency ensures that an API request
@@ -3533,34 +4231,10 @@ module Aws::WorkSpacesWeb
3533
4231
  # If the allowlist and blocklist are empty, the configuration becomes
3534
4232
  # null.
3535
4233
  #
3536
- # @option params [String] :copy_allowed
3537
- # Specifies whether the user can copy text from the streaming session to
3538
- # the local device.
3539
- #
3540
4234
  # @option params [String] :deep_link_allowed
3541
4235
  # Specifies whether the user can use deep links that open automatically
3542
4236
  # when connecting to a session.
3543
4237
  #
3544
- # @option params [Integer] :disconnect_timeout_in_minutes
3545
- # The amount of time that a streaming session remains active after users
3546
- # disconnect.
3547
- #
3548
- # @option params [String] :download_allowed
3549
- # Specifies whether the user can download files from the streaming
3550
- # session to the local device.
3551
- #
3552
- # @option params [Integer] :idle_disconnect_timeout_in_minutes
3553
- # The amount of time that users can be idle (inactive) before they are
3554
- # disconnected from their streaming session and the disconnect timeout
3555
- # interval begins.
3556
- #
3557
- # @option params [String] :paste_allowed
3558
- # Specifies whether the user can paste text from the local device to the
3559
- # streaming session.
3560
- #
3561
- # @option params [String] :print_allowed
3562
- # Specifies whether the user can print to the local device.
3563
- #
3564
4238
  # @option params [Types::ToolbarConfiguration] :toolbar_configuration
3565
4239
  # The configuration of the toolbar. This allows administrators to select
3566
4240
  # the toolbar type and visual mode, set maximum display resolution for
@@ -3568,13 +4242,6 @@ module Aws::WorkSpacesWeb
3568
4242
  # sessions. If administrators do not modify these settings, end users
3569
4243
  # retain control over their toolbar preferences.
3570
4244
  #
3571
- # @option params [String] :upload_allowed
3572
- # Specifies whether the user can upload files from the local device to
3573
- # the streaming session.
3574
- #
3575
- # @option params [required, String] :user_settings_arn
3576
- # The ARN of the user settings.
3577
- #
3578
4245
  # @return [Types::UpdateUserSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3579
4246
  #
3580
4247
  # * {Types::UpdateUserSettingsResponse#user_settings #user_settings} => Types::UserSettings
@@ -3582,6 +4249,14 @@ module Aws::WorkSpacesWeb
3582
4249
  # @example Request syntax with placeholder values
3583
4250
  #
3584
4251
  # resp = client.update_user_settings({
4252
+ # user_settings_arn: "ARN", # required
4253
+ # copy_allowed: "Disabled", # accepts Disabled, Enabled
4254
+ # paste_allowed: "Disabled", # accepts Disabled, Enabled
4255
+ # download_allowed: "Disabled", # accepts Disabled, Enabled
4256
+ # upload_allowed: "Disabled", # accepts Disabled, Enabled
4257
+ # print_allowed: "Disabled", # accepts Disabled, Enabled
4258
+ # disconnect_timeout_in_minutes: 1,
4259
+ # idle_disconnect_timeout_in_minutes: 1,
3585
4260
  # client_token: "ClientToken",
3586
4261
  # cookie_synchronization_configuration: {
3587
4262
  # allowlist: [ # required
@@ -3599,29 +4274,27 @@ module Aws::WorkSpacesWeb
3599
4274
  # },
3600
4275
  # ],
3601
4276
  # },
3602
- # copy_allowed: "Disabled", # accepts Disabled, Enabled
3603
4277
  # deep_link_allowed: "Disabled", # accepts Disabled, Enabled
3604
- # disconnect_timeout_in_minutes: 1,
3605
- # download_allowed: "Disabled", # accepts Disabled, Enabled
3606
- # idle_disconnect_timeout_in_minutes: 1,
3607
- # paste_allowed: "Disabled", # accepts Disabled, Enabled
3608
- # print_allowed: "Disabled", # accepts Disabled, Enabled
3609
4278
  # toolbar_configuration: {
3610
- # hidden_toolbar_items: ["Windows"], # accepts Windows, DualMonitor, FullScreen, Webcam, Microphone
3611
- # max_display_resolution: "size4096X2160", # accepts size4096X2160, size3840X2160, size3440X1440, size2560X1440, size1920X1080, size1280X720, size1024X768, size800X600
3612
4279
  # toolbar_type: "Floating", # accepts Floating, Docked
3613
4280
  # visual_mode: "Dark", # accepts Dark, Light
4281
+ # hidden_toolbar_items: ["Windows"], # accepts Windows, DualMonitor, FullScreen, Webcam, Microphone
4282
+ # max_display_resolution: "size4096X2160", # accepts size4096X2160, size3840X2160, size3440X1440, size2560X1440, size1920X1080, size1280X720, size1024X768, size800X600
3614
4283
  # },
3615
- # upload_allowed: "Disabled", # accepts Disabled, Enabled
3616
- # user_settings_arn: "ARN", # required
3617
4284
  # })
3618
4285
  #
3619
4286
  # @example Response structure
3620
4287
  #
3621
- # resp.user_settings.additional_encryption_context #=> Hash
3622
- # resp.user_settings.additional_encryption_context["StringType"] #=> String
4288
+ # resp.user_settings.user_settings_arn #=> String
3623
4289
  # resp.user_settings.associated_portal_arns #=> Array
3624
4290
  # resp.user_settings.associated_portal_arns[0] #=> String
4291
+ # resp.user_settings.copy_allowed #=> String, one of "Disabled", "Enabled"
4292
+ # resp.user_settings.paste_allowed #=> String, one of "Disabled", "Enabled"
4293
+ # resp.user_settings.download_allowed #=> String, one of "Disabled", "Enabled"
4294
+ # resp.user_settings.upload_allowed #=> String, one of "Disabled", "Enabled"
4295
+ # resp.user_settings.print_allowed #=> String, one of "Disabled", "Enabled"
4296
+ # resp.user_settings.disconnect_timeout_in_minutes #=> Integer
4297
+ # resp.user_settings.idle_disconnect_timeout_in_minutes #=> Integer
3625
4298
  # resp.user_settings.cookie_synchronization_configuration.allowlist #=> Array
3626
4299
  # resp.user_settings.cookie_synchronization_configuration.allowlist[0].domain #=> String
3627
4300
  # resp.user_settings.cookie_synchronization_configuration.allowlist[0].name #=> String
@@ -3630,21 +4303,15 @@ module Aws::WorkSpacesWeb
3630
4303
  # resp.user_settings.cookie_synchronization_configuration.blocklist[0].domain #=> String
3631
4304
  # resp.user_settings.cookie_synchronization_configuration.blocklist[0].name #=> String
3632
4305
  # resp.user_settings.cookie_synchronization_configuration.blocklist[0].path #=> String
3633
- # resp.user_settings.copy_allowed #=> String, one of "Disabled", "Enabled"
3634
4306
  # resp.user_settings.customer_managed_key #=> String
4307
+ # resp.user_settings.additional_encryption_context #=> Hash
4308
+ # resp.user_settings.additional_encryption_context["StringType"] #=> String
3635
4309
  # resp.user_settings.deep_link_allowed #=> String, one of "Disabled", "Enabled"
3636
- # resp.user_settings.disconnect_timeout_in_minutes #=> Integer
3637
- # resp.user_settings.download_allowed #=> String, one of "Disabled", "Enabled"
3638
- # resp.user_settings.idle_disconnect_timeout_in_minutes #=> Integer
3639
- # resp.user_settings.paste_allowed #=> String, one of "Disabled", "Enabled"
3640
- # resp.user_settings.print_allowed #=> String, one of "Disabled", "Enabled"
4310
+ # resp.user_settings.toolbar_configuration.toolbar_type #=> String, one of "Floating", "Docked"
4311
+ # resp.user_settings.toolbar_configuration.visual_mode #=> String, one of "Dark", "Light"
3641
4312
  # resp.user_settings.toolbar_configuration.hidden_toolbar_items #=> Array
3642
4313
  # resp.user_settings.toolbar_configuration.hidden_toolbar_items[0] #=> String, one of "Windows", "DualMonitor", "FullScreen", "Webcam", "Microphone"
3643
4314
  # resp.user_settings.toolbar_configuration.max_display_resolution #=> String, one of "size4096X2160", "size3840X2160", "size3440X1440", "size2560X1440", "size1920X1080", "size1280X720", "size1024X768", "size800X600"
3644
- # resp.user_settings.toolbar_configuration.toolbar_type #=> String, one of "Floating", "Docked"
3645
- # resp.user_settings.toolbar_configuration.visual_mode #=> String, one of "Dark", "Light"
3646
- # resp.user_settings.upload_allowed #=> String, one of "Disabled", "Enabled"
3647
- # resp.user_settings.user_settings_arn #=> String
3648
4315
  #
3649
4316
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateUserSettings AWS API Documentation
3650
4317
  #
@@ -3673,7 +4340,7 @@ module Aws::WorkSpacesWeb
3673
4340
  tracer: tracer
3674
4341
  )
3675
4342
  context[:gem_name] = 'aws-sdk-workspacesweb'
3676
- context[:gem_version] = '1.43.0'
4343
+ context[:gem_version] = '1.45.0'
3677
4344
  Seahorse::Client::Request.new(handlers, context)
3678
4345
  end
3679
4346