aws-sdk-macie2 1.2.0 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -29,6 +31,7 @@ module Aws::Macie2
29
31
  class AcceptInvitationRequest < Struct.new(
30
32
  :invitation_id,
31
33
  :master_account)
34
+ SENSITIVE = []
32
35
  include Aws::Structure
33
36
  end
34
37
 
@@ -50,6 +53,7 @@ module Aws::Macie2
50
53
  class AccessControlList < Struct.new(
51
54
  :allows_public_read_access,
52
55
  :allows_public_write_access)
56
+ SENSITIVE = []
53
57
  include Aws::Structure
54
58
  end
55
59
 
@@ -63,6 +67,7 @@ module Aws::Macie2
63
67
  #
64
68
  class AccessDeniedException < Struct.new(
65
69
  :message)
70
+ SENSITIVE = []
66
71
  include Aws::Structure
67
72
  end
68
73
 
@@ -88,6 +93,7 @@ module Aws::Macie2
88
93
  class AccountDetail < Struct.new(
89
94
  :account_id,
90
95
  :email)
96
+ SENSITIVE = []
91
97
  include Aws::Structure
92
98
  end
93
99
 
@@ -110,6 +116,7 @@ module Aws::Macie2
110
116
  #
111
117
  class AccountLevelPermissions < Struct.new(
112
118
  :block_public_access)
119
+ SENSITIVE = []
113
120
  include Aws::Structure
114
121
  end
115
122
 
@@ -129,21 +136,12 @@ module Aws::Macie2
129
136
  class AdminAccount < Struct.new(
130
137
  :account_id,
131
138
  :status)
139
+ SENSITIVE = []
132
140
  include Aws::Structure
133
141
  end
134
142
 
135
- # For the affected resource:
136
- #
137
- # * The name of the operation that was invoked most recently and
138
- # produced the finding (api).
139
- #
140
- # * The first date and time when any operation was invoked and produced
141
- # the finding (firstSeen).
142
- #
143
- # * The most recent date and time when the specified operation was
144
- # invoked and produced the finding (lastSeen).
145
- #
146
- # All date and time values are in UTC and extended ISO 8601 format.
143
+ # Provides information about an API operation that an entity invoked for
144
+ # an affected resource.
147
145
  #
148
146
  # @!attribute [rw] api
149
147
  # @return [String]
@@ -164,33 +162,14 @@ module Aws::Macie2
164
162
  :api_service_name,
165
163
  :first_seen,
166
164
  :last_seen)
165
+ SENSITIVE = []
167
166
  include Aws::Structure
168
167
  end
169
168
 
170
- # Specifies one or more findings to archive.
171
- #
172
- # @note When making an API call, you may pass ArchiveFindingsRequest
173
- # data as a hash:
174
- #
175
- # {
176
- # finding_ids: ["__string"], # required
177
- # }
178
- #
179
- # @!attribute [rw] finding_ids
180
- # @return [Array<String>]
181
- #
182
- # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ArchiveFindingsRequest AWS API Documentation
183
- #
184
- class ArchiveFindingsRequest < Struct.new(
185
- :finding_ids)
186
- include Aws::Structure
187
- end
188
-
189
- # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ArchiveFindingsResponse AWS API Documentation
190
- #
191
- class ArchiveFindingsResponse < Aws::EmptyStructure; end
192
-
193
- # Reserved for future use.
169
+ # Provides information about an identity that performed an action on an
170
+ # affected resource by using temporary security credentials. The
171
+ # credentials were obtained using the AssumeRole operation of the AWS
172
+ # Security Token Service (AWS STS) API.
194
173
  #
195
174
  # @!attribute [rw] access_key_id
196
175
  # @return [String]
@@ -206,7 +185,7 @@ module Aws::Macie2
206
185
  #
207
186
  # @!attribute [rw] session_context
208
187
  # Provides information about a session that was created for an entity
209
- # who performed an action by using temporary security credentials.
188
+ # that performed an action by using temporary security credentials.
210
189
  # @return [Types::SessionContext]
211
190
  #
212
191
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/AssumedRole AWS API Documentation
@@ -217,10 +196,13 @@ module Aws::Macie2
217
196
  :arn,
218
197
  :principal_id,
219
198
  :session_context)
199
+ SENSITIVE = []
220
200
  include Aws::Structure
221
201
  end
222
202
 
223
- # Reserved for future use.
203
+ # Provides information about an AWS account and entity that performed an
204
+ # action on an affected resource. The action was performed using the
205
+ # credentials for an AWS account other than your own account.
224
206
  #
225
207
  # @!attribute [rw] account_id
226
208
  # @return [String]
@@ -233,10 +215,12 @@ module Aws::Macie2
233
215
  class AwsAccount < Struct.new(
234
216
  :account_id,
235
217
  :principal_id)
218
+ SENSITIVE = []
236
219
  include Aws::Structure
237
220
  end
238
221
 
239
- # Reserved for future use.
222
+ # Provides information about an AWS service that performed an action on
223
+ # an affected resource.
240
224
  #
241
225
  # @!attribute [rw] invoked_by
242
226
  # @return [String]
@@ -245,6 +229,7 @@ module Aws::Macie2
245
229
  #
246
230
  class AwsService < Struct.new(
247
231
  :invoked_by)
232
+ SENSITIVE = []
248
233
  include Aws::Structure
249
234
  end
250
235
 
@@ -277,6 +262,7 @@ module Aws::Macie2
277
262
  :description,
278
263
  :id,
279
264
  :name)
265
+ SENSITIVE = []
280
266
  include Aws::Structure
281
267
  end
282
268
 
@@ -297,6 +283,7 @@ module Aws::Macie2
297
283
  #
298
284
  class BatchGetCustomDataIdentifiersRequest < Struct.new(
299
285
  :ids)
286
+ SENSITIVE = []
300
287
  include Aws::Structure
301
288
  end
302
289
 
@@ -313,6 +300,7 @@ module Aws::Macie2
313
300
  class BatchGetCustomDataIdentifiersResponse < Struct.new(
314
301
  :custom_data_identifiers,
315
302
  :not_found_identifier_ids)
303
+ SENSITIVE = []
316
304
  include Aws::Structure
317
305
  end
318
306
 
@@ -345,11 +333,13 @@ module Aws::Macie2
345
333
  :block_public_policy,
346
334
  :ignore_public_acls,
347
335
  :restrict_public_buckets)
336
+ SENSITIVE = []
348
337
  include Aws::Structure
349
338
  end
350
339
 
351
- # The total number of buckets that are publicly accessible, based on a
352
- # combination of permissions settings for each bucket.
340
+ # Provides information about the number of S3 buckets that are publicly
341
+ # accessible based on a combination of permissions settings for each
342
+ # bucket.
353
343
  #
354
344
  # @!attribute [rw] publicly_accessible
355
345
  # @return [Integer]
@@ -366,12 +356,12 @@ module Aws::Macie2
366
356
  :publicly_accessible,
367
357
  :publicly_readable,
368
358
  :publicly_writable)
359
+ SENSITIVE = []
369
360
  include Aws::Structure
370
361
  end
371
362
 
372
- # The total number of buckets, grouped by server-side encryption type.
373
- # This object also reports the total number of buckets that aren't
374
- # encrypted.
363
+ # Provides information about the number of S3 buckets that use certain
364
+ # types of server-side encryption or don't encrypt objects by default.
375
365
  #
376
366
  # @!attribute [rw] kms_managed
377
367
  # @return [Integer]
@@ -388,11 +378,12 @@ module Aws::Macie2
388
378
  :kms_managed,
389
379
  :s3_managed,
390
380
  :unencrypted)
381
+ SENSITIVE = []
391
382
  include Aws::Structure
392
383
  end
393
384
 
394
- # The total number of buckets that are shared with another AWS account
395
- # or configured to support cross-origin resource sharing (CORS).
385
+ # Provides information about the number of S3 buckets that are shared
386
+ # with other AWS accounts.
396
387
  #
397
388
  # @!attribute [rw] external
398
389
  # @return [Integer]
@@ -409,6 +400,7 @@ module Aws::Macie2
409
400
  :external,
410
401
  :internal,
411
402
  :not_shared)
403
+ SENSITIVE = []
412
404
  include Aws::Structure
413
405
  end
414
406
 
@@ -459,6 +451,7 @@ module Aws::Macie2
459
451
  :lte,
460
452
  :neq,
461
453
  :prefix)
454
+ SENSITIVE = []
462
455
  include Aws::Structure
463
456
  end
464
457
 
@@ -493,6 +486,7 @@ module Aws::Macie2
493
486
  :access_control_list,
494
487
  :block_public_access,
495
488
  :bucket_policy)
489
+ SENSITIVE = []
496
490
  include Aws::Structure
497
491
  end
498
492
 
@@ -521,6 +515,9 @@ module Aws::Macie2
521
515
  # @return [Integer]
522
516
  #
523
517
  # @!attribute [rw] object_count_by_encryption_type
518
+ # Provides information about the number of objects that are in an S3
519
+ # bucket and use certain types of server-side encryption, use
520
+ # client-side encryption, or aren't encrypted.
524
521
  # @return [Types::ObjectCountByEncryptionType]
525
522
  #
526
523
  # @!attribute [rw] public_access
@@ -571,11 +568,12 @@ module Aws::Macie2
571
568
  :size_in_bytes_compressed,
572
569
  :tags,
573
570
  :versioning)
571
+ SENSITIVE = []
574
572
  include Aws::Structure
575
573
  end
576
574
 
577
575
  # The account-level and bucket-level permissions settings for an S3
578
- # bucket, or the bucket that contains an object.
576
+ # bucket.
579
577
  #
580
578
  # @!attribute [rw] account_level_permissions
581
579
  # Provides information about account-level permissions settings that
@@ -592,6 +590,7 @@ module Aws::Macie2
592
590
  class BucketPermissionConfiguration < Struct.new(
593
591
  :account_level_permissions,
594
592
  :bucket_level_permissions)
593
+ SENSITIVE = []
595
594
  include Aws::Structure
596
595
  end
597
596
 
@@ -609,6 +608,7 @@ module Aws::Macie2
609
608
  class BucketPolicy < Struct.new(
610
609
  :allows_public_read_access,
611
610
  :allows_public_write_access)
611
+ SENSITIVE = []
612
612
  include Aws::Structure
613
613
  end
614
614
 
@@ -620,7 +620,7 @@ module Aws::Macie2
620
620
  #
621
621
  # @!attribute [rw] permission_configuration
622
622
  # The account-level and bucket-level permissions settings for an S3
623
- # bucket, or the bucket that contains an object.
623
+ # bucket.
624
624
  # @return [Types::BucketPermissionConfiguration]
625
625
  #
626
626
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/BucketPublicAccess AWS API Documentation
@@ -628,6 +628,7 @@ module Aws::Macie2
628
628
  class BucketPublicAccess < Struct.new(
629
629
  :effective_permission,
630
630
  :permission_configuration)
631
+ SENSITIVE = []
631
632
  include Aws::Structure
632
633
  end
633
634
 
@@ -653,6 +654,7 @@ module Aws::Macie2
653
654
  class BucketSortCriteria < Struct.new(
654
655
  :attribute_name,
655
656
  :order_by)
657
+ SENSITIVE = []
656
658
  include Aws::Structure
657
659
  end
658
660
 
@@ -670,8 +672,8 @@ module Aws::Macie2
670
672
  #
671
673
  # @!attribute [rw] result
672
674
  # Provides detailed information about a sensitive data finding,
673
- # including the types and number of occurrences of the data that was
674
- # found.
675
+ # including the types and number of occurrences of the sensitive data
676
+ # that was found.
675
677
  # @return [Types::ClassificationResult]
676
678
  #
677
679
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ClassificationDetails AWS API Documentation
@@ -681,12 +683,13 @@ module Aws::Macie2
681
683
  :job_arn,
682
684
  :job_id,
683
685
  :result)
686
+ SENSITIVE = []
684
687
  include Aws::Structure
685
688
  end
686
689
 
687
- # Specifies where to export data classification results to, and the
690
+ # Specifies where to store data classification results, and the
688
691
  # encryption settings to use when storing results in that location.
689
- # Currently, you can export classification results only to an S3 bucket.
692
+ # Currently, you can store classification results only in an S3 bucket.
690
693
  #
691
694
  # @note When making an API call, you may pass ClassificationExportConfiguration
692
695
  # data as a hash:
@@ -700,7 +703,7 @@ module Aws::Macie2
700
703
  # }
701
704
  #
702
705
  # @!attribute [rw] s3_destination
703
- # Specifies an S3 bucket to export data classification results to, and
706
+ # Specifies an S3 bucket to store data classification results in, and
704
707
  # the encryption settings to use when storing results in that bucket.
705
708
  # @return [Types::S3Destination]
706
709
  #
@@ -708,12 +711,13 @@ module Aws::Macie2
708
711
  #
709
712
  class ClassificationExportConfiguration < Struct.new(
710
713
  :s3_destination)
714
+ SENSITIVE = []
711
715
  include Aws::Structure
712
716
  end
713
717
 
714
718
  # Provides detailed information about a sensitive data finding,
715
- # including the types and number of occurrences of the data that was
716
- # found.
719
+ # including the types and number of occurrences of the sensitive data
720
+ # that was found.
717
721
  #
718
722
  # @!attribute [rw] custom_data_identifiers
719
723
  # Provides information about the number of occurrences of the data
@@ -744,6 +748,7 @@ module Aws::Macie2
744
748
  :sensitive_data,
745
749
  :size_classified,
746
750
  :status)
751
+ SENSITIVE = []
747
752
  include Aws::Structure
748
753
  end
749
754
 
@@ -760,6 +765,7 @@ module Aws::Macie2
760
765
  class ClassificationResultStatus < Struct.new(
761
766
  :code,
762
767
  :reason)
768
+ SENSITIVE = []
763
769
  include Aws::Structure
764
770
  end
765
771
 
@@ -773,11 +779,15 @@ module Aws::Macie2
773
779
  #
774
780
  class ConflictException < Struct.new(
775
781
  :message)
782
+ SENSITIVE = []
776
783
  include Aws::Structure
777
784
  end
778
785
 
779
786
  # Specifies the scope, schedule, and other settings for a classification
780
- # job.
787
+ # job. You can't delete or change the settings for a classification job
788
+ # after you create it. In Amazon Macie, classification jobs are
789
+ # immutable. This ensures accurate data classification results for
790
+ # audits or investigations.
781
791
  #
782
792
  # @note When making an API call, you may pass CreateClassificationJobRequest
783
793
  # data as a hash:
@@ -911,6 +921,7 @@ module Aws::Macie2
911
921
  :sampling_percentage,
912
922
  :schedule_frequency,
913
923
  :tags)
924
+ SENSITIVE = []
914
925
  include Aws::Structure
915
926
  end
916
927
 
@@ -928,11 +939,15 @@ module Aws::Macie2
928
939
  class CreateClassificationJobResponse < Struct.new(
929
940
  :job_arn,
930
941
  :job_id)
942
+ SENSITIVE = []
931
943
  include Aws::Structure
932
944
  end
933
945
 
934
946
  # Specifies the criteria and other settings for a new custom data
935
- # identifier.
947
+ # identifier. You can't change a custom data identifier after you
948
+ # create it. In Amazon Macie, custom data identifiers are immutable.
949
+ # This ensures accurate data classification results for audits or
950
+ # investigations.
936
951
  #
937
952
  # @note When making an API call, you may pass CreateCustomDataIdentifierRequest
938
953
  # data as a hash:
@@ -990,6 +1005,7 @@ module Aws::Macie2
990
1005
  :name,
991
1006
  :regex,
992
1007
  :tags)
1008
+ SENSITIVE = []
993
1009
  include Aws::Structure
994
1010
  end
995
1011
 
@@ -1003,6 +1019,7 @@ module Aws::Macie2
1003
1019
  #
1004
1020
  class CreateCustomDataIdentifierResponse < Struct.new(
1005
1021
  :custom_data_identifier_id)
1022
+ SENSITIVE = []
1006
1023
  include Aws::Structure
1007
1024
  end
1008
1025
 
@@ -1035,8 +1052,9 @@ module Aws::Macie2
1035
1052
  # }
1036
1053
  #
1037
1054
  # @!attribute [rw] action
1038
- # The action to perform on findings that meet the filter criteria.
1039
- # Valid values are:
1055
+ # The action to perform on findings that meet the filter criteria. To
1056
+ # suppress (automatically archive) findings that meet the criteria,
1057
+ # set this value to ARCHIVE. Valid values are:
1040
1058
  # @return [String]
1041
1059
  #
1042
1060
  # @!attribute [rw] client_token
@@ -1074,6 +1092,7 @@ module Aws::Macie2
1074
1092
  :name,
1075
1093
  :position,
1076
1094
  :tags)
1095
+ SENSITIVE = []
1077
1096
  include Aws::Structure
1078
1097
  end
1079
1098
 
@@ -1091,6 +1110,7 @@ module Aws::Macie2
1091
1110
  class CreateFindingsFilterResponse < Struct.new(
1092
1111
  :arn,
1093
1112
  :id)
1113
+ SENSITIVE = []
1094
1114
  include Aws::Structure
1095
1115
  end
1096
1116
 
@@ -1120,6 +1140,7 @@ module Aws::Macie2
1120
1140
  :account_ids,
1121
1141
  :disable_email_notification,
1122
1142
  :message)
1143
+ SENSITIVE = []
1123
1144
  include Aws::Structure
1124
1145
  end
1125
1146
 
@@ -1133,6 +1154,7 @@ module Aws::Macie2
1133
1154
  #
1134
1155
  class CreateInvitationsResponse < Struct.new(
1135
1156
  :unprocessed_accounts)
1157
+ SENSITIVE = []
1136
1158
  include Aws::Structure
1137
1159
  end
1138
1160
 
@@ -1167,6 +1189,7 @@ module Aws::Macie2
1167
1189
  class CreateMemberRequest < Struct.new(
1168
1190
  :account,
1169
1191
  :tags)
1192
+ SENSITIVE = []
1170
1193
  include Aws::Structure
1171
1194
  end
1172
1195
 
@@ -1180,6 +1203,7 @@ module Aws::Macie2
1180
1203
  #
1181
1204
  class CreateMemberResponse < Struct.new(
1182
1205
  :arn)
1206
+ SENSITIVE = []
1183
1207
  include Aws::Structure
1184
1208
  end
1185
1209
 
@@ -1200,6 +1224,7 @@ module Aws::Macie2
1200
1224
  #
1201
1225
  class CreateSampleFindingsRequest < Struct.new(
1202
1226
  :finding_types)
1227
+ SENSITIVE = []
1203
1228
  include Aws::Structure
1204
1229
  end
1205
1230
 
@@ -1249,6 +1274,7 @@ module Aws::Macie2
1249
1274
  :lt,
1250
1275
  :lte,
1251
1276
  :neq)
1277
+ SENSITIVE = []
1252
1278
  include Aws::Structure
1253
1279
  end
1254
1280
 
@@ -1277,6 +1303,7 @@ module Aws::Macie2
1277
1303
  :description,
1278
1304
  :id,
1279
1305
  :name)
1306
+ SENSITIVE = []
1280
1307
  include Aws::Structure
1281
1308
  end
1282
1309
 
@@ -1285,7 +1312,9 @@ module Aws::Macie2
1285
1312
  # that detected the data for the finding.
1286
1313
  #
1287
1314
  # @!attribute [rw] detections
1288
- # Reserved for future use.
1315
+ # Provides information about custom data identifiers that produced a
1316
+ # sensitive data finding, and the number of occurrences of the data
1317
+ # that each identifier detected.
1289
1318
  # @return [Array<Types::CustomDetection>]
1290
1319
  #
1291
1320
  # @!attribute [rw] total_count
@@ -1296,6 +1325,7 @@ module Aws::Macie2
1296
1325
  class CustomDataIdentifiers < Struct.new(
1297
1326
  :detections,
1298
1327
  :total_count)
1328
+ SENSITIVE = []
1299
1329
  include Aws::Structure
1300
1330
  end
1301
1331
 
@@ -1318,9 +1348,13 @@ module Aws::Macie2
1318
1348
  :arn,
1319
1349
  :count,
1320
1350
  :name)
1351
+ SENSITIVE = []
1321
1352
  include Aws::Structure
1322
1353
  end
1323
1354
 
1355
+ # Specifies that a classification job runs once a day, every day. This
1356
+ # is an empty object.
1357
+ #
1324
1358
  # @api private
1325
1359
  #
1326
1360
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/DailySchedule AWS API Documentation
@@ -1344,6 +1378,7 @@ module Aws::Macie2
1344
1378
  #
1345
1379
  class DeclineInvitationsRequest < Struct.new(
1346
1380
  :account_ids)
1381
+ SENSITIVE = []
1347
1382
  include Aws::Structure
1348
1383
  end
1349
1384
 
@@ -1358,11 +1393,12 @@ module Aws::Macie2
1358
1393
  #
1359
1394
  class DeclineInvitationsResponse < Struct.new(
1360
1395
  :unprocessed_accounts)
1396
+ SENSITIVE = []
1361
1397
  include Aws::Structure
1362
1398
  end
1363
1399
 
1364
1400
  # Provides information about sensitive data that was detected by managed
1365
- # data identifiers and produced a finding.
1401
+ # data identifiers and produced a sensitive data finding.
1366
1402
  #
1367
1403
  # @!attribute [rw] count
1368
1404
  # @return [Integer]
@@ -1375,6 +1411,7 @@ module Aws::Macie2
1375
1411
  class DefaultDetection < Struct.new(
1376
1412
  :count,
1377
1413
  :type)
1414
+ SENSITIVE = []
1378
1415
  include Aws::Structure
1379
1416
  end
1380
1417
 
@@ -1392,6 +1429,7 @@ module Aws::Macie2
1392
1429
  #
1393
1430
  class DeleteCustomDataIdentifierRequest < Struct.new(
1394
1431
  :id)
1432
+ SENSITIVE = []
1395
1433
  include Aws::Structure
1396
1434
  end
1397
1435
 
@@ -1413,6 +1451,7 @@ module Aws::Macie2
1413
1451
  #
1414
1452
  class DeleteFindingsFilterRequest < Struct.new(
1415
1453
  :id)
1454
+ SENSITIVE = []
1416
1455
  include Aws::Structure
1417
1456
  end
1418
1457
 
@@ -1437,6 +1476,7 @@ module Aws::Macie2
1437
1476
  #
1438
1477
  class DeleteInvitationsRequest < Struct.new(
1439
1478
  :account_ids)
1479
+ SENSITIVE = []
1440
1480
  include Aws::Structure
1441
1481
  end
1442
1482
 
@@ -1450,6 +1490,7 @@ module Aws::Macie2
1450
1490
  #
1451
1491
  class DeleteInvitationsResponse < Struct.new(
1452
1492
  :unprocessed_accounts)
1493
+ SENSITIVE = []
1453
1494
  include Aws::Structure
1454
1495
  end
1455
1496
 
@@ -1467,6 +1508,7 @@ module Aws::Macie2
1467
1508
  #
1468
1509
  class DeleteMemberRequest < Struct.new(
1469
1510
  :id)
1511
+ SENSITIVE = []
1470
1512
  include Aws::Structure
1471
1513
  end
1472
1514
 
@@ -1523,6 +1565,7 @@ module Aws::Macie2
1523
1565
  :max_results,
1524
1566
  :next_token,
1525
1567
  :sort_criteria)
1568
+ SENSITIVE = []
1526
1569
  include Aws::Structure
1527
1570
  end
1528
1571
 
@@ -1541,6 +1584,7 @@ module Aws::Macie2
1541
1584
  class DescribeBucketsResponse < Struct.new(
1542
1585
  :buckets,
1543
1586
  :next_token)
1587
+ SENSITIVE = []
1544
1588
  include Aws::Structure
1545
1589
  end
1546
1590
 
@@ -1558,6 +1602,7 @@ module Aws::Macie2
1558
1602
  #
1559
1603
  class DescribeClassificationJobRequest < Struct.new(
1560
1604
  :job_id)
1605
+ SENSITIVE = []
1561
1606
  include Aws::Structure
1562
1607
  end
1563
1608
 
@@ -1588,7 +1633,7 @@ module Aws::Macie2
1588
1633
  # @return [String]
1589
1634
  #
1590
1635
  # @!attribute [rw] job_status
1591
- # The current status of a classification job. Valid values are:
1636
+ # The current status of a classification job. Possible values are:
1592
1637
  # @return [String]
1593
1638
  #
1594
1639
  # @!attribute [rw] job_type
@@ -1642,6 +1687,7 @@ module Aws::Macie2
1642
1687
  :schedule_frequency,
1643
1688
  :statistics,
1644
1689
  :tags)
1690
+ SENSITIVE = []
1645
1691
  include Aws::Structure
1646
1692
  end
1647
1693
 
@@ -1665,6 +1711,7 @@ module Aws::Macie2
1665
1711
  class DescribeOrganizationConfigurationResponse < Struct.new(
1666
1712
  :auto_enable,
1667
1713
  :max_account_limit_reached)
1714
+ SENSITIVE = []
1668
1715
  include Aws::Structure
1669
1716
  end
1670
1717
 
@@ -1692,6 +1739,7 @@ module Aws::Macie2
1692
1739
  #
1693
1740
  class DisableOrganizationAdminAccountRequest < Struct.new(
1694
1741
  :admin_account_id)
1742
+ SENSITIVE = []
1695
1743
  include Aws::Structure
1696
1744
  end
1697
1745
 
@@ -1723,6 +1771,7 @@ module Aws::Macie2
1723
1771
  #
1724
1772
  class DisassociateMemberRequest < Struct.new(
1725
1773
  :id)
1774
+ SENSITIVE = []
1726
1775
  include Aws::Structure
1727
1776
  end
1728
1777
 
@@ -1730,6 +1779,9 @@ module Aws::Macie2
1730
1779
  #
1731
1780
  class DisassociateMemberResponse < Aws::EmptyStructure; end
1732
1781
 
1782
+ # Provides information about the domain name of the device that an
1783
+ # entity used to perform an action on an affected resource.
1784
+ #
1733
1785
  # @!attribute [rw] domain_name
1734
1786
  # @return [String]
1735
1787
  #
@@ -1737,6 +1789,7 @@ module Aws::Macie2
1737
1789
  #
1738
1790
  class DomainDetails < Struct.new(
1739
1791
  :domain_name)
1792
+ SENSITIVE = []
1740
1793
  include Aws::Structure
1741
1794
  end
1742
1795
 
@@ -1765,9 +1818,10 @@ module Aws::Macie2
1765
1818
  # @return [String]
1766
1819
  #
1767
1820
  # @!attribute [rw] finding_publishing_frequency
1768
- # The frequency with which Amazon Macie publishes findings for an
1769
- # account. This includes adding findings to AWS Security Hub and
1770
- # exporting finding events to Amazon CloudWatch. Valid values are:
1821
+ # The frequency with which Amazon Macie publishes updates to policy
1822
+ # findings for an account. This includes publishing updates to AWS
1823
+ # Security Hub and Amazon EventBridge (formerly called Amazon
1824
+ # CloudWatch Events). Valid values are:
1771
1825
  # @return [String]
1772
1826
  #
1773
1827
  # @!attribute [rw] status
@@ -1780,6 +1834,7 @@ module Aws::Macie2
1780
1834
  :client_token,
1781
1835
  :finding_publishing_frequency,
1782
1836
  :status)
1837
+ SENSITIVE = []
1783
1838
  include Aws::Structure
1784
1839
  end
1785
1840
 
@@ -1812,6 +1867,7 @@ module Aws::Macie2
1812
1867
  class EnableOrganizationAdminAccountRequest < Struct.new(
1813
1868
  :admin_account_id,
1814
1869
  :client_token)
1870
+ SENSITIVE = []
1815
1871
  include Aws::Structure
1816
1872
  end
1817
1873
 
@@ -1819,7 +1875,10 @@ module Aws::Macie2
1819
1875
  #
1820
1876
  class EnableOrganizationAdminAccountResponse < Aws::EmptyStructure; end
1821
1877
 
1822
- # Reserved for future use.
1878
+ # Provides information about an identity that performed an action on an
1879
+ # affected resource by using temporary security credentials. The
1880
+ # credentials were obtained using the GetFederationToken operation of
1881
+ # the AWS Security Token Service (AWS STS) API.
1823
1882
  #
1824
1883
  # @!attribute [rw] access_key_id
1825
1884
  # @return [String]
@@ -1835,7 +1894,7 @@ module Aws::Macie2
1835
1894
  #
1836
1895
  # @!attribute [rw] session_context
1837
1896
  # Provides information about a session that was created for an entity
1838
- # who performed an action by using temporary security credentials.
1897
+ # that performed an action by using temporary security credentials.
1839
1898
  # @return [Types::SessionContext]
1840
1899
  #
1841
1900
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/FederatedUser AWS API Documentation
@@ -1846,6 +1905,7 @@ module Aws::Macie2
1846
1905
  :arn,
1847
1906
  :principal_id,
1848
1907
  :session_context)
1908
+ SENSITIVE = []
1849
1909
  include Aws::Structure
1850
1910
  end
1851
1911
 
@@ -1882,7 +1942,7 @@ module Aws::Macie2
1882
1942
  # @return [String]
1883
1943
  #
1884
1944
  # @!attribute [rw] policy_details
1885
- # Provides detailed information about a policy finding.
1945
+ # Provides the details of a policy finding.
1886
1946
  # @return [Types::PolicyDetails]
1887
1947
  #
1888
1948
  # @!attribute [rw] region
@@ -1934,6 +1994,7 @@ module Aws::Macie2
1934
1994
  :title,
1935
1995
  :type,
1936
1996
  :updated_at)
1997
+ SENSITIVE = []
1937
1998
  include Aws::Structure
1938
1999
  end
1939
2000
 
@@ -1941,21 +2002,13 @@ module Aws::Macie2
1941
2002
  # produced a policy finding.
1942
2003
  #
1943
2004
  # @!attribute [rw] action_type
2005
+ # The type of action that occurred for the resource and produced the
2006
+ # policy finding:
1944
2007
  # @return [String]
1945
2008
  #
1946
2009
  # @!attribute [rw] api_call_details
1947
- # For the affected resource:
1948
- #
1949
- # * The name of the operation that was invoked most recently and
1950
- # produced the finding (api).
1951
- #
1952
- # * The first date and time when any operation was invoked and
1953
- # produced the finding (firstSeen).
1954
- #
1955
- # * The most recent date and time when the specified operation was
1956
- # invoked and produced the finding (lastSeen).
1957
- #
1958
- # All date and time values are in UTC and extended ISO 8601 format.
2010
+ # Provides information about an API operation that an entity invoked
2011
+ # for an affected resource.
1959
2012
  # @return [Types::ApiCallDetails]
1960
2013
  #
1961
2014
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/FindingAction AWS API Documentation
@@ -1963,19 +2016,26 @@ module Aws::Macie2
1963
2016
  class FindingAction < Struct.new(
1964
2017
  :action_type,
1965
2018
  :api_call_details)
2019
+ SENSITIVE = []
1966
2020
  include Aws::Structure
1967
2021
  end
1968
2022
 
1969
- # Provides information about an entity who performed an action that
2023
+ # Provides information about an entity that performed an action that
1970
2024
  # produced a policy finding for a resource.
1971
2025
  #
1972
2026
  # @!attribute [rw] domain_details
2027
+ # Provides information about the domain name of the device that an
2028
+ # entity used to perform an action on an affected resource.
1973
2029
  # @return [Types::DomainDetails]
1974
2030
  #
1975
2031
  # @!attribute [rw] ip_address_details
2032
+ # Provides information about the IP address of the device that an
2033
+ # entity used to perform an action on an affected resource.
1976
2034
  # @return [Types::IpAddressDetails]
1977
2035
  #
1978
2036
  # @!attribute [rw] user_identity
2037
+ # Provides information about the type and other characteristics of an
2038
+ # entity that performed an action on an affected resource.
1979
2039
  # @return [Types::UserIdentity]
1980
2040
  #
1981
2041
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/FindingActor AWS API Documentation
@@ -1984,6 +2044,7 @@ module Aws::Macie2
1984
2044
  :domain_details,
1985
2045
  :ip_address_details,
1986
2046
  :user_identity)
2047
+ SENSITIVE = []
1987
2048
  include Aws::Structure
1988
2049
  end
1989
2050
 
@@ -2015,11 +2076,12 @@ module Aws::Macie2
2015
2076
  #
2016
2077
  class FindingCriteria < Struct.new(
2017
2078
  :criterion)
2079
+ SENSITIVE = []
2018
2080
  include Aws::Structure
2019
2081
  end
2020
2082
 
2021
- # Specifies criteria for sorting the results of a query for information
2022
- # about findings.
2083
+ # Specifies criteria for sorting the results of a query that retrieves
2084
+ # aggregated statistical data about findings.
2023
2085
  #
2024
2086
  # @note When making an API call, you may pass FindingStatisticsSortCriteria
2025
2087
  # data as a hash:
@@ -2041,11 +2103,18 @@ module Aws::Macie2
2041
2103
  class FindingStatisticsSortCriteria < Struct.new(
2042
2104
  :attribute_name,
2043
2105
  :order_by)
2106
+ SENSITIVE = []
2044
2107
  include Aws::Structure
2045
2108
  end
2046
2109
 
2047
2110
  # Provides information about a findings filter.
2048
2111
  #
2112
+ # @!attribute [rw] action
2113
+ # The action to perform on findings that meet the filter criteria. To
2114
+ # suppress (automatically archive) findings that meet the criteria,
2115
+ # set this value to ARCHIVE. Valid values are:
2116
+ # @return [String]
2117
+ #
2049
2118
  # @!attribute [rw] arn
2050
2119
  # @return [String]
2051
2120
  #
@@ -2064,15 +2133,17 @@ module Aws::Macie2
2064
2133
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/FindingsFilterListItem AWS API Documentation
2065
2134
  #
2066
2135
  class FindingsFilterListItem < Struct.new(
2136
+ :action,
2067
2137
  :arn,
2068
2138
  :id,
2069
2139
  :name,
2070
2140
  :tags)
2141
+ SENSITIVE = []
2071
2142
  include Aws::Structure
2072
2143
  end
2073
2144
 
2074
- # Specifies an account that's associated with S3 buckets to retrieve
2075
- # aggregated statistical data for.
2145
+ # Specifies an account that's associated with the S3 buckets to
2146
+ # retrieve aggregated statistical data for.
2076
2147
  #
2077
2148
  # @note When making an API call, you may pass GetBucketStatisticsRequest
2078
2149
  # data as a hash:
@@ -2088,6 +2159,7 @@ module Aws::Macie2
2088
2159
  #
2089
2160
  class GetBucketStatisticsRequest < Struct.new(
2090
2161
  :account_id)
2162
+ SENSITIVE = []
2091
2163
  include Aws::Structure
2092
2164
  end
2093
2165
 
@@ -2099,19 +2171,20 @@ module Aws::Macie2
2099
2171
  # @return [Integer]
2100
2172
  #
2101
2173
  # @!attribute [rw] bucket_count_by_effective_permission
2102
- # The total number of buckets that are publicly accessible, based on a
2103
- # combination of permissions settings for each bucket.
2174
+ # Provides information about the number of S3 buckets that are
2175
+ # publicly accessible based on a combination of permissions settings
2176
+ # for each bucket.
2104
2177
  # @return [Types::BucketCountByEffectivePermission]
2105
2178
  #
2106
2179
  # @!attribute [rw] bucket_count_by_encryption_type
2107
- # The total number of buckets, grouped by server-side encryption type.
2108
- # This object also reports the total number of buckets that aren't
2109
- # encrypted.
2180
+ # Provides information about the number of S3 buckets that use certain
2181
+ # types of server-side encryption or don't encrypt objects by
2182
+ # default.
2110
2183
  # @return [Types::BucketCountByEncryptionType]
2111
2184
  #
2112
2185
  # @!attribute [rw] bucket_count_by_shared_access_type
2113
- # The total number of buckets that are shared with another AWS account
2114
- # or configured to support cross-origin resource sharing (CORS).
2186
+ # Provides information about the number of S3 buckets that are shared
2187
+ # with other AWS accounts.
2115
2188
  # @return [Types::BucketCountBySharedAccessType]
2116
2189
  #
2117
2190
  # @!attribute [rw] classifiable_object_count
@@ -2141,6 +2214,7 @@ module Aws::Macie2
2141
2214
  :object_count,
2142
2215
  :size_in_bytes,
2143
2216
  :size_in_bytes_compressed)
2217
+ SENSITIVE = []
2144
2218
  include Aws::Structure
2145
2219
  end
2146
2220
 
@@ -2151,12 +2225,12 @@ module Aws::Macie2
2151
2225
  class GetClassificationExportConfigurationRequest < Aws::EmptyStructure; end
2152
2226
 
2153
2227
  # Provides information about the current configuration settings for
2154
- # exporting data classification results.
2228
+ # storing data classification results.
2155
2229
  #
2156
2230
  # @!attribute [rw] configuration
2157
- # Specifies where to export data classification results to, and the
2231
+ # Specifies where to store data classification results, and the
2158
2232
  # encryption settings to use when storing results in that location.
2159
- # Currently, you can export classification results only to an S3
2233
+ # Currently, you can store classification results only in an S3
2160
2234
  # bucket.
2161
2235
  # @return [Types::ClassificationExportConfiguration]
2162
2236
  #
@@ -2164,6 +2238,7 @@ module Aws::Macie2
2164
2238
  #
2165
2239
  class GetClassificationExportConfigurationResponse < Struct.new(
2166
2240
  :configuration)
2241
+ SENSITIVE = []
2167
2242
  include Aws::Structure
2168
2243
  end
2169
2244
 
@@ -2181,6 +2256,7 @@ module Aws::Macie2
2181
2256
  #
2182
2257
  class GetCustomDataIdentifierRequest < Struct.new(
2183
2258
  :id)
2259
+ SENSITIVE = []
2184
2260
  include Aws::Structure
2185
2261
  end
2186
2262
 
@@ -2237,11 +2313,13 @@ module Aws::Macie2
2237
2313
  :name,
2238
2314
  :regex,
2239
2315
  :tags)
2316
+ SENSITIVE = []
2240
2317
  include Aws::Structure
2241
2318
  end
2242
2319
 
2243
2320
  # Specifies criteria for filtering, grouping, sorting, and paginating
2244
- # the results of a query for information about findings.
2321
+ # the results of a query that retrieves aggregated statistical data
2322
+ # about findings.
2245
2323
  #
2246
2324
  # @note When making an API call, you may pass GetFindingStatisticsRequest
2247
2325
  # data as a hash:
@@ -2279,8 +2357,8 @@ module Aws::Macie2
2279
2357
  # @return [Integer]
2280
2358
  #
2281
2359
  # @!attribute [rw] sort_criteria
2282
- # Specifies criteria for sorting the results of a query for
2283
- # information about findings.
2360
+ # Specifies criteria for sorting the results of a query that retrieves
2361
+ # aggregated statistical data about findings.
2284
2362
  # @return [Types::FindingStatisticsSortCriteria]
2285
2363
  #
2286
2364
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/GetFindingStatisticsRequest AWS API Documentation
@@ -2290,6 +2368,7 @@ module Aws::Macie2
2290
2368
  :group_by,
2291
2369
  :size,
2292
2370
  :sort_criteria)
2371
+ SENSITIVE = []
2293
2372
  include Aws::Structure
2294
2373
  end
2295
2374
 
@@ -2303,6 +2382,7 @@ module Aws::Macie2
2303
2382
  #
2304
2383
  class GetFindingStatisticsResponse < Struct.new(
2305
2384
  :counts_by_group)
2385
+ SENSITIVE = []
2306
2386
  include Aws::Structure
2307
2387
  end
2308
2388
 
@@ -2320,14 +2400,17 @@ module Aws::Macie2
2320
2400
  #
2321
2401
  class GetFindingsFilterRequest < Struct.new(
2322
2402
  :id)
2403
+ SENSITIVE = []
2323
2404
  include Aws::Structure
2324
2405
  end
2325
2406
 
2326
- # Provides information about a findings filter.
2407
+ # Provides information about the criteria and other settings for a
2408
+ # findings filter.
2327
2409
  #
2328
2410
  # @!attribute [rw] action
2329
- # The action to perform on findings that meet the filter criteria.
2330
- # Valid values are:
2411
+ # The action to perform on findings that meet the filter criteria. To
2412
+ # suppress (automatically archive) findings that meet the criteria,
2413
+ # set this value to ARCHIVE. Valid values are:
2331
2414
  # @return [String]
2332
2415
  #
2333
2416
  # @!attribute [rw] arn
@@ -2367,6 +2450,7 @@ module Aws::Macie2
2367
2450
  :name,
2368
2451
  :position,
2369
2452
  :tags)
2453
+ SENSITIVE = []
2370
2454
  include Aws::Structure
2371
2455
  end
2372
2456
 
@@ -2396,6 +2480,7 @@ module Aws::Macie2
2396
2480
  class GetFindingsRequest < Struct.new(
2397
2481
  :finding_ids,
2398
2482
  :sort_criteria)
2483
+ SENSITIVE = []
2399
2484
  include Aws::Structure
2400
2485
  end
2401
2486
 
@@ -2409,6 +2494,7 @@ module Aws::Macie2
2409
2494
  #
2410
2495
  class GetFindingsResponse < Struct.new(
2411
2496
  :findings)
2497
+ SENSITIVE = []
2412
2498
  include Aws::Structure
2413
2499
  end
2414
2500
 
@@ -2429,6 +2515,7 @@ module Aws::Macie2
2429
2515
  #
2430
2516
  class GetInvitationsCountResponse < Struct.new(
2431
2517
  :invitations_count)
2518
+ SENSITIVE = []
2432
2519
  include Aws::Structure
2433
2520
  end
2434
2521
 
@@ -2445,9 +2532,10 @@ module Aws::Macie2
2445
2532
  # @return [Time]
2446
2533
  #
2447
2534
  # @!attribute [rw] finding_publishing_frequency
2448
- # The frequency with which Amazon Macie publishes findings for an
2449
- # account. This includes adding findings to AWS Security Hub and
2450
- # exporting finding events to Amazon CloudWatch. Valid values are:
2535
+ # The frequency with which Amazon Macie publishes updates to policy
2536
+ # findings for an account. This includes publishing updates to AWS
2537
+ # Security Hub and Amazon EventBridge (formerly called Amazon
2538
+ # CloudWatch Events). Valid values are:
2451
2539
  # @return [String]
2452
2540
  #
2453
2541
  # @!attribute [rw] service_role
@@ -2468,6 +2556,7 @@ module Aws::Macie2
2468
2556
  :service_role,
2469
2557
  :status,
2470
2558
  :updated_at)
2559
+ SENSITIVE = []
2471
2560
  include Aws::Structure
2472
2561
  end
2473
2562
 
@@ -2491,6 +2580,7 @@ module Aws::Macie2
2491
2580
  #
2492
2581
  class GetMasterAccountResponse < Struct.new(
2493
2582
  :master)
2583
+ SENSITIVE = []
2494
2584
  include Aws::Structure
2495
2585
  end
2496
2586
 
@@ -2508,6 +2598,7 @@ module Aws::Macie2
2508
2598
  #
2509
2599
  class GetMemberRequest < Struct.new(
2510
2600
  :id)
2601
+ SENSITIVE = []
2511
2602
  include Aws::Structure
2512
2603
  end
2513
2604
 
@@ -2555,6 +2646,7 @@ module Aws::Macie2
2555
2646
  :relationship_status,
2556
2647
  :tags,
2557
2648
  :updated_at)
2649
+ SENSITIVE = []
2558
2650
  include Aws::Structure
2559
2651
  end
2560
2652
 
@@ -2568,14 +2660,15 @@ module Aws::Macie2
2568
2660
  # {
2569
2661
  # filter_by: [
2570
2662
  # {
2571
- # key: "accountId", # accepts accountId
2663
+ # comparator: "GT", # accepts GT, GTE, LT, LTE, EQ, NE, CONTAINS
2664
+ # key: "accountId", # accepts accountId, serviceLimit, freeTrialStartDate, total
2572
2665
  # values: ["__string"],
2573
2666
  # },
2574
2667
  # ],
2575
2668
  # max_results: 1,
2576
2669
  # next_token: "__string",
2577
2670
  # sort_by: {
2578
- # key: "accountId", # accepts accountId, total
2671
+ # key: "accountId", # accepts accountId, total, serviceLimitValue, freeTrialStartDate
2579
2672
  # order_by: "ASC", # accepts ASC, DESC
2580
2673
  # },
2581
2674
  # }
@@ -2601,6 +2694,7 @@ module Aws::Macie2
2601
2694
  :max_results,
2602
2695
  :next_token,
2603
2696
  :sort_by)
2697
+ SENSITIVE = []
2604
2698
  include Aws::Structure
2605
2699
  end
2606
2700
 
@@ -2618,6 +2712,7 @@ module Aws::Macie2
2618
2712
  class GetUsageStatisticsResponse < Struct.new(
2619
2713
  :next_token,
2620
2714
  :records)
2715
+ SENSITIVE = []
2621
2716
  include Aws::Structure
2622
2717
  end
2623
2718
 
@@ -2637,11 +2732,12 @@ module Aws::Macie2
2637
2732
  #
2638
2733
  class GetUsageTotalsResponse < Struct.new(
2639
2734
  :usage_totals)
2735
+ SENSITIVE = []
2640
2736
  include Aws::Structure
2641
2737
  end
2642
2738
 
2643
- # Provides a group of results for a query that retrieved information
2644
- # about findings.
2739
+ # Provides a group of results for a query that retrieved aggregated
2740
+ # statistical data about findings.
2645
2741
  #
2646
2742
  # @!attribute [rw] count
2647
2743
  # @return [Integer]
@@ -2654,10 +2750,12 @@ module Aws::Macie2
2654
2750
  class GroupCount < Struct.new(
2655
2751
  :count,
2656
2752
  :group_key)
2753
+ SENSITIVE = []
2657
2754
  include Aws::Structure
2658
2755
  end
2659
2756
 
2660
- # Reserved for future use.
2757
+ # Provides information about an AWS Identity and Access Management (IAM)
2758
+ # user who performed an action on an affected resource.
2661
2759
  #
2662
2760
  # @!attribute [rw] account_id
2663
2761
  # @return [String]
@@ -2678,6 +2776,7 @@ module Aws::Macie2
2678
2776
  :arn,
2679
2777
  :principal_id,
2680
2778
  :user_name)
2779
+ SENSITIVE = []
2681
2780
  include Aws::Structure
2682
2781
  end
2683
2782
 
@@ -2691,6 +2790,7 @@ module Aws::Macie2
2691
2790
  #
2692
2791
  class InternalServerException < Struct.new(
2693
2792
  :message)
2793
+ SENSITIVE = []
2694
2794
  include Aws::Structure
2695
2795
  end
2696
2796
 
@@ -2719,26 +2819,33 @@ module Aws::Macie2
2719
2819
  :invitation_id,
2720
2820
  :invited_at,
2721
2821
  :relationship_status)
2822
+ SENSITIVE = []
2722
2823
  include Aws::Structure
2723
2824
  end
2724
2825
 
2826
+ # Provides information about the IP address of the device that an entity
2827
+ # used to perform an action on an affected resource.
2828
+ #
2725
2829
  # @!attribute [rw] ip_address_v4
2726
2830
  # @return [String]
2727
2831
  #
2728
2832
  # @!attribute [rw] ip_city
2729
- # Reserved for future use.
2833
+ # Provides information about the city that an IP address originated
2834
+ # from.
2730
2835
  # @return [Types::IpCity]
2731
2836
  #
2732
2837
  # @!attribute [rw] ip_country
2733
- # Reserved for future use.
2838
+ # Provides information about the country that an IP address originated
2839
+ # from.
2734
2840
  # @return [Types::IpCountry]
2735
2841
  #
2736
2842
  # @!attribute [rw] ip_geo_location
2737
- # Reserved for future use.
2843
+ # Provides geographic coordinates that indicate where a specified IP
2844
+ # address originated from.
2738
2845
  # @return [Types::IpGeoLocation]
2739
2846
  #
2740
2847
  # @!attribute [rw] ip_owner
2741
- # Reserved for future use.
2848
+ # Provides information about the registered owner of an IP address.
2742
2849
  # @return [Types::IpOwner]
2743
2850
  #
2744
2851
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/IpAddressDetails AWS API Documentation
@@ -2749,10 +2856,12 @@ module Aws::Macie2
2749
2856
  :ip_country,
2750
2857
  :ip_geo_location,
2751
2858
  :ip_owner)
2859
+ SENSITIVE = []
2752
2860
  include Aws::Structure
2753
2861
  end
2754
2862
 
2755
- # Reserved for future use.
2863
+ # Provides information about the city that an IP address originated
2864
+ # from.
2756
2865
  #
2757
2866
  # @!attribute [rw] name
2758
2867
  # @return [String]
@@ -2761,10 +2870,12 @@ module Aws::Macie2
2761
2870
  #
2762
2871
  class IpCity < Struct.new(
2763
2872
  :name)
2873
+ SENSITIVE = []
2764
2874
  include Aws::Structure
2765
2875
  end
2766
2876
 
2767
- # Reserved for future use.
2877
+ # Provides information about the country that an IP address originated
2878
+ # from.
2768
2879
  #
2769
2880
  # @!attribute [rw] code
2770
2881
  # @return [String]
@@ -2777,10 +2888,12 @@ module Aws::Macie2
2777
2888
  class IpCountry < Struct.new(
2778
2889
  :code,
2779
2890
  :name)
2891
+ SENSITIVE = []
2780
2892
  include Aws::Structure
2781
2893
  end
2782
2894
 
2783
- # Reserved for future use.
2895
+ # Provides geographic coordinates that indicate where a specified IP
2896
+ # address originated from.
2784
2897
  #
2785
2898
  # @!attribute [rw] lat
2786
2899
  # @return [Float]
@@ -2793,10 +2906,11 @@ module Aws::Macie2
2793
2906
  class IpGeoLocation < Struct.new(
2794
2907
  :lat,
2795
2908
  :lon)
2909
+ SENSITIVE = []
2796
2910
  include Aws::Structure
2797
2911
  end
2798
2912
 
2799
- # Reserved for future use.
2913
+ # Provides information about the registered owner of an IP address.
2800
2914
  #
2801
2915
  # @!attribute [rw] asn
2802
2916
  # @return [String]
@@ -2817,6 +2931,7 @@ module Aws::Macie2
2817
2931
  :asn_org,
2818
2932
  :isp,
2819
2933
  :org)
2934
+ SENSITIVE = []
2820
2935
  include Aws::Structure
2821
2936
  end
2822
2937
 
@@ -2837,14 +2952,18 @@ module Aws::Macie2
2837
2952
  # }
2838
2953
  #
2839
2954
  # @!attribute [rw] daily_schedule
2955
+ # Specifies that a classification job runs once a day, every day. This
2956
+ # is an empty object.
2840
2957
  # @return [Types::DailySchedule]
2841
2958
  #
2842
2959
  # @!attribute [rw] monthly_schedule
2843
- # Run the job once a month, on a specific day of the month. This value
2844
- # can be an integer from 1 through 30.
2960
+ # Specifies a monthly recurrence pattern for running a classification
2961
+ # job.
2845
2962
  # @return [Types::MonthlySchedule]
2846
2963
  #
2847
2964
  # @!attribute [rw] weekly_schedule
2965
+ # Specifies a weekly recurrence pattern for running a classification
2966
+ # job.
2848
2967
  # @return [Types::WeeklySchedule]
2849
2968
  #
2850
2969
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/JobScheduleFrequency AWS API Documentation
@@ -2853,11 +2972,12 @@ module Aws::Macie2
2853
2972
  :daily_schedule,
2854
2973
  :monthly_schedule,
2855
2974
  :weekly_schedule)
2975
+ SENSITIVE = []
2856
2976
  include Aws::Structure
2857
2977
  end
2858
2978
 
2859
- # Specifies one or more conditions that determine which objects a
2860
- # classification job analyzes.
2979
+ # Specifies a property- or tag-based condition that defines criteria for
2980
+ # including or excluding objects from a classification job.
2861
2981
  #
2862
2982
  # @note When making an API call, you may pass JobScopeTerm
2863
2983
  # data as a hash:
@@ -2896,10 +3016,12 @@ module Aws::Macie2
2896
3016
  class JobScopeTerm < Struct.new(
2897
3017
  :simple_scope_term,
2898
3018
  :tag_scope_term)
3019
+ SENSITIVE = []
2899
3020
  include Aws::Structure
2900
3021
  end
2901
3022
 
2902
- # Reserved for future use.
3023
+ # Specifies one or more property- and tag-based conditions that define
3024
+ # criteria for including or excluding objects from a classification job.
2903
3025
  #
2904
3026
  # @note When making an API call, you may pass JobScopingBlock
2905
3027
  # data as a hash:
@@ -2934,6 +3056,7 @@ module Aws::Macie2
2934
3056
  #
2935
3057
  class JobScopingBlock < Struct.new(
2936
3058
  :and)
3059
+ SENSITIVE = []
2937
3060
  include Aws::Structure
2938
3061
  end
2939
3062
 
@@ -2950,7 +3073,7 @@ module Aws::Macie2
2950
3073
  # @return [String]
2951
3074
  #
2952
3075
  # @!attribute [rw] job_status
2953
- # The current status of a classification job. Valid values are:
3076
+ # The current status of a classification job. Possible values are:
2954
3077
  # @return [String]
2955
3078
  #
2956
3079
  # @!attribute [rw] job_type
@@ -2969,6 +3092,7 @@ module Aws::Macie2
2969
3092
  :job_status,
2970
3093
  :job_type,
2971
3094
  :name)
3095
+ SENSITIVE = []
2972
3096
  include Aws::Structure
2973
3097
  end
2974
3098
 
@@ -2987,6 +3111,7 @@ module Aws::Macie2
2987
3111
  class KeyValuePair < Struct.new(
2988
3112
  :key,
2989
3113
  :value)
3114
+ SENSITIVE = []
2990
3115
  include Aws::Structure
2991
3116
  end
2992
3117
 
@@ -3044,6 +3169,7 @@ module Aws::Macie2
3044
3169
  :max_results,
3045
3170
  :next_token,
3046
3171
  :sort_criteria)
3172
+ SENSITIVE = []
3047
3173
  include Aws::Structure
3048
3174
  end
3049
3175
 
@@ -3061,6 +3187,7 @@ module Aws::Macie2
3061
3187
  class ListClassificationJobsResponse < Struct.new(
3062
3188
  :items,
3063
3189
  :next_token)
3190
+ SENSITIVE = []
3064
3191
  include Aws::Structure
3065
3192
  end
3066
3193
 
@@ -3086,6 +3213,7 @@ module Aws::Macie2
3086
3213
  class ListCustomDataIdentifiersRequest < Struct.new(
3087
3214
  :max_results,
3088
3215
  :next_token)
3216
+ SENSITIVE = []
3089
3217
  include Aws::Structure
3090
3218
  end
3091
3219
 
@@ -3103,6 +3231,7 @@ module Aws::Macie2
3103
3231
  class ListCustomDataIdentifiersResponse < Struct.new(
3104
3232
  :items,
3105
3233
  :next_token)
3234
+ SENSITIVE = []
3106
3235
  include Aws::Structure
3107
3236
  end
3108
3237
 
@@ -3125,6 +3254,7 @@ module Aws::Macie2
3125
3254
  class ListFindingsFiltersRequest < Struct.new(
3126
3255
  :max_results,
3127
3256
  :next_token)
3257
+ SENSITIVE = []
3128
3258
  include Aws::Structure
3129
3259
  end
3130
3260
 
@@ -3141,6 +3271,7 @@ module Aws::Macie2
3141
3271
  class ListFindingsFiltersResponse < Struct.new(
3142
3272
  :findings_filter_list_items,
3143
3273
  :next_token)
3274
+ SENSITIVE = []
3144
3275
  include Aws::Structure
3145
3276
  end
3146
3277
 
@@ -3194,6 +3325,7 @@ module Aws::Macie2
3194
3325
  :max_results,
3195
3326
  :next_token,
3196
3327
  :sort_criteria)
3328
+ SENSITIVE = []
3197
3329
  include Aws::Structure
3198
3330
  end
3199
3331
 
@@ -3211,6 +3343,7 @@ module Aws::Macie2
3211
3343
  class ListFindingsResponse < Struct.new(
3212
3344
  :finding_ids,
3213
3345
  :next_token)
3346
+ SENSITIVE = []
3214
3347
  include Aws::Structure
3215
3348
  end
3216
3349
 
@@ -3233,6 +3366,7 @@ module Aws::Macie2
3233
3366
  class ListInvitationsRequest < Struct.new(
3234
3367
  :max_results,
3235
3368
  :next_token)
3369
+ SENSITIVE = []
3236
3370
  include Aws::Structure
3237
3371
  end
3238
3372
 
@@ -3250,6 +3384,7 @@ module Aws::Macie2
3250
3384
  class ListInvitationsResponse < Struct.new(
3251
3385
  :invitations,
3252
3386
  :next_token)
3387
+ SENSITIVE = []
3253
3388
  include Aws::Structure
3254
3389
  end
3255
3390
 
@@ -3287,6 +3422,7 @@ module Aws::Macie2
3287
3422
  class ListJobsFilterCriteria < Struct.new(
3288
3423
  :excludes,
3289
3424
  :includes)
3425
+ SENSITIVE = []
3290
3426
  include Aws::Structure
3291
3427
  end
3292
3428
 
@@ -3320,6 +3456,7 @@ module Aws::Macie2
3320
3456
  :comparator,
3321
3457
  :key,
3322
3458
  :values)
3459
+ SENSITIVE = []
3323
3460
  include Aws::Structure
3324
3461
  end
3325
3462
 
@@ -3346,6 +3483,7 @@ module Aws::Macie2
3346
3483
  class ListJobsSortCriteria < Struct.new(
3347
3484
  :attribute_name,
3348
3485
  :order_by)
3486
+ SENSITIVE = []
3349
3487
  include Aws::Structure
3350
3488
  end
3351
3489
 
@@ -3373,6 +3511,7 @@ module Aws::Macie2
3373
3511
  :max_results,
3374
3512
  :next_token,
3375
3513
  :only_associated)
3514
+ SENSITIVE = []
3376
3515
  include Aws::Structure
3377
3516
  end
3378
3517
 
@@ -3390,6 +3529,7 @@ module Aws::Macie2
3390
3529
  class ListMembersResponse < Struct.new(
3391
3530
  :members,
3392
3531
  :next_token)
3532
+ SENSITIVE = []
3393
3533
  include Aws::Structure
3394
3534
  end
3395
3535
 
@@ -3412,6 +3552,7 @@ module Aws::Macie2
3412
3552
  class ListOrganizationAdminAccountsRequest < Struct.new(
3413
3553
  :max_results,
3414
3554
  :next_token)
3555
+ SENSITIVE = []
3415
3556
  include Aws::Structure
3416
3557
  end
3417
3558
 
@@ -3429,6 +3570,7 @@ module Aws::Macie2
3429
3570
  class ListOrganizationAdminAccountsResponse < Struct.new(
3430
3571
  :admin_accounts,
3431
3572
  :next_token)
3573
+ SENSITIVE = []
3432
3574
  include Aws::Structure
3433
3575
  end
3434
3576
 
@@ -3446,6 +3588,7 @@ module Aws::Macie2
3446
3588
  #
3447
3589
  class ListTagsForResourceRequest < Struct.new(
3448
3590
  :resource_arn)
3591
+ SENSITIVE = []
3449
3592
  include Aws::Structure
3450
3593
  end
3451
3594
 
@@ -3463,6 +3606,7 @@ module Aws::Macie2
3463
3606
  #
3464
3607
  class ListTagsForResourceResponse < Struct.new(
3465
3608
  :tags)
3609
+ SENSITIVE = []
3466
3610
  include Aws::Structure
3467
3611
  end
3468
3612
 
@@ -3510,11 +3654,12 @@ module Aws::Macie2
3510
3654
  :relationship_status,
3511
3655
  :tags,
3512
3656
  :updated_at)
3657
+ SENSITIVE = []
3513
3658
  include Aws::Structure
3514
3659
  end
3515
3660
 
3516
- # Run the job once a month, on a specific day of the month. This value
3517
- # can be an integer from 1 through 30.
3661
+ # Specifies a monthly recurrence pattern for running a classification
3662
+ # job.
3518
3663
  #
3519
3664
  # @note When making an API call, you may pass MonthlySchedule
3520
3665
  # data as a hash:
@@ -3530,9 +3675,14 @@ module Aws::Macie2
3530
3675
  #
3531
3676
  class MonthlySchedule < Struct.new(
3532
3677
  :day_of_month)
3678
+ SENSITIVE = []
3533
3679
  include Aws::Structure
3534
3680
  end
3535
3681
 
3682
+ # Provides information about the number of objects that are in an S3
3683
+ # bucket and use certain types of server-side encryption, use
3684
+ # client-side encryption, or aren't encrypted.
3685
+ #
3536
3686
  # @!attribute [rw] customer_managed
3537
3687
  # @return [Integer]
3538
3688
  #
@@ -3552,10 +3702,11 @@ module Aws::Macie2
3552
3702
  :kms_managed,
3553
3703
  :s3_managed,
3554
3704
  :unencrypted)
3705
+ SENSITIVE = []
3555
3706
  include Aws::Structure
3556
3707
  end
3557
3708
 
3558
- # Provides detailed information about a policy finding.
3709
+ # Provides the details of a policy finding.
3559
3710
  #
3560
3711
  # @!attribute [rw] action
3561
3712
  # Provides information about an action that occurred for a resource
@@ -3563,7 +3714,7 @@ module Aws::Macie2
3563
3714
  # @return [Types::FindingAction]
3564
3715
  #
3565
3716
  # @!attribute [rw] actor
3566
- # Provides information about an entity who performed an action that
3717
+ # Provides information about an entity that performed an action that
3567
3718
  # produced a policy finding for a resource.
3568
3719
  # @return [Types::FindingActor]
3569
3720
  #
@@ -3572,12 +3723,13 @@ module Aws::Macie2
3572
3723
  class PolicyDetails < Struct.new(
3573
3724
  :action,
3574
3725
  :actor)
3726
+ SENSITIVE = []
3575
3727
  include Aws::Structure
3576
3728
  end
3577
3729
 
3578
- # Specifies where to export data classification results to, and the
3730
+ # Specifies where to store data classification results, and the
3579
3731
  # encryption settings to use when storing results in that location.
3580
- # Currently, you can export classification results only to an S3 bucket.
3732
+ # Currently, you can store classification results only in an S3 bucket.
3581
3733
  #
3582
3734
  # @note When making an API call, you may pass PutClassificationExportConfigurationRequest
3583
3735
  # data as a hash:
@@ -3593,9 +3745,9 @@ module Aws::Macie2
3593
3745
  # }
3594
3746
  #
3595
3747
  # @!attribute [rw] configuration
3596
- # Specifies where to export data classification results to, and the
3748
+ # Specifies where to store data classification results, and the
3597
3749
  # encryption settings to use when storing results in that location.
3598
- # Currently, you can export classification results only to an S3
3750
+ # Currently, you can store classification results only in an S3
3599
3751
  # bucket.
3600
3752
  # @return [Types::ClassificationExportConfiguration]
3601
3753
  #
@@ -3603,16 +3755,17 @@ module Aws::Macie2
3603
3755
  #
3604
3756
  class PutClassificationExportConfigurationRequest < Struct.new(
3605
3757
  :configuration)
3758
+ SENSITIVE = []
3606
3759
  include Aws::Structure
3607
3760
  end
3608
3761
 
3609
- # Provides information about updated settings for exporting data
3762
+ # Provides information about updated settings for storing data
3610
3763
  # classification results.
3611
3764
  #
3612
3765
  # @!attribute [rw] configuration
3613
- # Specifies where to export data classification results to, and the
3766
+ # Specifies where to store data classification results, and the
3614
3767
  # encryption settings to use when storing results in that location.
3615
- # Currently, you can export classification results only to an S3
3768
+ # Currently, you can store classification results only in an S3
3616
3769
  # bucket.
3617
3770
  # @return [Types::ClassificationExportConfiguration]
3618
3771
  #
@@ -3620,6 +3773,7 @@ module Aws::Macie2
3620
3773
  #
3621
3774
  class PutClassificationExportConfigurationResponse < Struct.new(
3622
3775
  :configuration)
3776
+ SENSITIVE = []
3623
3777
  include Aws::Structure
3624
3778
  end
3625
3779
 
@@ -3642,6 +3796,7 @@ module Aws::Macie2
3642
3796
  :replicated,
3643
3797
  :replicated_externally,
3644
3798
  :replication_accounts)
3799
+ SENSITIVE = []
3645
3800
  include Aws::Structure
3646
3801
  end
3647
3802
 
@@ -3655,6 +3810,7 @@ module Aws::Macie2
3655
3810
  #
3656
3811
  class ResourceNotFoundException < Struct.new(
3657
3812
  :message)
3813
+ SENSITIVE = []
3658
3814
  include Aws::Structure
3659
3815
  end
3660
3816
 
@@ -3673,6 +3829,7 @@ module Aws::Macie2
3673
3829
  class ResourcesAffected < Struct.new(
3674
3830
  :s3_bucket,
3675
3831
  :s3_object)
3832
+ SENSITIVE = []
3676
3833
  include Aws::Structure
3677
3834
  end
3678
3835
 
@@ -3702,7 +3859,9 @@ module Aws::Macie2
3702
3859
  # @return [Types::BucketPublicAccess]
3703
3860
  #
3704
3861
  # @!attribute [rw] tags
3705
- # Reserved for future use.
3862
+ # Provides information about the tags that are associated with an S3
3863
+ # bucket or object. Each tag consists of a required tag key and an
3864
+ # associated tag value.
3706
3865
  # @return [Array<Types::KeyValuePair>]
3707
3866
  #
3708
3867
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/S3Bucket AWS API Documentation
@@ -3715,6 +3874,7 @@ module Aws::Macie2
3715
3874
  :owner,
3716
3875
  :public_access,
3717
3876
  :tags)
3877
+ SENSITIVE = []
3718
3878
  include Aws::Structure
3719
3879
  end
3720
3880
 
@@ -3740,6 +3900,7 @@ module Aws::Macie2
3740
3900
  class S3BucketDefinitionForJob < Struct.new(
3741
3901
  :account_id,
3742
3902
  :buckets)
3903
+ SENSITIVE = []
3743
3904
  include Aws::Structure
3744
3905
  end
3745
3906
 
@@ -3756,10 +3917,11 @@ module Aws::Macie2
3756
3917
  class S3BucketOwner < Struct.new(
3757
3918
  :display_name,
3758
3919
  :id)
3920
+ SENSITIVE = []
3759
3921
  include Aws::Structure
3760
3922
  end
3761
3923
 
3762
- # Specifies an S3 bucket to export data classification results to, and
3924
+ # Specifies an S3 bucket to store data classification results in, and
3763
3925
  # the encryption settings to use when storing results in that bucket.
3764
3926
  #
3765
3927
  # @note When making an API call, you may pass S3Destination
@@ -3786,6 +3948,7 @@ module Aws::Macie2
3786
3948
  :bucket_name,
3787
3949
  :key_prefix,
3788
3950
  :kms_key_arn)
3951
+ SENSITIVE = []
3789
3952
  include Aws::Structure
3790
3953
  end
3791
3954
 
@@ -3854,6 +4017,9 @@ module Aws::Macie2
3854
4017
  # @return [Array<Types::S3BucketDefinitionForJob>]
3855
4018
  #
3856
4019
  # @!attribute [rw] scoping
4020
+ # Specifies one or more property- and tag-based conditions that refine
4021
+ # the scope of a classification job. These conditions define criteria
4022
+ # that determine which objects a job analyzes.
3857
4023
  # @return [Types::Scoping]
3858
4024
  #
3859
4025
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/S3JobDefinition AWS API Documentation
@@ -3861,6 +4027,7 @@ module Aws::Macie2
3861
4027
  class S3JobDefinition < Struct.new(
3862
4028
  :bucket_definitions,
3863
4029
  :scoping)
4030
+ SENSITIVE = []
3864
4031
  include Aws::Structure
3865
4032
  end
3866
4033
 
@@ -3896,11 +4063,13 @@ module Aws::Macie2
3896
4063
  # @return [Integer]
3897
4064
  #
3898
4065
  # @!attribute [rw] storage_class
3899
- # The storage class of the S3 bucket or object. Valid values are:
4066
+ # The storage class of the S3 bucket or object. Possible values are:
3900
4067
  # @return [String]
3901
4068
  #
3902
4069
  # @!attribute [rw] tags
3903
- # Reserved for future use.
4070
+ # Provides information about the tags that are associated with an S3
4071
+ # bucket or object. Each tag consists of a required tag key and an
4072
+ # associated tag value.
3904
4073
  # @return [Array<Types::KeyValuePair>]
3905
4074
  #
3906
4075
  # @!attribute [rw] version_id
@@ -3921,9 +4090,14 @@ module Aws::Macie2
3921
4090
  :storage_class,
3922
4091
  :tags,
3923
4092
  :version_id)
4093
+ SENSITIVE = []
3924
4094
  include Aws::Structure
3925
4095
  end
3926
4096
 
4097
+ # Specifies one or more property- and tag-based conditions that refine
4098
+ # the scope of a classification job. These conditions define criteria
4099
+ # that determine which objects a job analyzes.
4100
+ #
3927
4101
  # @note When making an API call, you may pass Scoping
3928
4102
  # data as a hash:
3929
4103
  #
@@ -3975,11 +4149,15 @@ module Aws::Macie2
3975
4149
  # }
3976
4150
  #
3977
4151
  # @!attribute [rw] excludes
3978
- # Reserved for future use.
4152
+ # Specifies one or more property- and tag-based conditions that define
4153
+ # criteria for including or excluding objects from a classification
4154
+ # job.
3979
4155
  # @return [Types::JobScopingBlock]
3980
4156
  #
3981
4157
  # @!attribute [rw] includes
3982
- # Reserved for future use.
4158
+ # Specifies one or more property- and tag-based conditions that define
4159
+ # criteria for including or excluding objects from a classification
4160
+ # job.
3983
4161
  # @return [Types::JobScopingBlock]
3984
4162
  #
3985
4163
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/Scoping AWS API Documentation
@@ -3987,6 +4165,7 @@ module Aws::Macie2
3987
4165
  class Scoping < Struct.new(
3988
4166
  :excludes,
3989
4167
  :includes)
4168
+ SENSITIVE = []
3990
4169
  include Aws::Structure
3991
4170
  end
3992
4171
 
@@ -3994,10 +4173,15 @@ module Aws::Macie2
3994
4173
  # occurrences of sensitive data that produced a finding.
3995
4174
  #
3996
4175
  # @!attribute [rw] category
4176
+ # The category of sensitive data that was detected and produced the
4177
+ # finding. Possible values are:
3997
4178
  # @return [String]
3998
4179
  #
3999
4180
  # @!attribute [rw] detections
4000
- # Reserved for future use.
4181
+ # Provides information about sensitive data that was detected by
4182
+ # managed data identifiers and produced a sensitive data finding, and
4183
+ # the number of occurrences of each type of sensitive data that was
4184
+ # detected.
4001
4185
  # @return [Array<Types::DefaultDetection>]
4002
4186
  #
4003
4187
  # @!attribute [rw] total_count
@@ -4009,6 +4193,7 @@ module Aws::Macie2
4009
4193
  :category,
4010
4194
  :detections,
4011
4195
  :total_count)
4196
+ SENSITIVE = []
4012
4197
  include Aws::Structure
4013
4198
  end
4014
4199
 
@@ -4016,8 +4201,8 @@ module Aws::Macie2
4016
4201
  # S3 bucket or object.
4017
4202
  #
4018
4203
  # @!attribute [rw] encryption_type
4019
- # The server-side encryption algorithm that's used when storing the
4020
- # S3 bucket or object. Valid values are:
4204
+ # The type of server-side encryption that's used to encrypt objects
4205
+ # in the S3 bucket. Valid values are:
4021
4206
  # @return [String]
4022
4207
  #
4023
4208
  # @!attribute [rw] kms_master_key_id
@@ -4028,6 +4213,7 @@ module Aws::Macie2
4028
4213
  class ServerSideEncryption < Struct.new(
4029
4214
  :encryption_type,
4030
4215
  :kms_master_key_id)
4216
+ SENSITIVE = []
4031
4217
  include Aws::Structure
4032
4218
  end
4033
4219
 
@@ -4048,6 +4234,7 @@ module Aws::Macie2
4048
4234
  :is_service_limited,
4049
4235
  :unit,
4050
4236
  :value)
4237
+ SENSITIVE = []
4051
4238
  include Aws::Structure
4052
4239
  end
4053
4240
 
@@ -4061,11 +4248,12 @@ module Aws::Macie2
4061
4248
  #
4062
4249
  class ServiceQuotaExceededException < Struct.new(
4063
4250
  :message)
4251
+ SENSITIVE = []
4064
4252
  include Aws::Structure
4065
4253
  end
4066
4254
 
4067
4255
  # Provides information about a session that was created for an entity
4068
- # who performed an action by using temporary security credentials.
4256
+ # that performed an action by using temporary security credentials.
4069
4257
  #
4070
4258
  # @!attribute [rw] attributes
4071
4259
  # Provides information about the context in which temporary security
@@ -4082,6 +4270,7 @@ module Aws::Macie2
4082
4270
  class SessionContext < Struct.new(
4083
4271
  :attributes,
4084
4272
  :session_issuer)
4273
+ SENSITIVE = []
4085
4274
  include Aws::Structure
4086
4275
  end
4087
4276
 
@@ -4099,6 +4288,7 @@ module Aws::Macie2
4099
4288
  class SessionContextAttributes < Struct.new(
4100
4289
  :creation_date,
4101
4290
  :mfa_authenticated)
4291
+ SENSITIVE = []
4102
4292
  include Aws::Structure
4103
4293
  end
4104
4294
 
@@ -4128,6 +4318,7 @@ module Aws::Macie2
4128
4318
  :principal_id,
4129
4319
  :type,
4130
4320
  :user_name)
4321
+ SENSITIVE = []
4131
4322
  include Aws::Structure
4132
4323
  end
4133
4324
 
@@ -4135,8 +4326,8 @@ module Aws::Macie2
4135
4326
  # value.
4136
4327
  #
4137
4328
  # @!attribute [rw] description
4138
- # The textual representation of the finding's severity. Valid values
4139
- # are:
4329
+ # The textual representation of the finding's severity. Possible
4330
+ # values are:
4140
4331
  # @return [String]
4141
4332
  #
4142
4333
  # @!attribute [rw] score
@@ -4147,6 +4338,7 @@ module Aws::Macie2
4147
4338
  class Severity < Struct.new(
4148
4339
  :description,
4149
4340
  :score)
4341
+ SENSITIVE = []
4150
4342
  include Aws::Structure
4151
4343
  end
4152
4344
 
@@ -4180,6 +4372,7 @@ module Aws::Macie2
4180
4372
  :comparator,
4181
4373
  :key,
4182
4374
  :values)
4375
+ SENSITIVE = []
4183
4376
  include Aws::Structure
4184
4377
  end
4185
4378
 
@@ -4205,6 +4398,7 @@ module Aws::Macie2
4205
4398
  class SortCriteria < Struct.new(
4206
4399
  :attribute_name,
4207
4400
  :order_by)
4401
+ SENSITIVE = []
4208
4402
  include Aws::Structure
4209
4403
  end
4210
4404
 
@@ -4221,6 +4415,7 @@ module Aws::Macie2
4221
4415
  class Statistics < Struct.new(
4222
4416
  :approximate_number_of_objects_to_process,
4223
4417
  :number_of_runs)
4418
+ SENSITIVE = []
4224
4419
  include Aws::Structure
4225
4420
  end
4226
4421
 
@@ -4252,6 +4447,7 @@ module Aws::Macie2
4252
4447
  class TagResourceRequest < Struct.new(
4253
4448
  :resource_arn,
4254
4449
  :tags)
4450
+ SENSITIVE = []
4255
4451
  include Aws::Structure
4256
4452
  end
4257
4453
 
@@ -4301,6 +4497,7 @@ module Aws::Macie2
4301
4497
  :key,
4302
4498
  :tag_values,
4303
4499
  :target)
4500
+ SENSITIVE = []
4304
4501
  include Aws::Structure
4305
4502
  end
4306
4503
 
@@ -4326,6 +4523,7 @@ module Aws::Macie2
4326
4523
  class TagValuePair < Struct.new(
4327
4524
  :key,
4328
4525
  :value)
4526
+ SENSITIVE = []
4329
4527
  include Aws::Structure
4330
4528
  end
4331
4529
 
@@ -4365,6 +4563,7 @@ module Aws::Macie2
4365
4563
  :maximum_match_distance,
4366
4564
  :regex,
4367
4565
  :sample_text)
4566
+ SENSITIVE = []
4368
4567
  include Aws::Structure
4369
4568
  end
4370
4569
 
@@ -4377,6 +4576,7 @@ module Aws::Macie2
4377
4576
  #
4378
4577
  class TestCustomDataIdentifierResponse < Struct.new(
4379
4578
  :match_count)
4579
+ SENSITIVE = []
4380
4580
  include Aws::Structure
4381
4581
  end
4382
4582
 
@@ -4390,32 +4590,10 @@ module Aws::Macie2
4390
4590
  #
4391
4591
  class ThrottlingException < Struct.new(
4392
4592
  :message)
4593
+ SENSITIVE = []
4393
4594
  include Aws::Structure
4394
4595
  end
4395
4596
 
4396
- # Specifies one or more findings to reactivate (unarchive).
4397
- #
4398
- # @note When making an API call, you may pass UnarchiveFindingsRequest
4399
- # data as a hash:
4400
- #
4401
- # {
4402
- # finding_ids: ["__string"], # required
4403
- # }
4404
- #
4405
- # @!attribute [rw] finding_ids
4406
- # @return [Array<String>]
4407
- #
4408
- # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/UnarchiveFindingsRequest AWS API Documentation
4409
- #
4410
- class UnarchiveFindingsRequest < Struct.new(
4411
- :finding_ids)
4412
- include Aws::Structure
4413
- end
4414
-
4415
- # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/UnarchiveFindingsResponse AWS API Documentation
4416
- #
4417
- class UnarchiveFindingsResponse < Aws::EmptyStructure; end
4418
-
4419
4597
  # Provides information about an account-related request that hasn't
4420
4598
  # been processed.
4421
4599
  #
@@ -4435,6 +4613,7 @@ module Aws::Macie2
4435
4613
  :account_id,
4436
4614
  :error_code,
4437
4615
  :error_message)
4616
+ SENSITIVE = []
4438
4617
  include Aws::Structure
4439
4618
  end
4440
4619
 
@@ -4457,6 +4636,7 @@ module Aws::Macie2
4457
4636
  class UntagResourceRequest < Struct.new(
4458
4637
  :resource_arn,
4459
4638
  :tag_keys)
4639
+ SENSITIVE = []
4460
4640
  include Aws::Structure
4461
4641
  end
4462
4642
 
@@ -4481,7 +4661,7 @@ module Aws::Macie2
4481
4661
  # @return [String]
4482
4662
  #
4483
4663
  # @!attribute [rw] job_status
4484
- # The current status of a classification job. Valid values are:
4664
+ # The current status of a classification job. Possible values are:
4485
4665
  # @return [String]
4486
4666
  #
4487
4667
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/UpdateClassificationJobRequest AWS API Documentation
@@ -4489,6 +4669,7 @@ module Aws::Macie2
4489
4669
  class UpdateClassificationJobRequest < Struct.new(
4490
4670
  :job_id,
4491
4671
  :job_status)
4672
+ SENSITIVE = []
4492
4673
  include Aws::Structure
4493
4674
  end
4494
4675
 
@@ -4522,8 +4703,9 @@ module Aws::Macie2
4522
4703
  # }
4523
4704
  #
4524
4705
  # @!attribute [rw] action
4525
- # The action to perform on findings that meet the filter criteria.
4526
- # Valid values are:
4706
+ # The action to perform on findings that meet the filter criteria. To
4707
+ # suppress (automatically archive) findings that meet the criteria,
4708
+ # set this value to ARCHIVE. Valid values are:
4527
4709
  # @return [String]
4528
4710
  #
4529
4711
  # @!attribute [rw] description
@@ -4552,6 +4734,7 @@ module Aws::Macie2
4552
4734
  :id,
4553
4735
  :name,
4554
4736
  :position)
4737
+ SENSITIVE = []
4555
4738
  include Aws::Structure
4556
4739
  end
4557
4740
 
@@ -4569,6 +4752,7 @@ module Aws::Macie2
4569
4752
  class UpdateFindingsFilterResponse < Struct.new(
4570
4753
  :arn,
4571
4754
  :id)
4755
+ SENSITIVE = []
4572
4756
  include Aws::Structure
4573
4757
  end
4574
4758
 
@@ -4584,9 +4768,10 @@ module Aws::Macie2
4584
4768
  # }
4585
4769
  #
4586
4770
  # @!attribute [rw] finding_publishing_frequency
4587
- # The frequency with which Amazon Macie publishes findings for an
4588
- # account. This includes adding findings to AWS Security Hub and
4589
- # exporting finding events to Amazon CloudWatch. Valid values are:
4771
+ # The frequency with which Amazon Macie publishes updates to policy
4772
+ # findings for an account. This includes publishing updates to AWS
4773
+ # Security Hub and Amazon EventBridge (formerly called Amazon
4774
+ # CloudWatch Events). Valid values are:
4590
4775
  # @return [String]
4591
4776
  #
4592
4777
  # @!attribute [rw] status
@@ -4598,6 +4783,7 @@ module Aws::Macie2
4598
4783
  class UpdateMacieSessionRequest < Struct.new(
4599
4784
  :finding_publishing_frequency,
4600
4785
  :status)
4786
+ SENSITIVE = []
4601
4787
  include Aws::Structure
4602
4788
  end
4603
4789
 
@@ -4627,6 +4813,7 @@ module Aws::Macie2
4627
4813
  class UpdateMemberSessionRequest < Struct.new(
4628
4814
  :id,
4629
4815
  :status)
4816
+ SENSITIVE = []
4630
4817
  include Aws::Structure
4631
4818
  end
4632
4819
 
@@ -4651,6 +4838,7 @@ module Aws::Macie2
4651
4838
  #
4652
4839
  class UpdateOrganizationConfigurationRequest < Struct.new(
4653
4840
  :auto_enable)
4841
+ SENSITIVE = []
4654
4842
  include Aws::Structure
4655
4843
  end
4656
4844
 
@@ -4685,6 +4873,7 @@ module Aws::Macie2
4685
4873
  :estimated_cost,
4686
4874
  :service_limit,
4687
4875
  :type)
4876
+ SENSITIVE = []
4688
4877
  include Aws::Structure
4689
4878
  end
4690
4879
 
@@ -4705,23 +4894,30 @@ module Aws::Macie2
4705
4894
  :account_id,
4706
4895
  :free_trial_start_date,
4707
4896
  :usage)
4897
+ SENSITIVE = []
4708
4898
  include Aws::Structure
4709
4899
  end
4710
4900
 
4711
- # Specifies criteria for filtering the results of a query for account
4901
+ # Specifies a condition for filtering the results of a query for account
4712
4902
  # quotas and usage data.
4713
4903
  #
4714
4904
  # @note When making an API call, you may pass UsageStatisticsFilter
4715
4905
  # data as a hash:
4716
4906
  #
4717
4907
  # {
4718
- # key: "accountId", # accepts accountId
4908
+ # comparator: "GT", # accepts GT, GTE, LT, LTE, EQ, NE, CONTAINS
4909
+ # key: "accountId", # accepts accountId, serviceLimit, freeTrialStartDate, total
4719
4910
  # values: ["__string"],
4720
4911
  # }
4721
4912
  #
4913
+ # @!attribute [rw] comparator
4914
+ # The operator to use in a condition that filters the results of a
4915
+ # query for account quotas and usage data. Valid values are:
4916
+ # @return [String]
4917
+ #
4722
4918
  # @!attribute [rw] key
4723
- # The field to use to filter the results of a query for account quotas
4724
- # and usage data.
4919
+ # The field to use in a condition that filters the results of a query
4920
+ # for account quotas and usage data. Valid values are:
4725
4921
  # @return [String]
4726
4922
  #
4727
4923
  # @!attribute [rw] values
@@ -4730,8 +4926,10 @@ module Aws::Macie2
4730
4926
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/UsageStatisticsFilter AWS API Documentation
4731
4927
  #
4732
4928
  class UsageStatisticsFilter < Struct.new(
4929
+ :comparator,
4733
4930
  :key,
4734
4931
  :values)
4932
+ SENSITIVE = []
4735
4933
  include Aws::Structure
4736
4934
  end
4737
4935
 
@@ -4742,13 +4940,13 @@ module Aws::Macie2
4742
4940
  # data as a hash:
4743
4941
  #
4744
4942
  # {
4745
- # key: "accountId", # accepts accountId, total
4943
+ # key: "accountId", # accepts accountId, total, serviceLimitValue, freeTrialStartDate
4746
4944
  # order_by: "ASC", # accepts ASC, DESC
4747
4945
  # }
4748
4946
  #
4749
4947
  # @!attribute [rw] key
4750
4948
  # The field to use to sort the results of a query for account quotas
4751
- # and usage data.
4949
+ # and usage data. Valid values are:
4752
4950
  # @return [String]
4753
4951
  #
4754
4952
  # @!attribute [rw] order_by
@@ -4759,6 +4957,7 @@ module Aws::Macie2
4759
4957
  class UsageStatisticsSortBy < Struct.new(
4760
4958
  :key,
4761
4959
  :order_by)
4960
+ SENSITIVE = []
4762
4961
  include Aws::Structure
4763
4962
  end
4764
4963
 
@@ -4783,35 +4982,52 @@ module Aws::Macie2
4783
4982
  :currency,
4784
4983
  :estimated_cost,
4785
4984
  :type)
4985
+ SENSITIVE = []
4786
4986
  include Aws::Structure
4787
4987
  end
4788
4988
 
4989
+ # Provides information about the type and other characteristics of an
4990
+ # entity that performed an action on an affected resource.
4991
+ #
4789
4992
  # @!attribute [rw] assumed_role
4790
- # Reserved for future use.
4993
+ # Provides information about an identity that performed an action on
4994
+ # an affected resource by using temporary security credentials. The
4995
+ # credentials were obtained using the AssumeRole operation of the AWS
4996
+ # Security Token Service (AWS STS) API.
4791
4997
  # @return [Types::AssumedRole]
4792
4998
  #
4793
4999
  # @!attribute [rw] aws_account
4794
- # Reserved for future use.
5000
+ # Provides information about an AWS account and entity that performed
5001
+ # an action on an affected resource. The action was performed using
5002
+ # the credentials for an AWS account other than your own account.
4795
5003
  # @return [Types::AwsAccount]
4796
5004
  #
4797
5005
  # @!attribute [rw] aws_service
4798
- # Reserved for future use.
5006
+ # Provides information about an AWS service that performed an action
5007
+ # on an affected resource.
4799
5008
  # @return [Types::AwsService]
4800
5009
  #
4801
5010
  # @!attribute [rw] federated_user
4802
- # Reserved for future use.
5011
+ # Provides information about an identity that performed an action on
5012
+ # an affected resource by using temporary security credentials. The
5013
+ # credentials were obtained using the GetFederationToken operation of
5014
+ # the AWS Security Token Service (AWS STS) API.
4803
5015
  # @return [Types::FederatedUser]
4804
5016
  #
4805
5017
  # @!attribute [rw] iam_user
4806
- # Reserved for future use.
5018
+ # Provides information about an AWS Identity and Access Management
5019
+ # (IAM) user who performed an action on an affected resource.
4807
5020
  # @return [Types::IamUser]
4808
5021
  #
4809
5022
  # @!attribute [rw] root
4810
- # Reserved for future use.
5023
+ # Provides information about an AWS account and entity that performed
5024
+ # an action on an affected resource. The action was performed using
5025
+ # the credentials for your AWS account.
4811
5026
  # @return [Types::UserIdentityRoot]
4812
5027
  #
4813
5028
  # @!attribute [rw] type
4814
- # Reserved for future use.
5029
+ # The type of entity that performed the action on the affected
5030
+ # resource. Possible values are:
4815
5031
  # @return [String]
4816
5032
  #
4817
5033
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/UserIdentity AWS API Documentation
@@ -4824,10 +5040,13 @@ module Aws::Macie2
4824
5040
  :iam_user,
4825
5041
  :root,
4826
5042
  :type)
5043
+ SENSITIVE = []
4827
5044
  include Aws::Structure
4828
5045
  end
4829
5046
 
4830
- # Reserved for future use.
5047
+ # Provides information about an AWS account and entity that performed an
5048
+ # action on an affected resource. The action was performed using the
5049
+ # credentials for your AWS account.
4831
5050
  #
4832
5051
  # @!attribute [rw] account_id
4833
5052
  # @return [String]
@@ -4844,6 +5063,7 @@ module Aws::Macie2
4844
5063
  :account_id,
4845
5064
  :arn,
4846
5065
  :principal_id)
5066
+ SENSITIVE = []
4847
5067
  include Aws::Structure
4848
5068
  end
4849
5069
 
@@ -4857,9 +5077,13 @@ module Aws::Macie2
4857
5077
  #
4858
5078
  class ValidationException < Struct.new(
4859
5079
  :message)
5080
+ SENSITIVE = []
4860
5081
  include Aws::Structure
4861
5082
  end
4862
5083
 
5084
+ # Specifies a weekly recurrence pattern for running a classification
5085
+ # job.
5086
+ #
4863
5087
  # @note When making an API call, you may pass WeeklySchedule
4864
5088
  # data as a hash:
4865
5089
  #
@@ -4874,6 +5098,7 @@ module Aws::Macie2
4874
5098
  #
4875
5099
  class WeeklySchedule < Struct.new(
4876
5100
  :day_of_week)
5101
+ SENSITIVE = []
4877
5102
  include Aws::Structure
4878
5103
  end
4879
5104