aws-sdk-macie2 1.99.0 → 1.100.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 +4 -1
- data/lib/aws-sdk-macie2/client_api.rb +1 -0
- data/lib/aws-sdk-macie2/types.rb +12 -0
- data/lib/aws-sdk-macie2.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68964efd99cdccbc9b66afe3758ae362ff2c6c0cd94aac8f6987c27505fe9d6d
|
|
4
|
+
data.tar.gz: d7e87bcf740671884040015d7dd752347550c4f82b49998dc29993a35110d198
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2cbb2a3b97b205375627d5f13028ecccd303ffb51d385e6965c7388912e1a9e383cea9f62d17673c19fab714bd9681530d57d717fb2df7770bd8b908ba5bb100
|
|
7
|
+
data.tar.gz: '0484655943967f7604f94b0e6fa3063f9eb494ae2d5144f0823b1bd922fe6e8324094b4edbfc4ef7e7ed1b3dffa4370a6c37acb3ad7e705c81f0822650107615'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.100.0 (2026-04-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds an optional expectedBucketOwner field to the Macie S3 export configuration, allowing customers to verify bucket ownership before Macie writes results to the destination bucket.
|
|
8
|
+
|
|
4
9
|
1.99.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.100.0
|
|
@@ -1818,6 +1818,7 @@ module Aws::Macie2
|
|
|
1818
1818
|
# @example Response structure
|
|
1819
1819
|
#
|
|
1820
1820
|
# resp.configuration.s3_destination.bucket_name #=> String
|
|
1821
|
+
# resp.configuration.s3_destination.expected_bucket_owner #=> String
|
|
1821
1822
|
# resp.configuration.s3_destination.key_prefix #=> String
|
|
1822
1823
|
# resp.configuration.s3_destination.kms_key_arn #=> String
|
|
1823
1824
|
#
|
|
@@ -3327,6 +3328,7 @@ module Aws::Macie2
|
|
|
3327
3328
|
# configuration: { # required
|
|
3328
3329
|
# s3_destination: {
|
|
3329
3330
|
# bucket_name: "__string", # required
|
|
3331
|
+
# expected_bucket_owner: "__string",
|
|
3330
3332
|
# key_prefix: "__string",
|
|
3331
3333
|
# kms_key_arn: "__string", # required
|
|
3332
3334
|
# },
|
|
@@ -3336,6 +3338,7 @@ module Aws::Macie2
|
|
|
3336
3338
|
# @example Response structure
|
|
3337
3339
|
#
|
|
3338
3340
|
# resp.configuration.s3_destination.bucket_name #=> String
|
|
3341
|
+
# resp.configuration.s3_destination.expected_bucket_owner #=> String
|
|
3339
3342
|
# resp.configuration.s3_destination.key_prefix #=> String
|
|
3340
3343
|
# resp.configuration.s3_destination.kms_key_arn #=> String
|
|
3341
3344
|
#
|
|
@@ -4066,7 +4069,7 @@ module Aws::Macie2
|
|
|
4066
4069
|
tracer: tracer
|
|
4067
4070
|
)
|
|
4068
4071
|
context[:gem_name] = 'aws-sdk-macie2'
|
|
4069
|
-
context[:gem_version] = '1.
|
|
4072
|
+
context[:gem_version] = '1.100.0'
|
|
4070
4073
|
Seahorse::Client::Request.new(handlers, context)
|
|
4071
4074
|
end
|
|
4072
4075
|
|
|
@@ -1586,6 +1586,7 @@ module Aws::Macie2
|
|
|
1586
1586
|
S3ClassificationScopeUpdate.struct_class = Types::S3ClassificationScopeUpdate
|
|
1587
1587
|
|
|
1588
1588
|
S3Destination.add_member(:bucket_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "bucketName"))
|
|
1589
|
+
S3Destination.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: __string, location_name: "expectedBucketOwner"))
|
|
1589
1590
|
S3Destination.add_member(:key_prefix, Shapes::ShapeRef.new(shape: __string, location_name: "keyPrefix"))
|
|
1590
1591
|
S3Destination.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "kmsKeyArn"))
|
|
1591
1592
|
S3Destination.struct_class = Types::S3Destination
|
data/lib/aws-sdk-macie2/types.rb
CHANGED
|
@@ -1078,6 +1078,10 @@ module Aws::Macie2
|
|
|
1078
1078
|
# @!attribute [rw] s3_destination
|
|
1079
1079
|
# Specifies an S3 bucket to store data classification results in, and
|
|
1080
1080
|
# the encryption settings to use when storing results in that bucket.
|
|
1081
|
+
# The bucket must be an existing general purpose bucket. It can be a
|
|
1082
|
+
# bucket in your own account or a bucket that another account owns. If
|
|
1083
|
+
# another account owns the bucket, you must specify both the unique
|
|
1084
|
+
# identifier for the account and the name of the bucket.
|
|
1081
1085
|
# @return [Types::S3Destination]
|
|
1082
1086
|
#
|
|
1083
1087
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ClassificationExportConfiguration AWS API Documentation
|
|
@@ -5453,10 +5457,17 @@ module Aws::Macie2
|
|
|
5453
5457
|
|
|
5454
5458
|
# Specifies an S3 bucket to store data classification results in, and
|
|
5455
5459
|
# the encryption settings to use when storing results in that bucket.
|
|
5460
|
+
# The bucket must be an existing general purpose bucket. It can be a
|
|
5461
|
+
# bucket in your own account or a bucket that another account owns. If
|
|
5462
|
+
# another account owns the bucket, you must specify both the unique
|
|
5463
|
+
# identifier for the account and the name of the bucket.
|
|
5456
5464
|
#
|
|
5457
5465
|
# @!attribute [rw] bucket_name
|
|
5458
5466
|
# @return [String]
|
|
5459
5467
|
#
|
|
5468
|
+
# @!attribute [rw] expected_bucket_owner
|
|
5469
|
+
# @return [String]
|
|
5470
|
+
#
|
|
5460
5471
|
# @!attribute [rw] key_prefix
|
|
5461
5472
|
# @return [String]
|
|
5462
5473
|
#
|
|
@@ -5467,6 +5478,7 @@ module Aws::Macie2
|
|
|
5467
5478
|
#
|
|
5468
5479
|
class S3Destination < Struct.new(
|
|
5469
5480
|
:bucket_name,
|
|
5481
|
+
:expected_bucket_owner,
|
|
5470
5482
|
:key_prefix,
|
|
5471
5483
|
:kms_key_arn)
|
|
5472
5484
|
SENSITIVE = []
|
data/lib/aws-sdk-macie2.rb
CHANGED
data/sig/client.rbs
CHANGED
data/sig/types.rbs
CHANGED