aws-sdk-workspacesweb 1.34.0 → 1.36.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -57,6 +57,40 @@ module Aws::WorkSpacesWeb
57
57
  include Aws::Structure
58
58
  end
59
59
 
60
+ # @!attribute [rw] data_protection_settings_arn
61
+ # The ARN of the data protection settings.
62
+ # @return [String]
63
+ #
64
+ # @!attribute [rw] portal_arn
65
+ # The ARN of the web portal.
66
+ # @return [String]
67
+ #
68
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateDataProtectionSettingsRequest AWS API Documentation
69
+ #
70
+ class AssociateDataProtectionSettingsRequest < Struct.new(
71
+ :data_protection_settings_arn,
72
+ :portal_arn)
73
+ SENSITIVE = []
74
+ include Aws::Structure
75
+ end
76
+
77
+ # @!attribute [rw] data_protection_settings_arn
78
+ # The ARN of the data protection settings resource.
79
+ # @return [String]
80
+ #
81
+ # @!attribute [rw] portal_arn
82
+ # The ARN of the web portal.
83
+ # @return [String]
84
+ #
85
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateDataProtectionSettingsResponse AWS API Documentation
86
+ #
87
+ class AssociateDataProtectionSettingsResponse < Struct.new(
88
+ :data_protection_settings_arn,
89
+ :portal_arn)
90
+ SENSITIVE = []
91
+ include Aws::Structure
92
+ end
93
+
60
94
  # @!attribute [rw] ip_access_settings_arn
61
95
  # The ARN of the IP access settings.
62
96
  # @return [String]
@@ -480,6 +514,73 @@ module Aws::WorkSpacesWeb
480
514
  include Aws::Structure
481
515
  end
482
516
 
517
+ # @!attribute [rw] additional_encryption_context
518
+ # Additional encryption context of the data protection settings.
519
+ # @return [Hash<String,String>]
520
+ #
521
+ # @!attribute [rw] client_token
522
+ # A unique, case-sensitive identifier that you provide to ensure the
523
+ # idempotency of the request. Idempotency ensures that an API request
524
+ # completes only once. With an idempotent request, if the original
525
+ # request completes successfully, subsequent retries with the same
526
+ # client token returns the result from the original successful
527
+ # request.
528
+ #
529
+ # If you do not specify a client token, one is automatically generated
530
+ # by the Amazon Web Services SDK.
531
+ #
532
+ # **A suitable default value is auto-generated.** You should normally
533
+ # not need to pass this option.
534
+ # @return [String]
535
+ #
536
+ # @!attribute [rw] customer_managed_key
537
+ # The custom managed key of the data protection settings.
538
+ # @return [String]
539
+ #
540
+ # @!attribute [rw] description
541
+ # The description of the data protection settings.
542
+ # @return [String]
543
+ #
544
+ # @!attribute [rw] display_name
545
+ # The display name of the data protection settings.
546
+ # @return [String]
547
+ #
548
+ # @!attribute [rw] inline_redaction_configuration
549
+ # The inline redaction configuration of the data protection settings
550
+ # that will be applied to all sessions.
551
+ # @return [Types::InlineRedactionConfiguration]
552
+ #
553
+ # @!attribute [rw] tags
554
+ # The tags to add to the data protection settings resource. A tag is a
555
+ # key-value pair.
556
+ # @return [Array<Types::Tag>]
557
+ #
558
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateDataProtectionSettingsRequest AWS API Documentation
559
+ #
560
+ class CreateDataProtectionSettingsRequest < Struct.new(
561
+ :additional_encryption_context,
562
+ :client_token,
563
+ :customer_managed_key,
564
+ :description,
565
+ :display_name,
566
+ :inline_redaction_configuration,
567
+ :tags)
568
+ SENSITIVE = [:description, :display_name, :tags]
569
+ include Aws::Structure
570
+ end
571
+
572
+ # @!attribute [rw] data_protection_settings_arn
573
+ # The ARN of the data protection settings resource.
574
+ # @return [String]
575
+ #
576
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateDataProtectionSettingsResponse AWS API Documentation
577
+ #
578
+ class CreateDataProtectionSettingsResponse < Struct.new(
579
+ :data_protection_settings_arn)
580
+ SENSITIVE = []
581
+ include Aws::Structure
582
+ end
583
+
483
584
  # @!attribute [rw] client_token
484
585
  # A unique, case-sensitive identifier that you provide to ensure the
485
586
  # idempotency of the request. Idempotency ensures that an API request
@@ -506,7 +607,6 @@ module Aws::WorkSpacesWeb
506
607
  # * `client_secret`
507
608
  #
508
609
  # * `authorize_scopes`
509
- #
510
610
  # * For Facebook:
511
611
  #
512
612
  # * `client_id`
@@ -516,7 +616,6 @@ module Aws::WorkSpacesWeb
516
616
  # * `authorize_scopes`
517
617
  #
518
618
  # * `api_version`
519
- #
520
619
  # * For Sign in with Apple:
521
620
  #
522
621
  # * `client_id`
@@ -528,7 +627,6 @@ module Aws::WorkSpacesWeb
528
627
  # * `private_key`
529
628
  #
530
629
  # * `authorize_scopes`
531
- #
532
630
  # * For OIDC providers:
533
631
  #
534
632
  # * `client_id`
@@ -552,7 +650,6 @@ module Aws::WorkSpacesWeb
552
650
  #
553
651
  # * `jwks_uri` *if not available from discovery URL specified by
554
652
  # `oidc_issuer` key*
555
- #
556
653
  # * For SAML providers:
557
654
  #
558
655
  # * `MetadataFile` OR `MetadataURL`
@@ -1021,6 +1118,126 @@ module Aws::WorkSpacesWeb
1021
1118
  include Aws::Structure
1022
1119
  end
1023
1120
 
1121
+ # The pattern configuration for redacting custom data types in session.
1122
+ #
1123
+ # @!attribute [rw] keyword_regex
1124
+ # The keyword regex for the customer pattern. After there is a match
1125
+ # to the pattern regex, the keyword regex is used to search within the
1126
+ # proximity of the match. If there is a keyword match, then the match
1127
+ # is confirmed. If no keyword regex is provided, the pattern regex
1128
+ # match will automatically be confirmed. The format must follow
1129
+ # JavaScript regex format. The pattern must be enclosed between
1130
+ # slashes, and can have flags behind the second slash. For example,
1131
+ # “/ab+c/gi”
1132
+ # @return [String]
1133
+ #
1134
+ # @!attribute [rw] pattern_description
1135
+ # The pattern description for the customer pattern.
1136
+ # @return [String]
1137
+ #
1138
+ # @!attribute [rw] pattern_name
1139
+ # The pattern name for the custom pattern.
1140
+ # @return [String]
1141
+ #
1142
+ # @!attribute [rw] pattern_regex
1143
+ # The pattern regex for the customer pattern. The format must follow
1144
+ # JavaScript regex format. The pattern must be enclosed between
1145
+ # slashes, and can have flags behind the second slash. For example:
1146
+ # “/ab+c/gi”.
1147
+ # @return [String]
1148
+ #
1149
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CustomPattern AWS API Documentation
1150
+ #
1151
+ class CustomPattern < Struct.new(
1152
+ :keyword_regex,
1153
+ :pattern_description,
1154
+ :pattern_name,
1155
+ :pattern_regex)
1156
+ SENSITIVE = [:keyword_regex, :pattern_description, :pattern_name, :pattern_regex]
1157
+ include Aws::Structure
1158
+ end
1159
+
1160
+ # The data protection settings resource that can be associated with a
1161
+ # web portal.
1162
+ #
1163
+ # @!attribute [rw] additional_encryption_context
1164
+ # The additional encryption context of the data protection settings.
1165
+ # @return [Hash<String,String>]
1166
+ #
1167
+ # @!attribute [rw] associated_portal_arns
1168
+ # A list of web portal ARNs that this data protection settings
1169
+ # resource is associated with.
1170
+ # @return [Array<String>]
1171
+ #
1172
+ # @!attribute [rw] creation_date
1173
+ # The creation date timestamp of the data protection settings.
1174
+ # @return [Time]
1175
+ #
1176
+ # @!attribute [rw] customer_managed_key
1177
+ # The customer managed key used to encrypt sensitive information in
1178
+ # the data protection settings.
1179
+ # @return [String]
1180
+ #
1181
+ # @!attribute [rw] data_protection_settings_arn
1182
+ # The ARN of the data protection settings resource.
1183
+ # @return [String]
1184
+ #
1185
+ # @!attribute [rw] description
1186
+ # The description of the data protection settings.
1187
+ # @return [String]
1188
+ #
1189
+ # @!attribute [rw] display_name
1190
+ # The display name of the data protection settings.
1191
+ # @return [String]
1192
+ #
1193
+ # @!attribute [rw] inline_redaction_configuration
1194
+ # The inline redaction configuration for the data protection settings.
1195
+ # @return [Types::InlineRedactionConfiguration]
1196
+ #
1197
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DataProtectionSettings AWS API Documentation
1198
+ #
1199
+ class DataProtectionSettings < Struct.new(
1200
+ :additional_encryption_context,
1201
+ :associated_portal_arns,
1202
+ :creation_date,
1203
+ :customer_managed_key,
1204
+ :data_protection_settings_arn,
1205
+ :description,
1206
+ :display_name,
1207
+ :inline_redaction_configuration)
1208
+ SENSITIVE = [:description, :display_name]
1209
+ include Aws::Structure
1210
+ end
1211
+
1212
+ # The summary of the data protection settings.
1213
+ #
1214
+ # @!attribute [rw] creation_date
1215
+ # The creation date timestamp of the data protection settings.
1216
+ # @return [Time]
1217
+ #
1218
+ # @!attribute [rw] data_protection_settings_arn
1219
+ # The ARN of the data protection settings.
1220
+ # @return [String]
1221
+ #
1222
+ # @!attribute [rw] description
1223
+ # The description of the data protection settings.
1224
+ # @return [String]
1225
+ #
1226
+ # @!attribute [rw] display_name
1227
+ # The display name of the data protection settings.
1228
+ # @return [String]
1229
+ #
1230
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DataProtectionSettingsSummary AWS API Documentation
1231
+ #
1232
+ class DataProtectionSettingsSummary < Struct.new(
1233
+ :creation_date,
1234
+ :data_protection_settings_arn,
1235
+ :description,
1236
+ :display_name)
1237
+ SENSITIVE = [:description, :display_name]
1238
+ include Aws::Structure
1239
+ end
1240
+
1024
1241
  # @!attribute [rw] browser_settings_arn
1025
1242
  # The ARN of the browser settings.
1026
1243
  # @return [String]
@@ -1037,6 +1254,22 @@ module Aws::WorkSpacesWeb
1037
1254
  #
1038
1255
  class DeleteBrowserSettingsResponse < Aws::EmptyStructure; end
1039
1256
 
1257
+ # @!attribute [rw] data_protection_settings_arn
1258
+ # The ARN of the data protection settings.
1259
+ # @return [String]
1260
+ #
1261
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DeleteDataProtectionSettingsRequest AWS API Documentation
1262
+ #
1263
+ class DeleteDataProtectionSettingsRequest < Struct.new(
1264
+ :data_protection_settings_arn)
1265
+ SENSITIVE = []
1266
+ include Aws::Structure
1267
+ end
1268
+
1269
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DeleteDataProtectionSettingsResponse AWS API Documentation
1270
+ #
1271
+ class DeleteDataProtectionSettingsResponse < Aws::EmptyStructure; end
1272
+
1040
1273
  # @!attribute [rw] identity_provider_arn
1041
1274
  # The ARN of the identity provider.
1042
1275
  # @return [String]
@@ -1165,6 +1398,22 @@ module Aws::WorkSpacesWeb
1165
1398
  #
1166
1399
  class DisassociateBrowserSettingsResponse < Aws::EmptyStructure; end
1167
1400
 
1401
+ # @!attribute [rw] portal_arn
1402
+ # The ARN of the web portal.
1403
+ # @return [String]
1404
+ #
1405
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DisassociateDataProtectionSettingsRequest AWS API Documentation
1406
+ #
1407
+ class DisassociateDataProtectionSettingsRequest < Struct.new(
1408
+ :portal_arn)
1409
+ SENSITIVE = []
1410
+ include Aws::Structure
1411
+ end
1412
+
1413
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DisassociateDataProtectionSettingsResponse AWS API Documentation
1414
+ #
1415
+ class DisassociateDataProtectionSettingsResponse < Aws::EmptyStructure; end
1416
+
1168
1417
  # @!attribute [rw] portal_arn
1169
1418
  # The ARN of the web portal.
1170
1419
  # @return [String]
@@ -1290,6 +1539,30 @@ module Aws::WorkSpacesWeb
1290
1539
  include Aws::Structure
1291
1540
  end
1292
1541
 
1542
+ # @!attribute [rw] data_protection_settings_arn
1543
+ # The ARN of the data protection settings.
1544
+ # @return [String]
1545
+ #
1546
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetDataProtectionSettingsRequest AWS API Documentation
1547
+ #
1548
+ class GetDataProtectionSettingsRequest < Struct.new(
1549
+ :data_protection_settings_arn)
1550
+ SENSITIVE = []
1551
+ include Aws::Structure
1552
+ end
1553
+
1554
+ # @!attribute [rw] data_protection_settings
1555
+ # The data protection settings.
1556
+ # @return [Types::DataProtectionSettings]
1557
+ #
1558
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetDataProtectionSettingsResponse AWS API Documentation
1559
+ #
1560
+ class GetDataProtectionSettingsResponse < Struct.new(
1561
+ :data_protection_settings)
1562
+ SENSITIVE = []
1563
+ include Aws::Structure
1564
+ end
1565
+
1293
1566
  # @!attribute [rw] identity_provider_arn
1294
1567
  # The ARN of the identity provider.
1295
1568
  # @return [String]
@@ -1567,7 +1840,6 @@ module Aws::WorkSpacesWeb
1567
1840
  # * `client_secret`
1568
1841
  #
1569
1842
  # * `authorize_scopes`
1570
- #
1571
1843
  # * For Facebook:
1572
1844
  #
1573
1845
  # * `client_id`
@@ -1577,7 +1849,6 @@ module Aws::WorkSpacesWeb
1577
1849
  # * `authorize_scopes`
1578
1850
  #
1579
1851
  # * `api_version`
1580
- #
1581
1852
  # * For Sign in with Apple:
1582
1853
  #
1583
1854
  # * `client_id`
@@ -1589,7 +1860,6 @@ module Aws::WorkSpacesWeb
1589
1860
  # * `private_key`
1590
1861
  #
1591
1862
  # * `authorize_scopes`
1592
- #
1593
1863
  # * For OIDC providers:
1594
1864
  #
1595
1865
  # * `client_id`
@@ -1613,7 +1883,6 @@ module Aws::WorkSpacesWeb
1613
1883
  #
1614
1884
  # * `jwks_uri` *if not available from discovery URL specified by
1615
1885
  # oidc\_issuer key*
1616
- #
1617
1886
  # * For SAML providers:
1618
1887
  #
1619
1888
  # * `MetadataFile` OR `MetadataURL`
@@ -1671,6 +1940,102 @@ module Aws::WorkSpacesWeb
1671
1940
  include Aws::Structure
1672
1941
  end
1673
1942
 
1943
+ # The configuration for in-session inline redaction.
1944
+ #
1945
+ # @!attribute [rw] global_confidence_level
1946
+ # The global confidence level for the inline redaction configuration.
1947
+ # This indicates the certainty of data type matches in the redaction
1948
+ # process. Confidence level 3 means high confidence, and requires a
1949
+ # formatted text pattern match in order for content to be redacted.
1950
+ # Confidence level 2 means medium confidence, and redaction considers
1951
+ # both formatted and unformatted text, and adds keyword associate to
1952
+ # the logic. Confidence level 1 means low confidence, and redaction is
1953
+ # enforced for both formatted pattern + unformatted pattern without
1954
+ # keyword. This is applied to patterns that do not have a
1955
+ # pattern-level confidence level. Defaults to confidence level 2.
1956
+ # @return [Integer]
1957
+ #
1958
+ # @!attribute [rw] global_enforced_urls
1959
+ # The global enforced URL configuration for the inline redaction
1960
+ # configuration. This is applied to patterns that do not have a
1961
+ # pattern-level enforced URL list.
1962
+ # @return [Array<String>]
1963
+ #
1964
+ # @!attribute [rw] global_exempt_urls
1965
+ # The global exempt URL configuration for the inline redaction
1966
+ # configuration. This is applied to patterns that do not have a
1967
+ # pattern-level exempt URL list.
1968
+ # @return [Array<String>]
1969
+ #
1970
+ # @!attribute [rw] inline_redaction_patterns
1971
+ # The inline redaction patterns to be enabled for the inline redaction
1972
+ # configuration.
1973
+ # @return [Array<Types::InlineRedactionPattern>]
1974
+ #
1975
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/InlineRedactionConfiguration AWS API Documentation
1976
+ #
1977
+ class InlineRedactionConfiguration < Struct.new(
1978
+ :global_confidence_level,
1979
+ :global_enforced_urls,
1980
+ :global_exempt_urls,
1981
+ :inline_redaction_patterns)
1982
+ SENSITIVE = [:global_enforced_urls, :global_exempt_urls]
1983
+ include Aws::Structure
1984
+ end
1985
+
1986
+ # The set of patterns that determine the data types redacted in session.
1987
+ #
1988
+ # @!attribute [rw] built_in_pattern_id
1989
+ # The built-in pattern from the list of preconfigured patterns. Either
1990
+ # a customPattern or builtInPatternId is required.
1991
+ # @return [String]
1992
+ #
1993
+ # @!attribute [rw] confidence_level
1994
+ # The confidence level for inline redaction pattern. This indicates
1995
+ # the certainty of data type matches in the redaction process.
1996
+ # Confidence level 3 means high confidence, and requires a formatted
1997
+ # text pattern match in order for content to be redacted. Confidence
1998
+ # level 2 means medium confidence, and redaction considers both
1999
+ # formatted and unformatted text, and adds keyword associate to the
2000
+ # logic. Confidence level 1 means low confidence, and redaction is
2001
+ # enforced for both formatted pattern + unformatted pattern without
2002
+ # keyword. This overrides the global confidence level.
2003
+ # @return [Integer]
2004
+ #
2005
+ # @!attribute [rw] custom_pattern
2006
+ # &gt;The configuration for a custom pattern. Either a customPattern
2007
+ # or builtInPatternId is required.
2008
+ # @return [Types::CustomPattern]
2009
+ #
2010
+ # @!attribute [rw] enforced_urls
2011
+ # The enforced URL configuration for the inline redaction pattern.
2012
+ # This will override the global enforced URL configuration.
2013
+ # @return [Array<String>]
2014
+ #
2015
+ # @!attribute [rw] exempt_urls
2016
+ # The exempt URL configuration for the inline redaction pattern. This
2017
+ # will override the global exempt URL configuration for the inline
2018
+ # redaction pattern.
2019
+ # @return [Array<String>]
2020
+ #
2021
+ # @!attribute [rw] redaction_place_holder
2022
+ # The redaction placeholder that will replace the redacted text in
2023
+ # session for the inline redaction pattern.
2024
+ # @return [Types::RedactionPlaceHolder]
2025
+ #
2026
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/InlineRedactionPattern AWS API Documentation
2027
+ #
2028
+ class InlineRedactionPattern < Struct.new(
2029
+ :built_in_pattern_id,
2030
+ :confidence_level,
2031
+ :custom_pattern,
2032
+ :enforced_urls,
2033
+ :exempt_urls,
2034
+ :redaction_place_holder)
2035
+ SENSITIVE = [:built_in_pattern_id, :enforced_urls, :exempt_urls]
2036
+ include Aws::Structure
2037
+ end
2038
+
1674
2039
  # There is an internal server error.
1675
2040
  #
1676
2041
  # @!attribute [rw] message
@@ -1825,6 +2190,42 @@ module Aws::WorkSpacesWeb
1825
2190
  include Aws::Structure
1826
2191
  end
1827
2192
 
2193
+ # @!attribute [rw] max_results
2194
+ # The maximum number of results to be included in the next page.
2195
+ # @return [Integer]
2196
+ #
2197
+ # @!attribute [rw] next_token
2198
+ # The pagination token used to retrieve the next page of results for
2199
+ # this operation.
2200
+ # @return [String]
2201
+ #
2202
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListDataProtectionSettingsRequest AWS API Documentation
2203
+ #
2204
+ class ListDataProtectionSettingsRequest < Struct.new(
2205
+ :max_results,
2206
+ :next_token)
2207
+ SENSITIVE = []
2208
+ include Aws::Structure
2209
+ end
2210
+
2211
+ # @!attribute [rw] data_protection_settings
2212
+ # The data protection settings.
2213
+ # @return [Array<Types::DataProtectionSettingsSummary>]
2214
+ #
2215
+ # @!attribute [rw] next_token
2216
+ # The pagination token used to retrieve the next page of results for
2217
+ # this operation.
2218
+ # @return [String]
2219
+ #
2220
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListDataProtectionSettingsResponse AWS API Documentation
2221
+ #
2222
+ class ListDataProtectionSettingsResponse < Struct.new(
2223
+ :data_protection_settings,
2224
+ :next_token)
2225
+ SENSITIVE = []
2226
+ include Aws::Structure
2227
+ end
2228
+
1828
2229
  # @!attribute [rw] max_results
1829
2230
  # The maximum number of results to be included in the next page.
1830
2231
  # @return [Integer]
@@ -2312,6 +2713,10 @@ module Aws::WorkSpacesWeb
2312
2713
  # the portal.
2313
2714
  # @return [String]
2314
2715
  #
2716
+ # @!attribute [rw] data_protection_settings_arn
2717
+ # The ARN of the data protection settings.
2718
+ # @return [String]
2719
+ #
2315
2720
  # @!attribute [rw] display_name
2316
2721
  # The name of the web portal.
2317
2722
  # @return [String]
@@ -2376,6 +2781,7 @@ module Aws::WorkSpacesWeb
2376
2781
  :browser_type,
2377
2782
  :creation_date,
2378
2783
  :customer_managed_key,
2784
+ :data_protection_settings_arn,
2379
2785
  :display_name,
2380
2786
  :instance_type,
2381
2787
  :ip_access_settings_arn,
@@ -2424,6 +2830,10 @@ module Aws::WorkSpacesWeb
2424
2830
  # The creation date of the web portal.
2425
2831
  # @return [Time]
2426
2832
  #
2833
+ # @!attribute [rw] data_protection_settings_arn
2834
+ # The ARN of the data protection settings.
2835
+ # @return [String]
2836
+ #
2427
2837
  # @!attribute [rw] display_name
2428
2838
  # The name of the web portal.
2429
2839
  # @return [String]
@@ -2482,6 +2892,7 @@ module Aws::WorkSpacesWeb
2482
2892
  :browser_settings_arn,
2483
2893
  :browser_type,
2484
2894
  :creation_date,
2895
+ :data_protection_settings_arn,
2485
2896
  :display_name,
2486
2897
  :instance_type,
2487
2898
  :ip_access_settings_arn,
@@ -2498,6 +2909,28 @@ module Aws::WorkSpacesWeb
2498
2909
  include Aws::Structure
2499
2910
  end
2500
2911
 
2912
+ # The redaction placeholder that will replace the redacted text in
2913
+ # session.
2914
+ #
2915
+ # @!attribute [rw] redaction_place_holder_text
2916
+ # The redaction placeholder text that will replace the redacted text
2917
+ # in session for the custom text redaction placeholder type.
2918
+ # @return [String]
2919
+ #
2920
+ # @!attribute [rw] redaction_place_holder_type
2921
+ # The redaction placeholder type that will replace the redacted text
2922
+ # in session.
2923
+ # @return [String]
2924
+ #
2925
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/RedactionPlaceHolder AWS API Documentation
2926
+ #
2927
+ class RedactionPlaceHolder < Struct.new(
2928
+ :redaction_place_holder_text,
2929
+ :redaction_place_holder_type)
2930
+ SENSITIVE = [:redaction_place_holder_text]
2931
+ include Aws::Structure
2932
+ end
2933
+
2501
2934
  # The resource cannot be found.
2502
2935
  #
2503
2936
  # @!attribute [rw] message
@@ -2844,6 +3277,61 @@ module Aws::WorkSpacesWeb
2844
3277
  include Aws::Structure
2845
3278
  end
2846
3279
 
3280
+ # @!attribute [rw] client_token
3281
+ # A unique, case-sensitive identifier that you provide to ensure the
3282
+ # idempotency of the request. Idempotency ensures that an API request
3283
+ # completes only once. With an idempotent request, if the original
3284
+ # request completes successfully, subsequent retries with the same
3285
+ # client token return the result from the original successful request.
3286
+ #
3287
+ # If you do not specify a client token, one is automatically generated
3288
+ # by the Amazon Web Services SDK.
3289
+ #
3290
+ # **A suitable default value is auto-generated.** You should normally
3291
+ # not need to pass this option.
3292
+ # @return [String]
3293
+ #
3294
+ # @!attribute [rw] data_protection_settings_arn
3295
+ # The ARN of the data protection settings.
3296
+ # @return [String]
3297
+ #
3298
+ # @!attribute [rw] description
3299
+ # The description of the data protection settings.
3300
+ # @return [String]
3301
+ #
3302
+ # @!attribute [rw] display_name
3303
+ # The display name of the data protection settings.
3304
+ # @return [String]
3305
+ #
3306
+ # @!attribute [rw] inline_redaction_configuration
3307
+ # The inline redaction configuration of the data protection settings
3308
+ # that will be applied to all sessions.
3309
+ # @return [Types::InlineRedactionConfiguration]
3310
+ #
3311
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateDataProtectionSettingsRequest AWS API Documentation
3312
+ #
3313
+ class UpdateDataProtectionSettingsRequest < Struct.new(
3314
+ :client_token,
3315
+ :data_protection_settings_arn,
3316
+ :description,
3317
+ :display_name,
3318
+ :inline_redaction_configuration)
3319
+ SENSITIVE = [:description, :display_name]
3320
+ include Aws::Structure
3321
+ end
3322
+
3323
+ # @!attribute [rw] data_protection_settings
3324
+ # The data protection settings.
3325
+ # @return [Types::DataProtectionSettings]
3326
+ #
3327
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateDataProtectionSettingsResponse AWS API Documentation
3328
+ #
3329
+ class UpdateDataProtectionSettingsResponse < Struct.new(
3330
+ :data_protection_settings)
3331
+ SENSITIVE = []
3332
+ include Aws::Structure
3333
+ end
3334
+
2847
3335
  # @!attribute [rw] client_token
2848
3336
  # A unique, case-sensitive identifier that you provide to ensure the
2849
3337
  # idempotency of the request. Idempotency ensures that an API request
@@ -2873,7 +3361,6 @@ module Aws::WorkSpacesWeb
2873
3361
  # * `client_secret`
2874
3362
  #
2875
3363
  # * `authorize_scopes`
2876
- #
2877
3364
  # * For Facebook:
2878
3365
  #
2879
3366
  # * `client_id`
@@ -2883,7 +3370,6 @@ module Aws::WorkSpacesWeb
2883
3370
  # * `authorize_scopes`
2884
3371
  #
2885
3372
  # * `api_version`
2886
- #
2887
3373
  # * For Sign in with Apple:
2888
3374
  #
2889
3375
  # * `client_id`
@@ -2895,7 +3381,6 @@ module Aws::WorkSpacesWeb
2895
3381
  # * `private_key`
2896
3382
  #
2897
3383
  # * `authorize_scopes`
2898
- #
2899
3384
  # * For OIDC providers:
2900
3385
  #
2901
3386
  # * `client_id`
@@ -2919,7 +3404,6 @@ module Aws::WorkSpacesWeb
2919
3404
  #
2920
3405
  # * `jwks_uri` *if not available from discovery URL specified by
2921
3406
  # `oidc_issuer` key*
2922
- #
2923
3407
  # * For SAML providers:
2924
3408
  #
2925
3409
  # * `MetadataFile` OR `MetadataURL`
@@ -54,7 +54,7 @@ module Aws::WorkSpacesWeb
54
54
  autoload :EndpointProvider, 'aws-sdk-workspacesweb/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-workspacesweb/endpoints'
56
56
 
57
- GEM_VERSION = '1.34.0'
57
+ GEM_VERSION = '1.36.0'
58
58
 
59
59
  end
60
60