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