aws-sdk-macie2 1.69.0 → 1.70.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-macie2/client.rb +107 -22
- data/lib/aws-sdk-macie2/client_api.rb +84 -0
- data/lib/aws-sdk-macie2/endpoints.rb +28 -0
- data/lib/aws-sdk-macie2/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-macie2/types.rb +249 -104
- data/lib/aws-sdk-macie2.rb +1 -1
- data/sig/client.rbs +32 -2
- data/sig/types.rbs +46 -1
- metadata +2 -2
data/lib/aws-sdk-macie2/types.rb
CHANGED
@@ -270,6 +270,67 @@ module Aws::Macie2
|
|
270
270
|
include Aws::Structure
|
271
271
|
end
|
272
272
|
|
273
|
+
# Provides information about the status of automated sensitive data
|
274
|
+
# discovery for an Amazon Macie account.
|
275
|
+
#
|
276
|
+
# @!attribute [rw] account_id
|
277
|
+
# @return [String]
|
278
|
+
#
|
279
|
+
# @!attribute [rw] status
|
280
|
+
# The status of automated sensitive data discovery for an Amazon Macie
|
281
|
+
# account. Valid values are:
|
282
|
+
# @return [String]
|
283
|
+
#
|
284
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/AutomatedDiscoveryAccount AWS API Documentation
|
285
|
+
#
|
286
|
+
class AutomatedDiscoveryAccount < Struct.new(
|
287
|
+
:account_id,
|
288
|
+
:status)
|
289
|
+
SENSITIVE = []
|
290
|
+
include Aws::Structure
|
291
|
+
end
|
292
|
+
|
293
|
+
# Changes the status of automated sensitive data discovery for an Amazon
|
294
|
+
# Macie account.
|
295
|
+
#
|
296
|
+
# @!attribute [rw] account_id
|
297
|
+
# @return [String]
|
298
|
+
#
|
299
|
+
# @!attribute [rw] status
|
300
|
+
# The status of automated sensitive data discovery for an Amazon Macie
|
301
|
+
# account. Valid values are:
|
302
|
+
# @return [String]
|
303
|
+
#
|
304
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/AutomatedDiscoveryAccountUpdate AWS API Documentation
|
305
|
+
#
|
306
|
+
class AutomatedDiscoveryAccountUpdate < Struct.new(
|
307
|
+
:account_id,
|
308
|
+
:status)
|
309
|
+
SENSITIVE = []
|
310
|
+
include Aws::Structure
|
311
|
+
end
|
312
|
+
|
313
|
+
# Provides information about a request that failed to change the status
|
314
|
+
# of automated sensitive data discovery for an Amazon Macie account.
|
315
|
+
#
|
316
|
+
# @!attribute [rw] account_id
|
317
|
+
# @return [String]
|
318
|
+
#
|
319
|
+
# @!attribute [rw] error_code
|
320
|
+
# The error code that indicates why a request failed to change the
|
321
|
+
# status of automated sensitive data discovery for an Amazon Macie
|
322
|
+
# account. Possible values are:
|
323
|
+
# @return [String]
|
324
|
+
#
|
325
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/AutomatedDiscoveryAccountUpdateError AWS API Documentation
|
326
|
+
#
|
327
|
+
class AutomatedDiscoveryAccountUpdateError < Struct.new(
|
328
|
+
:account_id,
|
329
|
+
:error_code)
|
330
|
+
SENSITIVE = []
|
331
|
+
include Aws::Structure
|
332
|
+
end
|
333
|
+
|
273
334
|
# Provides information about an Amazon Web Services account and entity
|
274
335
|
# that performed an action on an affected resource. The action was
|
275
336
|
# performed using the credentials for an Amazon Web Services account
|
@@ -368,6 +429,34 @@ module Aws::Macie2
|
|
368
429
|
include Aws::Structure
|
369
430
|
end
|
370
431
|
|
432
|
+
# Changes the status of automated sensitive data discovery for one or
|
433
|
+
# more Amazon Macie accounts.
|
434
|
+
#
|
435
|
+
# @!attribute [rw] accounts
|
436
|
+
# @return [Array<Types::AutomatedDiscoveryAccountUpdate>]
|
437
|
+
#
|
438
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/BatchUpdateAutomatedDiscoveryAccountsRequest AWS API Documentation
|
439
|
+
#
|
440
|
+
class BatchUpdateAutomatedDiscoveryAccountsRequest < Struct.new(
|
441
|
+
:accounts)
|
442
|
+
SENSITIVE = []
|
443
|
+
include Aws::Structure
|
444
|
+
end
|
445
|
+
|
446
|
+
# Provides the results of a request to change the status of automated
|
447
|
+
# sensitive data discovery for one or more Amazon Macie accounts.
|
448
|
+
#
|
449
|
+
# @!attribute [rw] errors
|
450
|
+
# @return [Array<Types::AutomatedDiscoveryAccountUpdateError>]
|
451
|
+
#
|
452
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/BatchUpdateAutomatedDiscoveryAccountsResponse AWS API Documentation
|
453
|
+
#
|
454
|
+
class BatchUpdateAutomatedDiscoveryAccountsResponse < Struct.new(
|
455
|
+
:errors)
|
456
|
+
SENSITIVE = []
|
457
|
+
include Aws::Structure
|
458
|
+
end
|
459
|
+
|
371
460
|
# Provides information about the block public access settings for an S3
|
372
461
|
# bucket. These settings can apply to a bucket at the account or bucket
|
373
462
|
# level. For detailed information about each setting, see [Blocking
|
@@ -613,6 +702,11 @@ module Aws::Macie2
|
|
613
702
|
# @!attribute [rw] allows_unencrypted_object_uploads
|
614
703
|
# @return [String]
|
615
704
|
#
|
705
|
+
# @!attribute [rw] automated_discovery_monitoring_status
|
706
|
+
# Specifies whether automated sensitive data discovery is currently
|
707
|
+
# configured to analyze objects in an S3 bucket. Possible values are:
|
708
|
+
# @return [String]
|
709
|
+
#
|
616
710
|
# @!attribute [rw] bucket_arn
|
617
711
|
# @return [String]
|
618
712
|
#
|
@@ -630,8 +724,8 @@ module Aws::Macie2
|
|
630
724
|
#
|
631
725
|
# @!attribute [rw] error_code
|
632
726
|
# The error code for an error that prevented Amazon Macie from
|
633
|
-
# retrieving and processing
|
634
|
-
#
|
727
|
+
# retrieving and processing information about an S3 bucket and the
|
728
|
+
# bucket's objects.
|
635
729
|
# @return [String]
|
636
730
|
#
|
637
731
|
# @!attribute [rw] error_message
|
@@ -639,8 +733,8 @@ module Aws::Macie2
|
|
639
733
|
#
|
640
734
|
# @!attribute [rw] job_details
|
641
735
|
# Specifies whether any one-time or recurring classification jobs are
|
642
|
-
# configured to analyze
|
643
|
-
# of the job that ran most recently.
|
736
|
+
# configured to analyze objects in an S3 bucket, and, if so, the
|
737
|
+
# details of the job that ran most recently.
|
644
738
|
# @return [Types::JobDetails]
|
645
739
|
#
|
646
740
|
# @!attribute [rw] last_automated_discovery_time
|
@@ -729,6 +823,7 @@ module Aws::Macie2
|
|
729
823
|
class BucketMetadata < Struct.new(
|
730
824
|
:account_id,
|
731
825
|
:allows_unencrypted_object_uploads,
|
826
|
+
:automated_discovery_monitoring_status,
|
732
827
|
:bucket_arn,
|
733
828
|
:bucket_created_at,
|
734
829
|
:bucket_name,
|
@@ -978,7 +1073,7 @@ module Aws::Macie2
|
|
978
1073
|
|
979
1074
|
# Specifies where to store data classification results, and the
|
980
1075
|
# encryption settings to use when storing results in that location. The
|
981
|
-
# location must be an S3 bucket.
|
1076
|
+
# location must be an S3 general purpose bucket.
|
982
1077
|
#
|
983
1078
|
# @!attribute [rw] s3_destination
|
984
1079
|
# Specifies an S3 bucket to store data classification results in, and
|
@@ -1990,8 +2085,8 @@ module Aws::Macie2
|
|
1990
2085
|
#
|
1991
2086
|
class DescribeOrganizationConfigurationRequest < Aws::EmptyStructure; end
|
1992
2087
|
|
1993
|
-
# Provides information about the Amazon Macie configuration
|
1994
|
-
#
|
2088
|
+
# Provides information about the Amazon Macie configuration for an
|
2089
|
+
# organization in Organizations.
|
1995
2090
|
#
|
1996
2091
|
# @!attribute [rw] auto_enable
|
1997
2092
|
# @return [Boolean]
|
@@ -2024,10 +2119,10 @@ module Aws::Macie2
|
|
2024
2119
|
|
2025
2120
|
# Provides information about a type of sensitive data that Amazon Macie
|
2026
2121
|
# found in an S3 bucket while performing automated sensitive data
|
2027
|
-
# discovery for
|
2028
|
-
#
|
2029
|
-
#
|
2030
|
-
#
|
2122
|
+
# discovery for an account. The information also specifies the custom or
|
2123
|
+
# managed data identifier that detected the data. This information is
|
2124
|
+
# available only if automated sensitive data discovery has been enabled
|
2125
|
+
# for the account.
|
2031
2126
|
#
|
2032
2127
|
# @!attribute [rw] arn
|
2033
2128
|
# @return [String]
|
@@ -2556,9 +2651,15 @@ module Aws::Macie2
|
|
2556
2651
|
#
|
2557
2652
|
class GetAutomatedDiscoveryConfigurationRequest < Aws::EmptyStructure; end
|
2558
2653
|
|
2559
|
-
# Provides information about the configuration settings
|
2560
|
-
# automated sensitive data discovery for an Amazon Macie
|
2561
|
-
#
|
2654
|
+
# Provides information about the configuration settings and status of
|
2655
|
+
# automated sensitive data discovery for an organization in Amazon Macie
|
2656
|
+
# or a standalone Macie account.
|
2657
|
+
#
|
2658
|
+
# @!attribute [rw] auto_enable_organization_members
|
2659
|
+
# Specifies whether to automatically enable automated sensitive data
|
2660
|
+
# discovery for accounts that are part of an organization in Amazon
|
2661
|
+
# Macie. Valid values are:
|
2662
|
+
# @return [String]
|
2562
2663
|
#
|
2563
2664
|
# @!attribute [rw] classification_scope_id
|
2564
2665
|
# The unique identifier the classification scope.
|
@@ -2582,12 +2683,14 @@ module Aws::Macie2
|
|
2582
2683
|
#
|
2583
2684
|
# @!attribute [rw] status
|
2584
2685
|
# The status of the automated sensitive data discovery configuration
|
2585
|
-
# for an Amazon Macie
|
2686
|
+
# for an organization in Amazon Macie or a standalone Macie account.
|
2687
|
+
# Valid values are:
|
2586
2688
|
# @return [String]
|
2587
2689
|
#
|
2588
2690
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/GetAutomatedDiscoveryConfigurationResponse AWS API Documentation
|
2589
2691
|
#
|
2590
2692
|
class GetAutomatedDiscoveryConfigurationResponse < Struct.new(
|
2693
|
+
:auto_enable_organization_members,
|
2591
2694
|
:classification_scope_id,
|
2592
2695
|
:disabled_at,
|
2593
2696
|
:first_enabled_at,
|
@@ -2741,7 +2844,7 @@ module Aws::Macie2
|
|
2741
2844
|
# @!attribute [rw] configuration
|
2742
2845
|
# Specifies where to store data classification results, and the
|
2743
2846
|
# encryption settings to use when storing results in that location.
|
2744
|
-
# The location must be an S3 bucket.
|
2847
|
+
# The location must be an S3 general purpose bucket.
|
2745
2848
|
# @return [Types::ClassificationExportConfiguration]
|
2746
2849
|
#
|
2747
2850
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/GetClassificationExportConfigurationResponse AWS API Documentation
|
@@ -3202,11 +3305,10 @@ module Aws::Macie2
|
|
3202
3305
|
include Aws::Structure
|
3203
3306
|
end
|
3204
3307
|
|
3205
|
-
# Provides
|
3206
|
-
#
|
3207
|
-
#
|
3208
|
-
#
|
3209
|
-
# enabled for your account.
|
3308
|
+
# Provides sensitive data discovery statistics and the sensitivity score
|
3309
|
+
# for an S3 bucket that Amazon Macie monitors and analyzes for an
|
3310
|
+
# account. This data is available only if automated sensitive data
|
3311
|
+
# discovery has been enabled for the account.
|
3210
3312
|
#
|
3211
3313
|
# @!attribute [rw] profile_updated_at
|
3212
3314
|
# @return [Time]
|
@@ -3219,11 +3321,10 @@ module Aws::Macie2
|
|
3219
3321
|
#
|
3220
3322
|
# @!attribute [rw] statistics
|
3221
3323
|
# Provides statistical data for sensitive data discovery metrics that
|
3222
|
-
# apply to an S3 bucket that Amazon Macie monitors and analyzes for
|
3223
|
-
#
|
3224
|
-
#
|
3225
|
-
#
|
3226
|
-
# discovery is currently enabled for your account.
|
3324
|
+
# apply to an S3 bucket that Amazon Macie monitors and analyzes for an
|
3325
|
+
# account, if automated sensitive data discovery has been enabled for
|
3326
|
+
# the account. The data captures the results of automated sensitive
|
3327
|
+
# data discovery activities that Macie has performed for the bucket.
|
3227
3328
|
# @return [Types::ResourceStatistics]
|
3228
3329
|
#
|
3229
3330
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/GetResourceProfileResponse AWS API Documentation
|
@@ -3351,19 +3452,17 @@ module Aws::Macie2
|
|
3351
3452
|
end
|
3352
3453
|
|
3353
3454
|
# Provides information about the settings for the sensitivity inspection
|
3354
|
-
# template for an Amazon Macie account.
|
3355
|
-
# settings when it performs automated sensitive data discovery for the
|
3356
|
-
# account.
|
3455
|
+
# template for an Amazon Macie account.
|
3357
3456
|
#
|
3358
3457
|
# @!attribute [rw] description
|
3359
3458
|
# @return [String]
|
3360
3459
|
#
|
3361
3460
|
# @!attribute [rw] excludes
|
3362
3461
|
# Specifies managed data identifiers to exclude (not use) when
|
3363
|
-
# performing automated sensitive data discovery
|
3364
|
-
#
|
3365
|
-
#
|
3366
|
-
#
|
3462
|
+
# performing automated sensitive data discovery. For information about
|
3463
|
+
# the managed data identifiers that Amazon Macie currently provides,
|
3464
|
+
# see [Using managed data identifiers][1] in the *Amazon Macie User
|
3465
|
+
# Guide*.
|
3367
3466
|
#
|
3368
3467
|
#
|
3369
3468
|
#
|
@@ -3373,11 +3472,11 @@ module Aws::Macie2
|
|
3373
3472
|
# @!attribute [rw] includes
|
3374
3473
|
# Specifies the allow lists, custom data identifiers, and managed data
|
3375
3474
|
# identifiers to include (use) when performing automated sensitive
|
3376
|
-
# data discovery
|
3377
|
-
#
|
3378
|
-
#
|
3379
|
-
#
|
3380
|
-
#
|
3475
|
+
# data discovery. The configuration must specify at least one custom
|
3476
|
+
# data identifier or managed data identifier. For information about
|
3477
|
+
# the managed data identifiers that Amazon Macie currently provides,
|
3478
|
+
# see [Using managed data identifiers][1] in the *Amazon Macie User
|
3479
|
+
# Guide*.
|
3381
3480
|
#
|
3382
3481
|
#
|
3383
3482
|
#
|
@@ -3691,8 +3790,8 @@ module Aws::Macie2
|
|
3691
3790
|
end
|
3692
3791
|
|
3693
3792
|
# Specifies whether any one-time or recurring classification jobs are
|
3694
|
-
# configured to analyze
|
3695
|
-
# the job that ran most recently.
|
3793
|
+
# configured to analyze objects in an S3 bucket, and, if so, the details
|
3794
|
+
# of the job that ran most recently.
|
3696
3795
|
#
|
3697
3796
|
# @!attribute [rw] is_defined_in_job
|
3698
3797
|
# @return [String]
|
@@ -3924,6 +4023,43 @@ module Aws::Macie2
|
|
3924
4023
|
include Aws::Structure
|
3925
4024
|
end
|
3926
4025
|
|
4026
|
+
# @!attribute [rw] account_ids
|
4027
|
+
# @return [Array<String>]
|
4028
|
+
#
|
4029
|
+
# @!attribute [rw] max_results
|
4030
|
+
# @return [Integer]
|
4031
|
+
#
|
4032
|
+
# @!attribute [rw] next_token
|
4033
|
+
# @return [String]
|
4034
|
+
#
|
4035
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ListAutomatedDiscoveryAccountsRequest AWS API Documentation
|
4036
|
+
#
|
4037
|
+
class ListAutomatedDiscoveryAccountsRequest < Struct.new(
|
4038
|
+
:account_ids,
|
4039
|
+
:max_results,
|
4040
|
+
:next_token)
|
4041
|
+
SENSITIVE = []
|
4042
|
+
include Aws::Structure
|
4043
|
+
end
|
4044
|
+
|
4045
|
+
# Provides information about the status of automated sensitive data
|
4046
|
+
# discovery for one or more Amazon Macie accounts.
|
4047
|
+
#
|
4048
|
+
# @!attribute [rw] items
|
4049
|
+
# @return [Array<Types::AutomatedDiscoveryAccount>]
|
4050
|
+
#
|
4051
|
+
# @!attribute [rw] next_token
|
4052
|
+
# @return [String]
|
4053
|
+
#
|
4054
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ListAutomatedDiscoveryAccountsResponse AWS API Documentation
|
4055
|
+
#
|
4056
|
+
class ListAutomatedDiscoveryAccountsResponse < Struct.new(
|
4057
|
+
:items,
|
4058
|
+
:next_token)
|
4059
|
+
SENSITIVE = []
|
4060
|
+
include Aws::Structure
|
4061
|
+
end
|
4062
|
+
|
3927
4063
|
# Specifies criteria for filtering, sorting, and paginating the results
|
3928
4064
|
# of a request for information about classification jobs.
|
3929
4065
|
#
|
@@ -4337,11 +4473,10 @@ module Aws::Macie2
|
|
4337
4473
|
include Aws::Structure
|
4338
4474
|
end
|
4339
4475
|
|
4340
|
-
# Provides
|
4341
|
-
#
|
4342
|
-
#
|
4343
|
-
#
|
4344
|
-
# enabled for your account.
|
4476
|
+
# Provides information about objects that Amazon Macie selected from an
|
4477
|
+
# S3 bucket while performing automated sensitive data discovery for an
|
4478
|
+
# account. This information is available only if automated sensitive
|
4479
|
+
# data discovery has been enabled for the account.
|
4345
4480
|
#
|
4346
4481
|
# @!attribute [rw] artifacts
|
4347
4482
|
# @return [Array<Types::ResourceProfileArtifact>]
|
@@ -4377,11 +4512,11 @@ module Aws::Macie2
|
|
4377
4512
|
include Aws::Structure
|
4378
4513
|
end
|
4379
4514
|
|
4380
|
-
# Provides
|
4381
|
-
#
|
4382
|
-
#
|
4383
|
-
#
|
4384
|
-
#
|
4515
|
+
# Provides information about the types and amount of sensitive data that
|
4516
|
+
# Amazon Macie found in an S3 bucket while performing automated
|
4517
|
+
# sensitive data discovery for an account. This information is available
|
4518
|
+
# only if automated sensitive data discovery has been enabled for the
|
4519
|
+
# account.
|
4385
4520
|
#
|
4386
4521
|
# @!attribute [rw] detections
|
4387
4522
|
# @return [Array<Types::Detection>]
|
@@ -4414,9 +4549,7 @@ module Aws::Macie2
|
|
4414
4549
|
end
|
4415
4550
|
|
4416
4551
|
# Provides the results of a request for information about the
|
4417
|
-
# sensitivity inspection template for an Amazon Macie account.
|
4418
|
-
# uses the template's settings when it performs automated sensitive
|
4419
|
-
# data discovery for the account.
|
4552
|
+
# sensitivity inspection template for an Amazon Macie account.
|
4420
4553
|
#
|
4421
4554
|
# @!attribute [rw] next_token
|
4422
4555
|
# @return [String]
|
@@ -4507,6 +4640,11 @@ module Aws::Macie2
|
|
4507
4640
|
# @!attribute [rw] account_id
|
4508
4641
|
# @return [String]
|
4509
4642
|
#
|
4643
|
+
# @!attribute [rw] automated_discovery_monitoring_status
|
4644
|
+
# Specifies whether automated sensitive data discovery is currently
|
4645
|
+
# configured to analyze objects in an S3 bucket. Possible values are:
|
4646
|
+
# @return [String]
|
4647
|
+
#
|
4510
4648
|
# @!attribute [rw] bucket_name
|
4511
4649
|
# @return [String]
|
4512
4650
|
#
|
@@ -4518,8 +4656,8 @@ module Aws::Macie2
|
|
4518
4656
|
#
|
4519
4657
|
# @!attribute [rw] error_code
|
4520
4658
|
# The error code for an error that prevented Amazon Macie from
|
4521
|
-
# retrieving and processing
|
4522
|
-
#
|
4659
|
+
# retrieving and processing information about an S3 bucket and the
|
4660
|
+
# bucket's objects.
|
4523
4661
|
# @return [String]
|
4524
4662
|
#
|
4525
4663
|
# @!attribute [rw] error_message
|
@@ -4527,8 +4665,8 @@ module Aws::Macie2
|
|
4527
4665
|
#
|
4528
4666
|
# @!attribute [rw] job_details
|
4529
4667
|
# Specifies whether any one-time or recurring classification jobs are
|
4530
|
-
# configured to analyze
|
4531
|
-
# of the job that ran most recently.
|
4668
|
+
# configured to analyze objects in an S3 bucket, and, if so, the
|
4669
|
+
# details of the job that ran most recently.
|
4532
4670
|
# @return [Types::JobDetails]
|
4533
4671
|
#
|
4534
4672
|
# @!attribute [rw] last_automated_discovery_time
|
@@ -4578,6 +4716,7 @@ module Aws::Macie2
|
|
4578
4716
|
#
|
4579
4717
|
class MatchingBucket < Struct.new(
|
4580
4718
|
:account_id,
|
4719
|
+
:automated_discovery_monitoring_status,
|
4581
4720
|
:bucket_name,
|
4582
4721
|
:classifiable_object_count,
|
4583
4722
|
:classifiable_size_in_bytes,
|
@@ -4845,7 +4984,7 @@ module Aws::Macie2
|
|
4845
4984
|
# @!attribute [rw] configuration
|
4846
4985
|
# Specifies where to store data classification results, and the
|
4847
4986
|
# encryption settings to use when storing results in that location.
|
4848
|
-
# The location must be an S3 bucket.
|
4987
|
+
# The location must be an S3 general purpose bucket.
|
4849
4988
|
# @return [Types::ClassificationExportConfiguration]
|
4850
4989
|
#
|
4851
4990
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/PutClassificationExportConfigurationRequest AWS API Documentation
|
@@ -4862,7 +5001,7 @@ module Aws::Macie2
|
|
4862
5001
|
# @!attribute [rw] configuration
|
4863
5002
|
# Specifies where to store data classification results, and the
|
4864
5003
|
# encryption settings to use when storing results in that location.
|
4865
|
-
# The location must be an S3 bucket.
|
5004
|
+
# The location must be an S3 general purpose bucket.
|
4866
5005
|
# @return [Types::ClassificationExportConfiguration]
|
4867
5006
|
#
|
4868
5007
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/PutClassificationExportConfigurationResponse AWS API Documentation
|
@@ -4984,10 +5123,10 @@ module Aws::Macie2
|
|
4984
5123
|
end
|
4985
5124
|
|
4986
5125
|
# Provides information about an S3 object that Amazon Macie selected for
|
4987
|
-
# analysis while performing automated sensitive data discovery for an
|
4988
|
-
#
|
4989
|
-
# is available only if automated sensitive data discovery
|
4990
|
-
# enabled for
|
5126
|
+
# analysis while performing automated sensitive data discovery for an
|
5127
|
+
# account, and the status and results of the analysis. This information
|
5128
|
+
# is available only if automated sensitive data discovery has been
|
5129
|
+
# enabled for the account.
|
4991
5130
|
#
|
4992
5131
|
# @!attribute [rw] arn
|
4993
5132
|
# @return [String]
|
@@ -5009,11 +5148,10 @@ module Aws::Macie2
|
|
5009
5148
|
end
|
5010
5149
|
|
5011
5150
|
# Provides statistical data for sensitive data discovery metrics that
|
5012
|
-
# apply to an S3 bucket that Amazon Macie monitors and analyzes for
|
5013
|
-
# account
|
5014
|
-
#
|
5015
|
-
#
|
5016
|
-
# currently enabled for your account.
|
5151
|
+
# apply to an S3 bucket that Amazon Macie monitors and analyzes for an
|
5152
|
+
# account, if automated sensitive data discovery has been enabled for
|
5153
|
+
# the account. The data captures the results of automated sensitive data
|
5154
|
+
# discovery activities that Macie has performed for the bucket.
|
5017
5155
|
#
|
5018
5156
|
# @!attribute [rw] total_bytes_classified
|
5019
5157
|
# @return [Integer]
|
@@ -5755,10 +5893,9 @@ module Aws::Macie2
|
|
5755
5893
|
end
|
5756
5894
|
|
5757
5895
|
# Specifies managed data identifiers to exclude (not use) when
|
5758
|
-
# performing automated sensitive data discovery
|
5759
|
-
#
|
5760
|
-
#
|
5761
|
-
# identifiers][1] in the *Amazon Macie User Guide*.
|
5896
|
+
# performing automated sensitive data discovery. For information about
|
5897
|
+
# the managed data identifiers that Amazon Macie currently provides, see
|
5898
|
+
# [Using managed data identifiers][1] in the *Amazon Macie User Guide*.
|
5762
5899
|
#
|
5763
5900
|
#
|
5764
5901
|
#
|
@@ -5777,11 +5914,10 @@ module Aws::Macie2
|
|
5777
5914
|
|
5778
5915
|
# Specifies the allow lists, custom data identifiers, and managed data
|
5779
5916
|
# identifiers to include (use) when performing automated sensitive data
|
5780
|
-
# discovery
|
5781
|
-
#
|
5782
|
-
#
|
5783
|
-
#
|
5784
|
-
# *Amazon Macie User Guide*.
|
5917
|
+
# discovery. The configuration must specify at least one custom data
|
5918
|
+
# identifier or managed data identifier. For information about the
|
5919
|
+
# managed data identifiers that Amazon Macie currently provides, see
|
5920
|
+
# [Using managed data identifiers][1] in the *Amazon Macie User Guide*.
|
5785
5921
|
#
|
5786
5922
|
#
|
5787
5923
|
#
|
@@ -5807,8 +5943,7 @@ module Aws::Macie2
|
|
5807
5943
|
end
|
5808
5944
|
|
5809
5945
|
# Provides information about the sensitivity inspection template for an
|
5810
|
-
# Amazon Macie account.
|
5811
|
-
# performs automated sensitive data discovery for the account.
|
5946
|
+
# Amazon Macie account.
|
5812
5947
|
#
|
5813
5948
|
# @!attribute [rw] id
|
5814
5949
|
# @return [String]
|
@@ -6386,17 +6521,29 @@ module Aws::Macie2
|
|
6386
6521
|
include Aws::Structure
|
6387
6522
|
end
|
6388
6523
|
|
6389
|
-
#
|
6390
|
-
# Macie
|
6524
|
+
# Changes the configuration settings and status of automated sensitive
|
6525
|
+
# data discovery for an organization in Amazon Macie or a standalone
|
6526
|
+
# Macie account. To change additional settings, such as the managed data
|
6527
|
+
# identifiers to use when analyzing data, update the sensitivity
|
6528
|
+
# inspection template and classification scope for the organization's
|
6529
|
+
# Macie administrator account or the standalone account.
|
6530
|
+
#
|
6531
|
+
# @!attribute [rw] auto_enable_organization_members
|
6532
|
+
# Specifies whether to automatically enable automated sensitive data
|
6533
|
+
# discovery for accounts that are part of an organization in Amazon
|
6534
|
+
# Macie. Valid values are:
|
6535
|
+
# @return [String]
|
6391
6536
|
#
|
6392
6537
|
# @!attribute [rw] status
|
6393
6538
|
# The status of the automated sensitive data discovery configuration
|
6394
|
-
# for an Amazon Macie
|
6539
|
+
# for an organization in Amazon Macie or a standalone Macie account.
|
6540
|
+
# Valid values are:
|
6395
6541
|
# @return [String]
|
6396
6542
|
#
|
6397
6543
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/UpdateAutomatedDiscoveryConfigurationRequest AWS API Documentation
|
6398
6544
|
#
|
6399
6545
|
class UpdateAutomatedDiscoveryConfigurationRequest < Struct.new(
|
6546
|
+
:auto_enable_organization_members,
|
6400
6547
|
:status)
|
6401
6548
|
SENSITIVE = []
|
6402
6549
|
include Aws::Structure
|
@@ -6437,8 +6584,7 @@ module Aws::Macie2
|
|
6437
6584
|
# Specifies new classification scope settings for an Amazon Macie
|
6438
6585
|
# account. Macie uses these settings when it performs automated
|
6439
6586
|
# sensitive data discovery for the account. To update the settings,
|
6440
|
-
# automated sensitive data discovery must
|
6441
|
-
# account.
|
6587
|
+
# automated sensitive data discovery must be enabled for the account.
|
6442
6588
|
#
|
6443
6589
|
# @!attribute [rw] id
|
6444
6590
|
# @return [String]
|
@@ -6578,7 +6724,8 @@ module Aws::Macie2
|
|
6578
6724
|
class UpdateMemberSessionResponse < Aws::EmptyStructure; end
|
6579
6725
|
|
6580
6726
|
# Specifies whether to enable Amazon Macie automatically for accounts
|
6581
|
-
# that are added to an organization in Organizations
|
6727
|
+
# that are added to an organization in Organizations, when the accounts
|
6728
|
+
# are added to the organization.
|
6582
6729
|
#
|
6583
6730
|
# @!attribute [rw] auto_enable
|
6584
6731
|
# @return [Boolean]
|
@@ -6596,11 +6743,11 @@ module Aws::Macie2
|
|
6596
6743
|
class UpdateOrganizationConfigurationResponse < Aws::EmptyStructure; end
|
6597
6744
|
|
6598
6745
|
# Updates the sensitivity scoring settings for an S3 bucket that Amazon
|
6599
|
-
# Macie monitors and analyzes for
|
6746
|
+
# Macie monitors and analyzes for an account. The settings specify
|
6600
6747
|
# whether to exclude or include occurrences of specific types of
|
6601
|
-
# sensitive data in
|
6602
|
-
#
|
6603
|
-
#
|
6748
|
+
# sensitive data in the bucket's sensitivity score. To update the
|
6749
|
+
# settings, automated sensitive data discovery must be enabled for the
|
6750
|
+
# account.
|
6604
6751
|
#
|
6605
6752
|
# @!attribute [rw] resource_arn
|
6606
6753
|
# @return [String]
|
@@ -6622,8 +6769,8 @@ module Aws::Macie2
|
|
6622
6769
|
class UpdateResourceProfileDetectionsResponse < Aws::EmptyStructure; end
|
6623
6770
|
|
6624
6771
|
# Specifies a new sensitivity score for an S3 bucket that Amazon Macie
|
6625
|
-
# monitors and analyzes for
|
6626
|
-
# sensitive data discovery must
|
6772
|
+
# monitors and analyzes for an account. To update the score, automated
|
6773
|
+
# sensitive data discovery must be enabled for the account.
|
6627
6774
|
#
|
6628
6775
|
# @!attribute [rw] resource_arn
|
6629
6776
|
# @return [String]
|
@@ -6745,20 +6892,18 @@ module Aws::Macie2
|
|
6745
6892
|
end
|
6746
6893
|
|
6747
6894
|
# Specifies settings for the sensitivity inspection template for an
|
6748
|
-
# Amazon Macie account.
|
6749
|
-
#
|
6750
|
-
# the settings, automated sensitive data discovery must currently be
|
6751
|
-
# enabled for the account.
|
6895
|
+
# Amazon Macie account. To update the settings, automated sensitive data
|
6896
|
+
# discovery must be enabled for the account.
|
6752
6897
|
#
|
6753
6898
|
# @!attribute [rw] description
|
6754
6899
|
# @return [String]
|
6755
6900
|
#
|
6756
6901
|
# @!attribute [rw] excludes
|
6757
6902
|
# Specifies managed data identifiers to exclude (not use) when
|
6758
|
-
# performing automated sensitive data discovery
|
6759
|
-
#
|
6760
|
-
#
|
6761
|
-
#
|
6903
|
+
# performing automated sensitive data discovery. For information about
|
6904
|
+
# the managed data identifiers that Amazon Macie currently provides,
|
6905
|
+
# see [Using managed data identifiers][1] in the *Amazon Macie User
|
6906
|
+
# Guide*.
|
6762
6907
|
#
|
6763
6908
|
#
|
6764
6909
|
#
|
@@ -6771,11 +6916,11 @@ module Aws::Macie2
|
|
6771
6916
|
# @!attribute [rw] includes
|
6772
6917
|
# Specifies the allow lists, custom data identifiers, and managed data
|
6773
6918
|
# identifiers to include (use) when performing automated sensitive
|
6774
|
-
# data discovery
|
6775
|
-
#
|
6776
|
-
#
|
6777
|
-
#
|
6778
|
-
#
|
6919
|
+
# data discovery. The configuration must specify at least one custom
|
6920
|
+
# data identifier or managed data identifier. For information about
|
6921
|
+
# the managed data identifiers that Amazon Macie currently provides,
|
6922
|
+
# see [Using managed data identifiers][1] in the *Amazon Macie User
|
6923
|
+
# Guide*.
|
6779
6924
|
#
|
6780
6925
|
#
|
6781
6926
|
#
|