aws-sdk-workspacesweb 1.35.0 → 1.37.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.
@@ -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
@@ -1017,6 +1118,126 @@ module Aws::WorkSpacesWeb
1017
1118
  include Aws::Structure
1018
1119
  end
1019
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
+
1020
1241
  # @!attribute [rw] browser_settings_arn
1021
1242
  # The ARN of the browser settings.
1022
1243
  # @return [String]
@@ -1033,6 +1254,22 @@ module Aws::WorkSpacesWeb
1033
1254
  #
1034
1255
  class DeleteBrowserSettingsResponse < Aws::EmptyStructure; end
1035
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
+
1036
1273
  # @!attribute [rw] identity_provider_arn
1037
1274
  # The ARN of the identity provider.
1038
1275
  # @return [String]
@@ -1161,6 +1398,22 @@ module Aws::WorkSpacesWeb
1161
1398
  #
1162
1399
  class DisassociateBrowserSettingsResponse < Aws::EmptyStructure; end
1163
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
+
1164
1417
  # @!attribute [rw] portal_arn
1165
1418
  # The ARN of the web portal.
1166
1419
  # @return [String]
@@ -1286,6 +1539,30 @@ module Aws::WorkSpacesWeb
1286
1539
  include Aws::Structure
1287
1540
  end
1288
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
+
1289
1566
  # @!attribute [rw] identity_provider_arn
1290
1567
  # The ARN of the identity provider.
1291
1568
  # @return [String]
@@ -1663,6 +1940,102 @@ module Aws::WorkSpacesWeb
1663
1940
  include Aws::Structure
1664
1941
  end
1665
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
+
1666
2039
  # There is an internal server error.
1667
2040
  #
1668
2041
  # @!attribute [rw] message
@@ -1817,6 +2190,42 @@ module Aws::WorkSpacesWeb
1817
2190
  include Aws::Structure
1818
2191
  end
1819
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
+
1820
2229
  # @!attribute [rw] max_results
1821
2230
  # The maximum number of results to be included in the next page.
1822
2231
  # @return [Integer]
@@ -2304,6 +2713,10 @@ module Aws::WorkSpacesWeb
2304
2713
  # the portal.
2305
2714
  # @return [String]
2306
2715
  #
2716
+ # @!attribute [rw] data_protection_settings_arn
2717
+ # The ARN of the data protection settings.
2718
+ # @return [String]
2719
+ #
2307
2720
  # @!attribute [rw] display_name
2308
2721
  # The name of the web portal.
2309
2722
  # @return [String]
@@ -2368,6 +2781,7 @@ module Aws::WorkSpacesWeb
2368
2781
  :browser_type,
2369
2782
  :creation_date,
2370
2783
  :customer_managed_key,
2784
+ :data_protection_settings_arn,
2371
2785
  :display_name,
2372
2786
  :instance_type,
2373
2787
  :ip_access_settings_arn,
@@ -2416,6 +2830,10 @@ module Aws::WorkSpacesWeb
2416
2830
  # The creation date of the web portal.
2417
2831
  # @return [Time]
2418
2832
  #
2833
+ # @!attribute [rw] data_protection_settings_arn
2834
+ # The ARN of the data protection settings.
2835
+ # @return [String]
2836
+ #
2419
2837
  # @!attribute [rw] display_name
2420
2838
  # The name of the web portal.
2421
2839
  # @return [String]
@@ -2474,6 +2892,7 @@ module Aws::WorkSpacesWeb
2474
2892
  :browser_settings_arn,
2475
2893
  :browser_type,
2476
2894
  :creation_date,
2895
+ :data_protection_settings_arn,
2477
2896
  :display_name,
2478
2897
  :instance_type,
2479
2898
  :ip_access_settings_arn,
@@ -2490,6 +2909,28 @@ module Aws::WorkSpacesWeb
2490
2909
  include Aws::Structure
2491
2910
  end
2492
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
+
2493
2934
  # The resource cannot be found.
2494
2935
  #
2495
2936
  # @!attribute [rw] message
@@ -2836,6 +3277,61 @@ module Aws::WorkSpacesWeb
2836
3277
  include Aws::Structure
2837
3278
  end
2838
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
+
2839
3335
  # @!attribute [rw] client_token
2840
3336
  # A unique, case-sensitive identifier that you provide to ensure the
2841
3337
  # idempotency of the request. Idempotency ensures that an API request
@@ -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.35.0'
57
+ GEM_VERSION = '1.37.0'
58
58
 
59
59
  end
60
60