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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 74dc79ee22f68da09dc4b65b8a29fe9208197dbb34fd7ade8f58459c36ca2bd2
4
- data.tar.gz: 3f0582c9f758ac3f508be22673149df2ab86cf47b194052787d84508f9ec99f1
3
+ metadata.gz: 68964efd99cdccbc9b66afe3758ae362ff2c6c0cd94aac8f6987c27505fe9d6d
4
+ data.tar.gz: d7e87bcf740671884040015d7dd752347550c4f82b49998dc29993a35110d198
5
5
  SHA512:
6
- metadata.gz: ceb64f32bd9eaafbed7687ee46aca25c88c6d23c0f5f6c16c4c520890783f9a6cb24362e77ee1a78451e9c20e663e4d22773b92fbe41208a0402b8cfed83cf42
7
- data.tar.gz: b9e9b2128f5ca56968ca1a05c1abd5fd381996a829e83d5f3410472f23d5fa9229faa4af96a3096bdb4951f55ca8a0824c363e46f363535954444ed679a9a558
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.99.0
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.99.0'
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
@@ -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 = []
@@ -55,7 +55,7 @@ module Aws::Macie2
55
55
  autoload :EndpointProvider, 'aws-sdk-macie2/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-macie2/endpoints'
57
57
 
58
- GEM_VERSION = '1.99.0'
58
+ GEM_VERSION = '1.100.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1074,6 +1074,7 @@ module Aws
1074
1074
  configuration: {
1075
1075
  s3_destination: {
1076
1076
  bucket_name: ::String,
1077
+ expected_bucket_owner: ::String?,
1077
1078
  key_prefix: ::String?,
1078
1079
  kms_key_arn: ::String
1079
1080
  }?
data/sig/types.rbs CHANGED
@@ -1547,6 +1547,7 @@ module Aws::Macie2
1547
1547
 
1548
1548
  class S3Destination
1549
1549
  attr_accessor bucket_name: ::String
1550
+ attr_accessor expected_bucket_owner: ::String
1550
1551
  attr_accessor key_prefix: ::String
1551
1552
  attr_accessor kms_key_arn: ::String
1552
1553
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-macie2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.99.0
4
+ version: 1.100.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services