aws-sdk-workspacesweb 1.17.0 → 1.19.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.
@@ -232,6 +232,10 @@ module Aws::WorkSpacesWeb
232
232
  # how the browser will behave once a user starts a streaming session for
233
233
  # the web portal.
234
234
  #
235
+ # @!attribute [rw] additional_encryption_context
236
+ # The additional encryption context of the browser settings.
237
+ # @return [Hash<String,String>]
238
+ #
235
239
  # @!attribute [rw] associated_portal_arns
236
240
  # A list of web portal ARNs that this browser settings is associated
237
241
  # with.
@@ -246,12 +250,19 @@ module Aws::WorkSpacesWeb
246
250
  # The ARN of the browser settings.
247
251
  # @return [String]
248
252
  #
253
+ # @!attribute [rw] customer_managed_key
254
+ # The customer managed key used to encrypt sensitive information in
255
+ # the browser settings.
256
+ # @return [String]
257
+ #
249
258
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/BrowserSettings AWS API Documentation
250
259
  #
251
260
  class BrowserSettings < Struct.new(
261
+ :additional_encryption_context,
252
262
  :associated_portal_arns,
253
263
  :browser_policy,
254
- :browser_settings_arn)
264
+ :browser_settings_arn,
265
+ :customer_managed_key)
255
266
  SENSITIVE = [:browser_policy]
256
267
  include Aws::Structure
257
268
  end
@@ -386,7 +397,7 @@ module Aws::WorkSpacesWeb
386
397
  :domain,
387
398
  :name,
388
399
  :path)
389
- SENSITIVE = []
400
+ SENSITIVE = [:domain, :name, :path]
390
401
  include Aws::Structure
391
402
  end
392
403
 
@@ -430,7 +441,7 @@ module Aws::WorkSpacesWeb
430
441
  # request.
431
442
  #
432
443
  # If you do not specify a client token, one is automatically generated
433
- # by the AWS SDK.
444
+ # by the Amazon Web Services SDK.
434
445
  #
435
446
  # **A suitable default value is auto-generated.** You should normally
436
447
  # not need to pass this option.
@@ -478,7 +489,7 @@ module Aws::WorkSpacesWeb
478
489
  # request.
479
490
  #
480
491
  # If you do not specify a client token, one is automatically generated
481
- # by the AWS SDK.
492
+ # by the Amazon Web Services SDK.
482
493
  #
483
494
  # **A suitable default value is auto-generated.** You should normally
484
495
  # not need to pass this option.
@@ -547,6 +558,13 @@ module Aws::WorkSpacesWeb
547
558
  # * `MetadataFile` OR `MetadataURL`
548
559
  #
549
560
  # * `IDPSignout` (boolean) *optional*
561
+ #
562
+ # * `IDPInit` (boolean) *optional*
563
+ #
564
+ # * `RequestSigningAlgorithm` (string) *optional* - Only accepts
565
+ # `rsa-sha256`
566
+ #
567
+ # * `EncryptedResponses` (boolean) *optional*
550
568
  # @return [Hash<String,String>]
551
569
  #
552
570
  # @!attribute [rw] identity_provider_name
@@ -598,7 +616,7 @@ module Aws::WorkSpacesWeb
598
616
  # request.
599
617
  #
600
618
  # If you do not specify a client token, one is automatically generated
601
- # by the AWS SDK.
619
+ # by the Amazon Web Services SDK.
602
620
  #
603
621
  # **A suitable default value is auto-generated.** You should normally
604
622
  # not need to pass this option.
@@ -660,7 +678,7 @@ module Aws::WorkSpacesWeb
660
678
  # request.
661
679
  #
662
680
  # If you do not specify a client token, one is automatically generated
663
- # by the AWS SDK.
681
+ # by the Amazon Web Services SDK.
664
682
  #
665
683
  # **A suitable default value is auto-generated.** You should normally
666
684
  # not need to pass this option.
@@ -724,12 +742,11 @@ module Aws::WorkSpacesWeb
724
742
  # group access to your web portal is controlled through your identity
725
743
  # provider.
726
744
  #
727
- # `IAM_Identity_Center` web portals are authenticated through AWS IAM
728
- # Identity Center (successor to AWS Single Sign-On). They provide
729
- # additional features, such as IdP-initiated authentication. Identity
730
- # sources (including external identity provider integration), plus
731
- # user and group access to your web portal, can be configured in the
732
- # IAM Identity Center.
745
+ # `IAM Identity Center` web portals are authenticated through IAM
746
+ # Identity Center (successor to Single Sign-On). Identity sources
747
+ # (including external identity provider integration), plus user and
748
+ # group access to your web portal, can be configured in the IAM
749
+ # Identity Center.
733
750
  # @return [String]
734
751
  #
735
752
  # @!attribute [rw] client_token
@@ -741,7 +758,7 @@ module Aws::WorkSpacesWeb
741
758
  # request.
742
759
  #
743
760
  # If you do not specify a client token, one is automatically generated
744
- # by the AWS SDK.
761
+ # by the Amazon Web Services SDK.
745
762
  #
746
763
  # **A suitable default value is auto-generated.** You should normally
747
764
  # not need to pass this option.
@@ -756,6 +773,14 @@ module Aws::WorkSpacesWeb
756
773
  # into the web portal.
757
774
  # @return [String]
758
775
  #
776
+ # @!attribute [rw] instance_type
777
+ # The type and resources of the underlying instance.
778
+ # @return [String]
779
+ #
780
+ # @!attribute [rw] max_concurrent_sessions
781
+ # The maximum number of concurrent sessions for the portal.
782
+ # @return [Integer]
783
+ #
759
784
  # @!attribute [rw] tags
760
785
  # The tags to add to the web portal. A tag is a key-value pair.
761
786
  # @return [Array<Types::Tag>]
@@ -768,6 +793,8 @@ module Aws::WorkSpacesWeb
768
793
  :client_token,
769
794
  :customer_managed_key,
770
795
  :display_name,
796
+ :instance_type,
797
+ :max_concurrent_sessions,
771
798
  :tags)
772
799
  SENSITIVE = [:display_name]
773
800
  include Aws::Structure
@@ -804,7 +831,7 @@ module Aws::WorkSpacesWeb
804
831
  # request.
805
832
  #
806
833
  # If you do not specify a client token, one is automatically generated
807
- # by the AWS SDK.
834
+ # by the Amazon Web Services SDK.
808
835
  #
809
836
  # **A suitable default value is auto-generated.** You should normally
810
837
  # not need to pass this option.
@@ -845,7 +872,7 @@ module Aws::WorkSpacesWeb
845
872
  # request.
846
873
  #
847
874
  # If you do not specify a client token, one is automatically generated
848
- # by the AWS SDK.
875
+ # by the Amazon Web Services SDK.
849
876
  #
850
877
  # **A suitable default value is auto-generated.** You should normally
851
878
  # not need to pass this option.
@@ -895,7 +922,7 @@ module Aws::WorkSpacesWeb
895
922
  # request.
896
923
  #
897
924
  # If you do not specify a client token, one is automatically generated
898
- # by the AWS SDK.
925
+ # by the Amazon Web Services SDK.
899
926
  #
900
927
  # **A suitable default value is auto-generated.** You should normally
901
928
  # not need to pass this option.
@@ -1530,7 +1557,14 @@ module Aws::WorkSpacesWeb
1530
1557
  #
1531
1558
  # * `MetadataFile` OR `MetadataURL`
1532
1559
  #
1533
- # * `IDPSignout` *optional*
1560
+ # * `IDPSignout` (boolean) *optional*
1561
+ #
1562
+ # * `IDPInit` (boolean) *optional*
1563
+ #
1564
+ # * `RequestSigningAlgorithm` (string) *optional* - Only accepts
1565
+ # `rsa-sha256`
1566
+ #
1567
+ # * `EncryptedResponses` (boolean) *optional*
1534
1568
  # @return [Hash<String,String>]
1535
1569
  #
1536
1570
  # @!attribute [rw] identity_provider_name
@@ -1597,6 +1631,10 @@ module Aws::WorkSpacesWeb
1597
1631
  # The IP access settings resource that can be associated with a web
1598
1632
  # portal.
1599
1633
  #
1634
+ # @!attribute [rw] additional_encryption_context
1635
+ # The additional encryption context of the IP access settings.
1636
+ # @return [Hash<String,String>]
1637
+ #
1600
1638
  # @!attribute [rw] associated_portal_arns
1601
1639
  # A list of web portal ARNs that this IP access settings resource is
1602
1640
  # associated with.
@@ -1606,6 +1644,11 @@ module Aws::WorkSpacesWeb
1606
1644
  # The creation date timestamp of the IP access settings.
1607
1645
  # @return [Time]
1608
1646
  #
1647
+ # @!attribute [rw] customer_managed_key
1648
+ # The customer managed key used to encrypt sensitive information in
1649
+ # the IP access settings.
1650
+ # @return [String]
1651
+ #
1609
1652
  # @!attribute [rw] description
1610
1653
  # The description of the IP access settings.
1611
1654
  # @return [String]
@@ -1625,8 +1668,10 @@ module Aws::WorkSpacesWeb
1625
1668
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/IpAccessSettings AWS API Documentation
1626
1669
  #
1627
1670
  class IpAccessSettings < Struct.new(
1671
+ :additional_encryption_context,
1628
1672
  :associated_portal_arns,
1629
1673
  :creation_date,
1674
+ :customer_managed_key,
1630
1675
  :description,
1631
1676
  :display_name,
1632
1677
  :ip_access_settings_arn,
@@ -2107,6 +2152,10 @@ module Aws::WorkSpacesWeb
2107
2152
 
2108
2153
  # The web portal.
2109
2154
  #
2155
+ # @!attribute [rw] additional_encryption_context
2156
+ # The additional encryption context of the portal.
2157
+ # @return [Hash<String,String>]
2158
+ #
2110
2159
  # @!attribute [rw] authentication_type
2111
2160
  # The type of authentication integration points used when signing into
2112
2161
  # the web portal. Defaults to `Standard`.
@@ -2117,12 +2166,11 @@ module Aws::WorkSpacesWeb
2117
2166
  # group access to your web portal is controlled through your identity
2118
2167
  # provider.
2119
2168
  #
2120
- # `IAM_Identity_Center` web portals are authenticated through AWS IAM
2121
- # Identity Center (successor to AWS Single Sign-On). They provide
2122
- # additional features, such as IdP-initiated authentication. Identity
2123
- # sources (including external identity provider integration), plus
2124
- # user and group access to your web portal, can be configured in the
2125
- # IAM Identity Center.
2169
+ # `IAM Identity Center` web portals are authenticated through IAM
2170
+ # Identity Center (successor to Single Sign-On). Identity sources
2171
+ # (including external identity provider integration), plus user and
2172
+ # group access to your web portal, can be configured in the IAM
2173
+ # Identity Center.
2126
2174
  # @return [String]
2127
2175
  #
2128
2176
  # @!attribute [rw] browser_settings_arn
@@ -2138,14 +2186,27 @@ module Aws::WorkSpacesWeb
2138
2186
  # The creation date of the web portal.
2139
2187
  # @return [Time]
2140
2188
  #
2189
+ # @!attribute [rw] customer_managed_key
2190
+ # The customer managed key used to encrypt sensitive information in
2191
+ # the portal.
2192
+ # @return [String]
2193
+ #
2141
2194
  # @!attribute [rw] display_name
2142
2195
  # The name of the web portal.
2143
2196
  # @return [String]
2144
2197
  #
2198
+ # @!attribute [rw] instance_type
2199
+ # The type and resources of the underlying instance.
2200
+ # @return [String]
2201
+ #
2145
2202
  # @!attribute [rw] ip_access_settings_arn
2146
2203
  # The ARN of the IP access settings.
2147
2204
  # @return [String]
2148
2205
  #
2206
+ # @!attribute [rw] max_concurrent_sessions
2207
+ # The maximum number of concurrent sessions for the portal.
2208
+ # @return [Integer]
2209
+ #
2149
2210
  # @!attribute [rw] network_settings_arn
2150
2211
  # The ARN of the network settings that is associated with the web
2151
2212
  # portal.
@@ -2188,12 +2249,16 @@ module Aws::WorkSpacesWeb
2188
2249
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/Portal AWS API Documentation
2189
2250
  #
2190
2251
  class Portal < Struct.new(
2252
+ :additional_encryption_context,
2191
2253
  :authentication_type,
2192
2254
  :browser_settings_arn,
2193
2255
  :browser_type,
2194
2256
  :creation_date,
2257
+ :customer_managed_key,
2195
2258
  :display_name,
2259
+ :instance_type,
2196
2260
  :ip_access_settings_arn,
2261
+ :max_concurrent_sessions,
2197
2262
  :network_settings_arn,
2198
2263
  :portal_arn,
2199
2264
  :portal_endpoint,
@@ -2219,12 +2284,11 @@ module Aws::WorkSpacesWeb
2219
2284
  # group access to your web portal is controlled through your identity
2220
2285
  # provider.
2221
2286
  #
2222
- # `IAM_Identity_Center` web portals are authenticated through AWS IAM
2223
- # Identity Center (successor to AWS Single Sign-On). They provide
2224
- # additional features, such as IdP-initiated authentication. Identity
2225
- # sources (including external identity provider integration), plus
2226
- # user and group access to your web portal, can be configured in the
2227
- # IAM Identity Center.
2287
+ # `IAM Identity Center` web portals are authenticated through IAM
2288
+ # Identity Center (successor to Single Sign-On). Identity sources
2289
+ # (including external identity provider integration), plus user and
2290
+ # group access to your web portal, can be configured in the IAM
2291
+ # Identity Center.
2228
2292
  # @return [String]
2229
2293
  #
2230
2294
  # @!attribute [rw] browser_settings_arn
@@ -2244,10 +2308,18 @@ module Aws::WorkSpacesWeb
2244
2308
  # The name of the web portal.
2245
2309
  # @return [String]
2246
2310
  #
2311
+ # @!attribute [rw] instance_type
2312
+ # The type and resources of the underlying instance.
2313
+ # @return [String]
2314
+ #
2247
2315
  # @!attribute [rw] ip_access_settings_arn
2248
2316
  # The ARN of the IP access settings.
2249
2317
  # @return [String]
2250
2318
  #
2319
+ # @!attribute [rw] max_concurrent_sessions
2320
+ # The maximum number of concurrent sessions for the portal.
2321
+ # @return [Integer]
2322
+ #
2251
2323
  # @!attribute [rw] network_settings_arn
2252
2324
  # The ARN of the network settings that is associated with the web
2253
2325
  # portal.
@@ -2291,7 +2363,9 @@ module Aws::WorkSpacesWeb
2291
2363
  :browser_type,
2292
2364
  :creation_date,
2293
2365
  :display_name,
2366
+ :instance_type,
2294
2367
  :ip_access_settings_arn,
2368
+ :max_concurrent_sessions,
2295
2369
  :network_settings_arn,
2296
2370
  :portal_arn,
2297
2371
  :portal_endpoint,
@@ -2388,7 +2462,7 @@ module Aws::WorkSpacesWeb
2388
2462
  # request.
2389
2463
  #
2390
2464
  # If you do not specify a client token, one is automatically generated
2391
- # by the AWS SDK.
2465
+ # by the Amazon Web Services SDK.
2392
2466
  #
2393
2467
  # **A suitable default value is auto-generated.** You should normally
2394
2468
  # not need to pass this option.
@@ -2539,7 +2613,7 @@ module Aws::WorkSpacesWeb
2539
2613
  # client token return the result from the original successful request.
2540
2614
  #
2541
2615
  # If you do not specify a client token, one is automatically generated
2542
- # by the AWS SDK.
2616
+ # by the Amazon Web Services SDK.
2543
2617
  #
2544
2618
  # **A suitable default value is auto-generated.** You should normally
2545
2619
  # not need to pass this option.
@@ -2575,7 +2649,7 @@ module Aws::WorkSpacesWeb
2575
2649
  # client token return the result from the original successful request.
2576
2650
  #
2577
2651
  # If you do not specify a client token, one is automatically generated
2578
- # by the AWS SDK.
2652
+ # by the Amazon Web Services SDK.
2579
2653
  #
2580
2654
  # **A suitable default value is auto-generated.** You should normally
2581
2655
  # not need to pass this option.
@@ -2648,6 +2722,13 @@ module Aws::WorkSpacesWeb
2648
2722
  # * `MetadataFile` OR `MetadataURL`
2649
2723
  #
2650
2724
  # * `IDPSignout` (boolean) *optional*
2725
+ #
2726
+ # * `IDPInit` (boolean) *optional*
2727
+ #
2728
+ # * `RequestSigningAlgorithm` (string) *optional* - Only accepts
2729
+ # `rsa-sha256`
2730
+ #
2731
+ # * `EncryptedResponses` (boolean) *optional*
2651
2732
  # @return [Hash<String,String>]
2652
2733
  #
2653
2734
  # @!attribute [rw] identity_provider_name
@@ -2690,7 +2771,7 @@ module Aws::WorkSpacesWeb
2690
2771
  # client token return the result from the original successful request.
2691
2772
  #
2692
2773
  # If you do not specify a client token, one is automatically generated
2693
- # by the AWS SDK.
2774
+ # by the Amazon Web Services SDK.
2694
2775
  #
2695
2776
  # **A suitable default value is auto-generated.** You should normally
2696
2777
  # not need to pass this option.
@@ -2744,7 +2825,7 @@ module Aws::WorkSpacesWeb
2744
2825
  # client token return the result from the original successful request.
2745
2826
  #
2746
2827
  # If you do not specify a client token, one is automatically generated
2747
- # by the AWS SDK.
2828
+ # by the Amazon Web Services SDK.
2748
2829
  #
2749
2830
  # **A suitable default value is auto-generated.** You should normally
2750
2831
  # not need to pass this option.
@@ -2803,12 +2884,11 @@ module Aws::WorkSpacesWeb
2803
2884
  # group access to your web portal is controlled through your identity
2804
2885
  # provider.
2805
2886
  #
2806
- # `IAM_Identity_Center` web portals are authenticated through AWS IAM
2807
- # Identity Center (successor to AWS Single Sign-On). They provide
2808
- # additional features, such as IdP-initiated authentication. Identity
2809
- # sources (including external identity provider integration), plus
2810
- # user and group access to your web portal, can be configured in the
2811
- # IAM Identity Center.
2887
+ # `IAM Identity Center` web portals are authenticated through IAM
2888
+ # Identity Center (successor to Single Sign-On). Identity sources
2889
+ # (including external identity provider integration), plus user and
2890
+ # group access to your web portal, can be configured in the IAM
2891
+ # Identity Center.
2812
2892
  # @return [String]
2813
2893
  #
2814
2894
  # @!attribute [rw] display_name
@@ -2816,6 +2896,14 @@ module Aws::WorkSpacesWeb
2816
2896
  # into the web portal.
2817
2897
  # @return [String]
2818
2898
  #
2899
+ # @!attribute [rw] instance_type
2900
+ # The type and resources of the underlying instance.
2901
+ # @return [String]
2902
+ #
2903
+ # @!attribute [rw] max_concurrent_sessions
2904
+ # The maximum number of concurrent sessions for the portal.
2905
+ # @return [Integer]
2906
+ #
2819
2907
  # @!attribute [rw] portal_arn
2820
2908
  # The ARN of the web portal.
2821
2909
  # @return [String]
@@ -2825,6 +2913,8 @@ module Aws::WorkSpacesWeb
2825
2913
  class UpdatePortalRequest < Struct.new(
2826
2914
  :authentication_type,
2827
2915
  :display_name,
2916
+ :instance_type,
2917
+ :max_concurrent_sessions,
2828
2918
  :portal_arn)
2829
2919
  SENSITIVE = [:display_name]
2830
2920
  include Aws::Structure
@@ -2858,7 +2948,7 @@ module Aws::WorkSpacesWeb
2858
2948
  # client token return the result from the original successful request.
2859
2949
  #
2860
2950
  # If you do not specify a client token, one is automatically generated
2861
- # by the AWS SDK.
2951
+ # by the Amazon Web Services SDK.
2862
2952
  #
2863
2953
  # **A suitable default value is auto-generated.** You should normally
2864
2954
  # not need to pass this option.
@@ -2899,7 +2989,7 @@ module Aws::WorkSpacesWeb
2899
2989
  # client token return the result from the original successful request.
2900
2990
  #
2901
2991
  # If you do not specify a client token, one is automatically generated
2902
- # by the AWS SDK.
2992
+ # by the Amazon Web Services SDK.
2903
2993
  #
2904
2994
  # **A suitable default value is auto-generated.** You should normally
2905
2995
  # not need to pass this option.
@@ -2943,7 +3033,7 @@ module Aws::WorkSpacesWeb
2943
3033
  # client token return the result from the original successful request.
2944
3034
  #
2945
3035
  # If you do not specify a client token, one is automatically generated
2946
- # by the AWS SDK.
3036
+ # by the Amazon Web Services SDK.
2947
3037
  #
2948
3038
  # **A suitable default value is auto-generated.** You should normally
2949
3039
  # not need to pass this option.
@@ -3075,6 +3165,10 @@ module Aws::WorkSpacesWeb
3075
3165
  # Once associated with a web portal, user settings control how users can
3076
3166
  # transfer data between a streaming session and the their local devices.
3077
3167
  #
3168
+ # @!attribute [rw] additional_encryption_context
3169
+ # The additional encryption context of the user settings.
3170
+ # @return [Hash<String,String>]
3171
+ #
3078
3172
  # @!attribute [rw] associated_portal_arns
3079
3173
  # A list of web portal ARNs that this user settings is associated
3080
3174
  # with.
@@ -3091,6 +3185,11 @@ module Aws::WorkSpacesWeb
3091
3185
  # to the local device.
3092
3186
  # @return [String]
3093
3187
  #
3188
+ # @!attribute [rw] customer_managed_key
3189
+ # The customer managed key used to encrypt sensitive information in
3190
+ # the user settings.
3191
+ # @return [String]
3192
+ #
3094
3193
  # @!attribute [rw] disconnect_timeout_in_minutes
3095
3194
  # The amount of time that a streaming session remains active after
3096
3195
  # users disconnect.
@@ -3128,9 +3227,11 @@ module Aws::WorkSpacesWeb
3128
3227
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UserSettings AWS API Documentation
3129
3228
  #
3130
3229
  class UserSettings < Struct.new(
3230
+ :additional_encryption_context,
3131
3231
  :associated_portal_arns,
3132
3232
  :cookie_synchronization_configuration,
3133
3233
  :copy_allowed,
3234
+ :customer_managed_key,
3134
3235
  :disconnect_timeout_in_minutes,
3135
3236
  :download_allowed,
3136
3237
  :idle_disconnect_timeout_in_minutes,
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-workspacesweb/customizations'
52
52
  # @!group service
53
53
  module Aws::WorkSpacesWeb
54
54
 
55
- GEM_VERSION = '1.17.0'
55
+ GEM_VERSION = '1.19.0'
56
56
 
57
57
  end