aws-sdk-macie2 1.80.0 → 1.82.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-macie2/client.rb +34 -10
- data/lib/aws-sdk-macie2/types.rb +63 -53
- data/lib/aws-sdk-macie2.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a7e05f051cab5063c4897a95f0fc7d5f28ab2c6e07024643ceb7701a761b8fe8
|
4
|
+
data.tar.gz: 6a0b399c1dbf5dc8d7678c89b9168a397a0059f3551451b915d99320ff3182c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73ea918f337b6f975021d8c84f0bc162d56572a144d43123b3df1d8201be18aebf518e216a312d3ac86d7cc4930d0438f0506530d82ff8c47e70b6634bf1d35b
|
7
|
+
data.tar.gz: 11d92b75d8cad5c8bdeb00650408a987af7b16edf9cef638b1da587f9817bcfc6ea9b435eca6e16e9fc1f09dc566cdb62e7b66748513eecf9eb5b6a316a349d3
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.82.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.81.0 (2024-12-20)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for identifying S3 general purpose buckets that exceed the Amazon Macie quota for preventative control monitoring.
|
13
|
+
|
4
14
|
1.80.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.82.0
|
@@ -257,11 +257,34 @@ module Aws::Macie2
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -1238,7 +1261,7 @@ module Aws::Macie2
|
|
1238
1261
|
# resp.buckets[0].bucket_name #=> String
|
1239
1262
|
# resp.buckets[0].classifiable_object_count #=> Integer
|
1240
1263
|
# resp.buckets[0].classifiable_size_in_bytes #=> Integer
|
1241
|
-
# resp.buckets[0].error_code #=> String, one of "ACCESS_DENIED"
|
1264
|
+
# resp.buckets[0].error_code #=> String, one of "ACCESS_DENIED", "BUCKET_COUNT_EXCEEDS_QUOTA"
|
1242
1265
|
# resp.buckets[0].error_message #=> String
|
1243
1266
|
# resp.buckets[0].job_details.is_defined_in_job #=> String, one of "TRUE", "FALSE", "UNKNOWN"
|
1244
1267
|
# resp.buckets[0].job_details.is_monitored_by_job #=> String, one of "TRUE", "FALSE", "UNKNOWN"
|
@@ -2834,8 +2857,8 @@ module Aws::Macie2
|
|
2834
2857
|
req.send_request(options)
|
2835
2858
|
end
|
2836
2859
|
|
2837
|
-
# Retrieves a subset of information about
|
2838
|
-
#
|
2860
|
+
# Retrieves a subset of information about the custom data identifiers
|
2861
|
+
# for an account.
|
2839
2862
|
#
|
2840
2863
|
# @option params [Integer] :max_results
|
2841
2864
|
#
|
@@ -3329,8 +3352,8 @@ module Aws::Macie2
|
|
3329
3352
|
# @option params [Types::SecurityHubConfiguration] :security_hub_configuration
|
3330
3353
|
# Specifies configuration settings that determine which findings are
|
3331
3354
|
# published to Security Hub automatically. For information about how
|
3332
|
-
# Macie publishes findings to Security Hub, see [
|
3333
|
-
#
|
3355
|
+
# Macie publishes findings to Security Hub, see [Evaluating findings
|
3356
|
+
# with Security Hub][1] in the *Amazon Macie User Guide*.
|
3334
3357
|
#
|
3335
3358
|
#
|
3336
3359
|
#
|
@@ -3358,7 +3381,8 @@ module Aws::Macie2
|
|
3358
3381
|
end
|
3359
3382
|
|
3360
3383
|
# Retrieves (queries) statistical data and other information about
|
3361
|
-
# Amazon Web Services resources that Amazon Macie monitors and analyzes
|
3384
|
+
# Amazon Web Services resources that Amazon Macie monitors and analyzes
|
3385
|
+
# for an account.
|
3362
3386
|
#
|
3363
3387
|
# @option params [Types::SearchResourcesBucketCriteria] :bucket_criteria
|
3364
3388
|
# Specifies property- and tag-based conditions that define filter
|
@@ -3442,7 +3466,7 @@ module Aws::Macie2
|
|
3442
3466
|
# resp.matching_resources[0].matching_bucket.bucket_name #=> String
|
3443
3467
|
# resp.matching_resources[0].matching_bucket.classifiable_object_count #=> Integer
|
3444
3468
|
# resp.matching_resources[0].matching_bucket.classifiable_size_in_bytes #=> Integer
|
3445
|
-
# resp.matching_resources[0].matching_bucket.error_code #=> String, one of "ACCESS_DENIED"
|
3469
|
+
# resp.matching_resources[0].matching_bucket.error_code #=> String, one of "ACCESS_DENIED", "BUCKET_COUNT_EXCEEDS_QUOTA"
|
3446
3470
|
# resp.matching_resources[0].matching_bucket.error_message #=> String
|
3447
3471
|
# resp.matching_resources[0].matching_bucket.job_details.is_defined_in_job #=> String, one of "TRUE", "FALSE", "UNKNOWN"
|
3448
3472
|
# resp.matching_resources[0].matching_bucket.job_details.is_monitored_by_job #=> String, one of "TRUE", "FALSE", "UNKNOWN"
|
@@ -3921,8 +3945,8 @@ module Aws::Macie2
|
|
3921
3945
|
# Amazon Macie verifies that the role exists and the attached policies
|
3922
3946
|
# are configured correctly. If there's an issue, Macie returns an
|
3923
3947
|
# error. For information about addressing the issue, see [Configuration
|
3924
|
-
# options
|
3925
|
-
#
|
3948
|
+
# options for retrieving sensitive data samples][1] in the *Amazon Macie
|
3949
|
+
# User Guide*.
|
3926
3950
|
#
|
3927
3951
|
#
|
3928
3952
|
#
|
@@ -4036,7 +4060,7 @@ module Aws::Macie2
|
|
4036
4060
|
tracer: tracer
|
4037
4061
|
)
|
4038
4062
|
context[:gem_name] = 'aws-sdk-macie2'
|
4039
|
-
context[:gem_version] = '1.
|
4063
|
+
context[:gem_version] = '1.82.0'
|
4040
4064
|
Seahorse::Client::Request.new(handlers, context)
|
4041
4065
|
end
|
4042
4066
|
|
data/lib/aws-sdk-macie2/types.rb
CHANGED
@@ -351,8 +351,8 @@ module Aws::Macie2
|
|
351
351
|
include Aws::Structure
|
352
352
|
end
|
353
353
|
|
354
|
-
# Provides information about an Amazon Web
|
355
|
-
# action on an affected resource.
|
354
|
+
# Provides information about an Amazon Web Services service that
|
355
|
+
# performed an action on an affected resource.
|
356
356
|
#
|
357
357
|
# @!attribute [rw] invoked_by
|
358
358
|
# @return [String]
|
@@ -685,12 +685,12 @@ module Aws::Macie2
|
|
685
685
|
# information, see [How Macie monitors Amazon S3 data security][1] in
|
686
686
|
# the *Amazon Macie User Guide*.
|
687
687
|
#
|
688
|
-
# If an error
|
688
|
+
# If an error or issue prevents Macie from retrieving and processing
|
689
689
|
# metadata from Amazon S3 for the bucket or the bucket's objects, the
|
690
690
|
# value for the versioning property is false and the value for most
|
691
|
-
# other properties is null. Key exceptions are accountId,
|
692
|
-
# bucketCreatedAt, bucketName, lastUpdated, and region. To
|
693
|
-
#
|
691
|
+
# other properties is null or UNKNOWN. Key exceptions are accountId,
|
692
|
+
# bucketArn, bucketCreatedAt, bucketName, lastUpdated, and region. To
|
693
|
+
# identify the cause, refer to the errorCode and errorMessage values.
|
694
694
|
#
|
695
695
|
#
|
696
696
|
#
|
@@ -723,7 +723,7 @@ module Aws::Macie2
|
|
723
723
|
# @return [Integer]
|
724
724
|
#
|
725
725
|
# @!attribute [rw] error_code
|
726
|
-
# The
|
726
|
+
# The code for an error or issue that prevented Amazon Macie from
|
727
727
|
# retrieving and processing information about an S3 bucket and the
|
728
728
|
# bucket's objects.
|
729
729
|
# @return [String]
|
@@ -957,7 +957,7 @@ module Aws::Macie2
|
|
957
957
|
# Provides aggregated statistical data for sensitive data discovery
|
958
958
|
# metrics that apply to S3 buckets, grouped by bucket sensitivity score
|
959
959
|
# (sensitivityScore). If automated sensitive data discovery is currently
|
960
|
-
# disabled for your account, the value for
|
960
|
+
# disabled for your account, the value for most of these metrics is 0.
|
961
961
|
#
|
962
962
|
# @!attribute [rw] classification_error
|
963
963
|
# Provides aggregated statistical data for sensitive data discovery
|
@@ -965,8 +965,8 @@ module Aws::Macie2
|
|
965
965
|
# data for all the buckets that have a sensitivity score
|
966
966
|
# (sensitivityScore) of a specified value or within a specified range
|
967
967
|
# (BucketStatisticsBySensitivity). If automated sensitive data
|
968
|
-
# discovery is currently disabled for your account, the value for
|
969
|
-
#
|
968
|
+
# discovery is currently disabled for your account, the value for most
|
969
|
+
# fields is 0.
|
970
970
|
# @return [Types::SensitivityAggregations]
|
971
971
|
#
|
972
972
|
# @!attribute [rw] not_classified
|
@@ -975,8 +975,8 @@ module Aws::Macie2
|
|
975
975
|
# data for all the buckets that have a sensitivity score
|
976
976
|
# (sensitivityScore) of a specified value or within a specified range
|
977
977
|
# (BucketStatisticsBySensitivity). If automated sensitive data
|
978
|
-
# discovery is currently disabled for your account, the value for
|
979
|
-
#
|
978
|
+
# discovery is currently disabled for your account, the value for most
|
979
|
+
# fields is 0.
|
980
980
|
# @return [Types::SensitivityAggregations]
|
981
981
|
#
|
982
982
|
# @!attribute [rw] not_sensitive
|
@@ -985,8 +985,8 @@ module Aws::Macie2
|
|
985
985
|
# data for all the buckets that have a sensitivity score
|
986
986
|
# (sensitivityScore) of a specified value or within a specified range
|
987
987
|
# (BucketStatisticsBySensitivity). If automated sensitive data
|
988
|
-
# discovery is currently disabled for your account, the value for
|
989
|
-
#
|
988
|
+
# discovery is currently disabled for your account, the value for most
|
989
|
+
# fields is 0.
|
990
990
|
# @return [Types::SensitivityAggregations]
|
991
991
|
#
|
992
992
|
# @!attribute [rw] sensitive
|
@@ -995,8 +995,8 @@ module Aws::Macie2
|
|
995
995
|
# data for all the buckets that have a sensitivity score
|
996
996
|
# (sensitivityScore) of a specified value or within a specified range
|
997
997
|
# (BucketStatisticsBySensitivity). If automated sensitive data
|
998
|
-
# discovery is currently disabled for your account, the value for
|
999
|
-
#
|
998
|
+
# discovery is currently disabled for your account, the value for most
|
999
|
+
# fields is 0.
|
1000
1000
|
# @return [Types::SensitivityAggregations]
|
1001
1001
|
#
|
1002
1002
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/BucketStatisticsBySensitivity AWS API Documentation
|
@@ -2395,8 +2395,7 @@ module Aws::Macie2
|
|
2395
2395
|
#
|
2396
2396
|
# @!attribute [rw] type
|
2397
2397
|
# The type of finding. For details about each type, see [Types of
|
2398
|
-
#
|
2399
|
-
# values are:
|
2398
|
+
# findings][1] in the *Amazon Macie User Guide*. Possible values are:
|
2400
2399
|
#
|
2401
2400
|
#
|
2402
2401
|
#
|
@@ -2768,7 +2767,8 @@ module Aws::Macie2
|
|
2768
2767
|
# Provides aggregated statistical data for sensitive data discovery
|
2769
2768
|
# metrics that apply to S3 buckets, grouped by bucket sensitivity
|
2770
2769
|
# score (sensitivityScore). If automated sensitive data discovery is
|
2771
|
-
# currently disabled for your account, the value for
|
2770
|
+
# currently disabled for your account, the value for most of these
|
2771
|
+
# metrics is 0.
|
2772
2772
|
# @return [Types::BucketStatisticsBySensitivity]
|
2773
2773
|
#
|
2774
2774
|
# @!attribute [rw] classifiable_object_count
|
@@ -3095,8 +3095,8 @@ module Aws::Macie2
|
|
3095
3095
|
# @!attribute [rw] security_hub_configuration
|
3096
3096
|
# Specifies configuration settings that determine which findings are
|
3097
3097
|
# published to Security Hub automatically. For information about how
|
3098
|
-
# Macie publishes findings to Security Hub, see [
|
3099
|
-
#
|
3098
|
+
# Macie publishes findings to Security Hub, see [Evaluating findings
|
3099
|
+
# with Security Hub][1] in the *Amazon Macie User Guide*.
|
3100
3100
|
#
|
3101
3101
|
#
|
3102
3102
|
#
|
@@ -4627,11 +4627,11 @@ module Aws::Macie2
|
|
4627
4627
|
# information, see [How Macie monitors Amazon S3 data security][1] in
|
4628
4628
|
# the *Amazon Macie User Guide*.
|
4629
4629
|
#
|
4630
|
-
# If an error
|
4630
|
+
# If an error or issue prevents Macie from retrieving and processing
|
4631
4631
|
# information about the bucket or the bucket's objects, the value for
|
4632
|
-
#
|
4633
|
-
# bucketName. To identify the cause
|
4634
|
-
#
|
4632
|
+
# many of these properties is null. Key exceptions are accountId and
|
4633
|
+
# bucketName. To identify the cause, refer to the errorCode and
|
4634
|
+
# errorMessage values.
|
4635
4635
|
#
|
4636
4636
|
#
|
4637
4637
|
#
|
@@ -4655,7 +4655,7 @@ module Aws::Macie2
|
|
4655
4655
|
# @return [Integer]
|
4656
4656
|
#
|
4657
4657
|
# @!attribute [rw] error_code
|
4658
|
-
# The
|
4658
|
+
# The code for an error or issue that prevented Amazon Macie from
|
4659
4659
|
# retrieving and processing information about an S3 bucket and the
|
4660
4660
|
# bucket's objects.
|
4661
4661
|
# @return [String]
|
@@ -4747,11 +4747,11 @@ module Aws::Macie2
|
|
4747
4747
|
# For more information, see [How Macie monitors Amazon S3 data
|
4748
4748
|
# security][1] in the *Amazon Macie User Guide*.
|
4749
4749
|
#
|
4750
|
-
# If an error
|
4750
|
+
# If an error or issue prevents Macie from retrieving and processing
|
4751
4751
|
# information about the bucket or the bucket's objects, the value for
|
4752
|
-
#
|
4753
|
-
# bucketName. To identify the cause
|
4754
|
-
#
|
4752
|
+
# many of these properties is null. Key exceptions are accountId and
|
4753
|
+
# bucketName. To identify the cause, refer to the errorCode and
|
4754
|
+
# errorMessage values.
|
4755
4755
|
#
|
4756
4756
|
#
|
4757
4757
|
#
|
@@ -5023,8 +5023,8 @@ module Aws::Macie2
|
|
5023
5023
|
# @!attribute [rw] security_hub_configuration
|
5024
5024
|
# Specifies configuration settings that determine which findings are
|
5025
5025
|
# published to Security Hub automatically. For information about how
|
5026
|
-
# Macie publishes findings to Security Hub, see [
|
5027
|
-
#
|
5026
|
+
# Macie publishes findings to Security Hub, see [Evaluating findings
|
5027
|
+
# with Security Hub][1] in the *Amazon Macie User Guide*.
|
5028
5028
|
#
|
5029
5029
|
#
|
5030
5030
|
#
|
@@ -5200,6 +5200,11 @@ module Aws::Macie2
|
|
5200
5200
|
#
|
5201
5201
|
# @!attribute [rw] s3_bucket
|
5202
5202
|
# Provides information about the S3 bucket that a finding applies to.
|
5203
|
+
# If a quota prevented Amazon Macie from retrieving and processing all
|
5204
|
+
# the bucket's information prior to generating the finding, the
|
5205
|
+
# following values are UNKNOWN or null:
|
5206
|
+
# allowsUnencryptedObjectUploads, defaultServerSideEncryption,
|
5207
|
+
# publicAccess, and tags.
|
5203
5208
|
# @return [Types::S3Bucket]
|
5204
5209
|
#
|
5205
5210
|
# @!attribute [rw] s3_object
|
@@ -5262,7 +5267,11 @@ module Aws::Macie2
|
|
5262
5267
|
include Aws::Structure
|
5263
5268
|
end
|
5264
5269
|
|
5265
|
-
# Provides information about the S3 bucket that a finding applies to.
|
5270
|
+
# Provides information about the S3 bucket that a finding applies to. If
|
5271
|
+
# a quota prevented Amazon Macie from retrieving and processing all the
|
5272
|
+
# bucket's information prior to generating the finding, the following
|
5273
|
+
# values are UNKNOWN or null: allowsUnencryptedObjectUploads,
|
5274
|
+
# defaultServerSideEncryption, publicAccess, and tags.
|
5266
5275
|
#
|
5267
5276
|
# @!attribute [rw] allows_unencrypted_object_uploads
|
5268
5277
|
# @return [String]
|
@@ -5670,7 +5679,8 @@ module Aws::Macie2
|
|
5670
5679
|
|
5671
5680
|
# Specifies criteria for filtering, sorting, and paginating the results
|
5672
5681
|
# of a query for statistical data and other information about Amazon Web
|
5673
|
-
# Services resources that Amazon Macie monitors and analyzes
|
5682
|
+
# Services resources that Amazon Macie monitors and analyzes for your
|
5683
|
+
# account.
|
5674
5684
|
#
|
5675
5685
|
# @!attribute [rw] bucket_criteria
|
5676
5686
|
# Specifies property- and tag-based conditions that define filter
|
@@ -5810,8 +5820,8 @@ module Aws::Macie2
|
|
5810
5820
|
|
5811
5821
|
# Specifies configuration settings that determine which findings are
|
5812
5822
|
# published to Security Hub automatically. For information about how
|
5813
|
-
# Macie publishes findings to Security Hub, see [
|
5814
|
-
#
|
5823
|
+
# Macie publishes findings to Security Hub, see [Evaluating findings
|
5824
|
+
# with Security Hub][1] in the *Amazon Macie User Guide*.
|
5815
5825
|
#
|
5816
5826
|
#
|
5817
5827
|
#
|
@@ -5867,7 +5877,8 @@ module Aws::Macie2
|
|
5867
5877
|
# for all the buckets that have a sensitivity score (sensitivityScore)
|
5868
5878
|
# of a specified value or within a specified range
|
5869
5879
|
# (BucketStatisticsBySensitivity). If automated sensitive data discovery
|
5870
|
-
# is currently disabled for your account, the value for
|
5880
|
+
# is currently disabled for your account, the value for most fields is
|
5881
|
+
# 0.
|
5871
5882
|
#
|
5872
5883
|
# @!attribute [rw] classifiable_size_in_bytes
|
5873
5884
|
# @return [Integer]
|
@@ -6217,8 +6228,8 @@ module Aws::Macie2
|
|
6217
6228
|
end
|
6218
6229
|
|
6219
6230
|
# Specifies a custom data identifier or managed data identifier that
|
6220
|
-
# detected a type of sensitive data to
|
6221
|
-
#
|
6231
|
+
# detected a type of sensitive data to exclude from an S3 bucket's
|
6232
|
+
# sensitivity score.
|
6222
6233
|
#
|
6223
6234
|
# @!attribute [rw] id
|
6224
6235
|
# @return [String]
|
@@ -6554,12 +6565,12 @@ module Aws::Macie2
|
|
6554
6565
|
class UpdateAutomatedDiscoveryConfigurationResponse < Aws::EmptyStructure; end
|
6555
6566
|
|
6556
6567
|
# Changes the status of a classification job. For more information about
|
6557
|
-
# pausing, resuming, or cancelling jobs, see [
|
6558
|
-
#
|
6568
|
+
# pausing, resuming, or cancelling jobs, see [Changing the status of a
|
6569
|
+
# job][1] in the *Amazon Macie User Guide*.
|
6559
6570
|
#
|
6560
6571
|
#
|
6561
6572
|
#
|
6562
|
-
# [1]: https://docs.aws.amazon.com/macie/latest/user/discovery-jobs-
|
6573
|
+
# [1]: https://docs.aws.amazon.com/macie/latest/user/discovery-jobs-status-change.html
|
6563
6574
|
#
|
6564
6575
|
# @!attribute [rw] job_id
|
6565
6576
|
# @return [String]
|
@@ -6743,11 +6754,10 @@ module Aws::Macie2
|
|
6743
6754
|
class UpdateOrganizationConfigurationResponse < Aws::EmptyStructure; end
|
6744
6755
|
|
6745
6756
|
# Updates the sensitivity scoring settings for an S3 bucket that Amazon
|
6746
|
-
# Macie monitors and analyzes for an account. The settings specify
|
6747
|
-
#
|
6748
|
-
#
|
6749
|
-
#
|
6750
|
-
# account.
|
6757
|
+
# Macie monitors and analyzes for an account. The settings specify types
|
6758
|
+
# of sensitive data to exclude from the sensitivity score that Macie
|
6759
|
+
# calculates for the bucket. To update the settings, automated sensitive
|
6760
|
+
# data discovery must be enabled for the account.
|
6751
6761
|
#
|
6752
6762
|
# @!attribute [rw] resource_arn
|
6753
6763
|
# @return [String]
|
@@ -6797,8 +6807,8 @@ module Aws::Macie2
|
|
6797
6807
|
# Amazon Macie verifies that the role exists and the attached policies
|
6798
6808
|
# are configured correctly. If there's an issue, Macie returns an
|
6799
6809
|
# error. For information about addressing the issue, see [Configuration
|
6800
|
-
# options
|
6801
|
-
#
|
6810
|
+
# options for retrieving sensitive data samples][1] in the *Amazon Macie
|
6811
|
+
# User Guide*.
|
6802
6812
|
#
|
6803
6813
|
#
|
6804
6814
|
#
|
@@ -6847,8 +6857,8 @@ module Aws::Macie2
|
|
6847
6857
|
# Amazon Macie verifies that the role exists and the attached policies
|
6848
6858
|
# are configured correctly. If there's an issue, Macie returns an
|
6849
6859
|
# error. For information about addressing the issue, see
|
6850
|
-
# [Configuration options
|
6851
|
-
#
|
6860
|
+
# [Configuration options for retrieving sensitive data samples][1] in
|
6861
|
+
# the *Amazon Macie User Guide*.
|
6852
6862
|
#
|
6853
6863
|
#
|
6854
6864
|
#
|
@@ -7091,8 +7101,8 @@ module Aws::Macie2
|
|
7091
7101
|
# @return [Types::AwsAccount]
|
7092
7102
|
#
|
7093
7103
|
# @!attribute [rw] aws_service
|
7094
|
-
# Provides information about an Amazon Web
|
7095
|
-
# action on an affected resource.
|
7104
|
+
# Provides information about an Amazon Web Services service that
|
7105
|
+
# performed an action on an affected resource.
|
7096
7106
|
# @return [Types::AwsService]
|
7097
7107
|
#
|
7098
7108
|
# @!attribute [rw] federated_user
|
data/lib/aws-sdk-macie2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -211,7 +211,7 @@ module Aws::Macie2
|
|
211
211
|
attr_accessor bucket_name: ::String
|
212
212
|
attr_accessor classifiable_object_count: ::Integer
|
213
213
|
attr_accessor classifiable_size_in_bytes: ::Integer
|
214
|
-
attr_accessor error_code: ("ACCESS_DENIED")
|
214
|
+
attr_accessor error_code: ("ACCESS_DENIED" | "BUCKET_COUNT_EXCEEDS_QUOTA")
|
215
215
|
attr_accessor error_message: ::String
|
216
216
|
attr_accessor job_details: Types::JobDetails
|
217
217
|
attr_accessor last_automated_discovery_time: ::Time
|
@@ -1336,7 +1336,7 @@ module Aws::Macie2
|
|
1336
1336
|
attr_accessor bucket_name: ::String
|
1337
1337
|
attr_accessor classifiable_object_count: ::Integer
|
1338
1338
|
attr_accessor classifiable_size_in_bytes: ::Integer
|
1339
|
-
attr_accessor error_code: ("ACCESS_DENIED")
|
1339
|
+
attr_accessor error_code: ("ACCESS_DENIED" | "BUCKET_COUNT_EXCEEDS_QUOTA")
|
1340
1340
|
attr_accessor error_message: ::String
|
1341
1341
|
attr_accessor job_details: Types::JobDetails
|
1342
1342
|
attr_accessor last_automated_discovery_time: ::Time
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-macie2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.82.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|