aws-sdk-macie2 1.26.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8312d9a8cbab7c3b940504b68878ff52067f516b39387516c6730912248fc380
4
- data.tar.gz: 9873072f2ffde814bdb325b7f0cfab36ce52b67edae78ec6fb5ffdeed700ee70
3
+ metadata.gz: b52d5175c41c494be9cf58b4e8d5cb714b082fa7d7086e5893cb6db016400856
4
+ data.tar.gz: 517e2a12fc1e5086bf8c7791d22acd5e65ad3ff26a6aeb9eb712eb4153e5faf7
5
5
  SHA512:
6
- metadata.gz: 66d1ad4f766cfe4b4c1a16022db47113b213faffe4f483da55f096d7687e486c3488d5748580093c807f7a0bbe84b0bd177fe9e9c2d30a395b83fdec707fe6af
7
- data.tar.gz: 89326c79facb785cd6bb914ada9e970763c4e1201c7a4397938e6c7a96cad0053cb1952159a4a50dcb8ecf8c28df488367ce8537e4a0f3e4a5e5bbd910a761a8
6
+ metadata.gz: ef03ba248c71d3c5d3472b9aa5cc336eb7264d029bfbd47795fd8715c811385d3debefc97a97c3f39540339b8b96aac967defd54b846d42d8f26ea77ec5e9667
7
+ data.tar.gz: 7866928330a894da7908780670ea1b8573abae7dcf3667b508135ea412875cc08ff91ed30bac9c9b2616b10c68bbcc86ac684878623864e734ebae5cd9d820d9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.27.0 (2021-04-29)
5
+ ------------------
6
+
7
+ * Feature - The Amazon Macie API now provides S3 bucket metadata that indicates whether a bucket policy requires server-side encryption of objects when objects are uploaded to the bucket.
8
+
4
9
  1.26.0 (2021-03-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.26.0
1
+ 1.27.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-macie2/customizations'
48
48
  # @!group service
49
49
  module Aws::Macie2
50
50
 
51
- GEM_VERSION = '1.26.0'
51
+ GEM_VERSION = '1.27.0'
52
52
 
53
53
  end
@@ -919,6 +919,7 @@ module Aws::Macie2
919
919
  #
920
920
  # resp.buckets #=> Array
921
921
  # resp.buckets[0].account_id #=> String
922
+ # resp.buckets[0].allows_unencrypted_object_uploads #=> String, one of "TRUE", "FALSE", "UNKNOWN"
922
923
  # resp.buckets[0].bucket_arn #=> String
923
924
  # resp.buckets[0].bucket_created_at #=> Time
924
925
  # resp.buckets[0].bucket_name #=> String
@@ -934,6 +935,7 @@ module Aws::Macie2
934
935
  # resp.buckets[0].object_count_by_encryption_type.kms_managed #=> Integer
935
936
  # resp.buckets[0].object_count_by_encryption_type.s3_managed #=> Integer
936
937
  # resp.buckets[0].object_count_by_encryption_type.unencrypted #=> Integer
938
+ # resp.buckets[0].object_count_by_encryption_type.unknown #=> Integer
937
939
  # resp.buckets[0].public_access.effective_permission #=> String, one of "PUBLIC", "NOT_PUBLIC", "UNKNOWN"
938
940
  # resp.buckets[0].public_access.permission_configuration.account_level_permissions.block_public_access.block_public_acls #=> Boolean
939
941
  # resp.buckets[0].public_access.permission_configuration.account_level_permissions.block_public_access.block_public_policy #=> Boolean
@@ -1281,6 +1283,7 @@ module Aws::Macie2
1281
1283
  # * {Types::GetBucketStatisticsResponse#bucket_count #bucket_count} => Integer
1282
1284
  # * {Types::GetBucketStatisticsResponse#bucket_count_by_effective_permission #bucket_count_by_effective_permission} => Types::BucketCountByEffectivePermission
1283
1285
  # * {Types::GetBucketStatisticsResponse#bucket_count_by_encryption_type #bucket_count_by_encryption_type} => Types::BucketCountByEncryptionType
1286
+ # * {Types::GetBucketStatisticsResponse#bucket_count_by_object_encryption_requirement #bucket_count_by_object_encryption_requirement} => Types::BucketCountPolicyAllowsUnencryptedObjectUploads
1284
1287
  # * {Types::GetBucketStatisticsResponse#bucket_count_by_shared_access_type #bucket_count_by_shared_access_type} => Types::BucketCountBySharedAccessType
1285
1288
  # * {Types::GetBucketStatisticsResponse#classifiable_object_count #classifiable_object_count} => Integer
1286
1289
  # * {Types::GetBucketStatisticsResponse#classifiable_size_in_bytes #classifiable_size_in_bytes} => Integer
@@ -1307,6 +1310,10 @@ module Aws::Macie2
1307
1310
  # resp.bucket_count_by_encryption_type.kms_managed #=> Integer
1308
1311
  # resp.bucket_count_by_encryption_type.s3_managed #=> Integer
1309
1312
  # resp.bucket_count_by_encryption_type.unencrypted #=> Integer
1313
+ # resp.bucket_count_by_encryption_type.unknown #=> Integer
1314
+ # resp.bucket_count_by_object_encryption_requirement.allows_unencrypted_object_uploads #=> Integer
1315
+ # resp.bucket_count_by_object_encryption_requirement.denies_unencrypted_object_uploads #=> Integer
1316
+ # resp.bucket_count_by_object_encryption_requirement.unknown #=> Integer
1310
1317
  # resp.bucket_count_by_shared_access_type.external #=> Integer
1311
1318
  # resp.bucket_count_by_shared_access_type.internal #=> Integer
1312
1319
  # resp.bucket_count_by_shared_access_type.not_shared #=> Integer
@@ -1612,6 +1619,7 @@ module Aws::Macie2
1612
1619
  # resp.findings[0].policy_details.actor.user_identity.root.principal_id #=> String
1613
1620
  # resp.findings[0].policy_details.actor.user_identity.type #=> String, one of "AssumedRole", "IAMUser", "FederatedUser", "Root", "AWSAccount", "AWSService"
1614
1621
  # resp.findings[0].region #=> String
1622
+ # resp.findings[0].resources_affected.s3_bucket.allows_unencrypted_object_uploads #=> String, one of "TRUE", "FALSE", "UNKNOWN"
1615
1623
  # resp.findings[0].resources_affected.s3_bucket.arn #=> String
1616
1624
  # resp.findings[0].resources_affected.s3_bucket.created_at #=> Time
1617
1625
  # resp.findings[0].resources_affected.s3_bucket.default_server_side_encryption.encryption_type #=> String, one of "NONE", "AES256", "aws:kms", "UNKNOWN"
@@ -2683,7 +2691,7 @@ module Aws::Macie2
2683
2691
  params: params,
2684
2692
  config: config)
2685
2693
  context[:gem_name] = 'aws-sdk-macie2'
2686
- context[:gem_version] = '1.26.0'
2694
+ context[:gem_version] = '1.27.0'
2687
2695
  Seahorse::Client::Request.new(handlers, context)
2688
2696
  end
2689
2697
 
@@ -21,6 +21,7 @@ module Aws::Macie2
21
21
  AccountLevelPermissions = Shapes::StructureShape.new(name: 'AccountLevelPermissions')
22
22
  AdminAccount = Shapes::StructureShape.new(name: 'AdminAccount')
23
23
  AdminStatus = Shapes::StringShape.new(name: 'AdminStatus')
24
+ AllowsUnencryptedObjectUploads = Shapes::StringShape.new(name: 'AllowsUnencryptedObjectUploads')
24
25
  ApiCallDetails = Shapes::StructureShape.new(name: 'ApiCallDetails')
25
26
  AssumedRole = Shapes::StructureShape.new(name: 'AssumedRole')
26
27
  AwsAccount = Shapes::StructureShape.new(name: 'AwsAccount')
@@ -32,6 +33,7 @@ module Aws::Macie2
32
33
  BucketCountByEffectivePermission = Shapes::StructureShape.new(name: 'BucketCountByEffectivePermission')
33
34
  BucketCountByEncryptionType = Shapes::StructureShape.new(name: 'BucketCountByEncryptionType')
34
35
  BucketCountBySharedAccessType = Shapes::StructureShape.new(name: 'BucketCountBySharedAccessType')
36
+ BucketCountPolicyAllowsUnencryptedObjectUploads = Shapes::StructureShape.new(name: 'BucketCountPolicyAllowsUnencryptedObjectUploads')
35
37
  BucketCriteria = Shapes::MapShape.new(name: 'BucketCriteria')
36
38
  BucketCriteriaAdditionalProperties = Shapes::StructureShape.new(name: 'BucketCriteriaAdditionalProperties')
37
39
  BucketLevelPermissions = Shapes::StructureShape.new(name: 'BucketLevelPermissions')
@@ -385,6 +387,7 @@ module Aws::Macie2
385
387
  BucketCountByEncryptionType.add_member(:kms_managed, Shapes::ShapeRef.new(shape: __long, location_name: "kmsManaged"))
386
388
  BucketCountByEncryptionType.add_member(:s3_managed, Shapes::ShapeRef.new(shape: __long, location_name: "s3Managed"))
387
389
  BucketCountByEncryptionType.add_member(:unencrypted, Shapes::ShapeRef.new(shape: __long, location_name: "unencrypted"))
390
+ BucketCountByEncryptionType.add_member(:unknown, Shapes::ShapeRef.new(shape: __long, location_name: "unknown"))
388
391
  BucketCountByEncryptionType.struct_class = Types::BucketCountByEncryptionType
389
392
 
390
393
  BucketCountBySharedAccessType.add_member(:external, Shapes::ShapeRef.new(shape: __long, location_name: "external"))
@@ -393,6 +396,11 @@ module Aws::Macie2
393
396
  BucketCountBySharedAccessType.add_member(:unknown, Shapes::ShapeRef.new(shape: __long, location_name: "unknown"))
394
397
  BucketCountBySharedAccessType.struct_class = Types::BucketCountBySharedAccessType
395
398
 
399
+ BucketCountPolicyAllowsUnencryptedObjectUploads.add_member(:allows_unencrypted_object_uploads, Shapes::ShapeRef.new(shape: __long, location_name: "allowsUnencryptedObjectUploads"))
400
+ BucketCountPolicyAllowsUnencryptedObjectUploads.add_member(:denies_unencrypted_object_uploads, Shapes::ShapeRef.new(shape: __long, location_name: "deniesUnencryptedObjectUploads"))
401
+ BucketCountPolicyAllowsUnencryptedObjectUploads.add_member(:unknown, Shapes::ShapeRef.new(shape: __long, location_name: "unknown"))
402
+ BucketCountPolicyAllowsUnencryptedObjectUploads.struct_class = Types::BucketCountPolicyAllowsUnencryptedObjectUploads
403
+
396
404
  BucketCriteria.key = Shapes::ShapeRef.new(shape: __string)
397
405
  BucketCriteria.value = Shapes::ShapeRef.new(shape: BucketCriteriaAdditionalProperties)
398
406
 
@@ -411,6 +419,7 @@ module Aws::Macie2
411
419
  BucketLevelPermissions.struct_class = Types::BucketLevelPermissions
412
420
 
413
421
  BucketMetadata.add_member(:account_id, Shapes::ShapeRef.new(shape: __string, location_name: "accountId"))
422
+ BucketMetadata.add_member(:allows_unencrypted_object_uploads, Shapes::ShapeRef.new(shape: AllowsUnencryptedObjectUploads, location_name: "allowsUnencryptedObjectUploads"))
414
423
  BucketMetadata.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: __string, location_name: "bucketArn"))
415
424
  BucketMetadata.add_member(:bucket_created_at, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "bucketCreatedAt"))
416
425
  BucketMetadata.add_member(:bucket_name, Shapes::ShapeRef.new(shape: __string, location_name: "bucketName"))
@@ -754,6 +763,7 @@ module Aws::Macie2
754
763
  GetBucketStatisticsResponse.add_member(:bucket_count, Shapes::ShapeRef.new(shape: __long, location_name: "bucketCount"))
755
764
  GetBucketStatisticsResponse.add_member(:bucket_count_by_effective_permission, Shapes::ShapeRef.new(shape: BucketCountByEffectivePermission, location_name: "bucketCountByEffectivePermission"))
756
765
  GetBucketStatisticsResponse.add_member(:bucket_count_by_encryption_type, Shapes::ShapeRef.new(shape: BucketCountByEncryptionType, location_name: "bucketCountByEncryptionType"))
766
+ GetBucketStatisticsResponse.add_member(:bucket_count_by_object_encryption_requirement, Shapes::ShapeRef.new(shape: BucketCountPolicyAllowsUnencryptedObjectUploads, location_name: "bucketCountByObjectEncryptionRequirement"))
757
767
  GetBucketStatisticsResponse.add_member(:bucket_count_by_shared_access_type, Shapes::ShapeRef.new(shape: BucketCountBySharedAccessType, location_name: "bucketCountBySharedAccessType"))
758
768
  GetBucketStatisticsResponse.add_member(:classifiable_object_count, Shapes::ShapeRef.new(shape: __long, location_name: "classifiableObjectCount"))
759
769
  GetBucketStatisticsResponse.add_member(:classifiable_size_in_bytes, Shapes::ShapeRef.new(shape: __long, location_name: "classifiableSizeInBytes"))
@@ -1050,6 +1060,7 @@ module Aws::Macie2
1050
1060
  ObjectCountByEncryptionType.add_member(:kms_managed, Shapes::ShapeRef.new(shape: __long, location_name: "kmsManaged"))
1051
1061
  ObjectCountByEncryptionType.add_member(:s3_managed, Shapes::ShapeRef.new(shape: __long, location_name: "s3Managed"))
1052
1062
  ObjectCountByEncryptionType.add_member(:unencrypted, Shapes::ShapeRef.new(shape: __long, location_name: "unencrypted"))
1063
+ ObjectCountByEncryptionType.add_member(:unknown, Shapes::ShapeRef.new(shape: __long, location_name: "unknown"))
1053
1064
  ObjectCountByEncryptionType.struct_class = Types::ObjectCountByEncryptionType
1054
1065
 
1055
1066
  ObjectLevelStatistics.add_member(:file_type, Shapes::ShapeRef.new(shape: __long, location_name: "fileType"))
@@ -1112,6 +1123,7 @@ module Aws::Macie2
1112
1123
  ResourcesAffected.add_member(:s3_object, Shapes::ShapeRef.new(shape: S3Object, location_name: "s3Object"))
1113
1124
  ResourcesAffected.struct_class = Types::ResourcesAffected
1114
1125
 
1126
+ S3Bucket.add_member(:allows_unencrypted_object_uploads, Shapes::ShapeRef.new(shape: AllowsUnencryptedObjectUploads, location_name: "allowsUnencryptedObjectUploads"))
1115
1127
  S3Bucket.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
1116
1128
  S3Bucket.add_member(:created_at, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "createdAt"))
1117
1129
  S3Bucket.add_member(:default_server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location_name: "defaultServerSideEncryption"))
@@ -376,7 +376,13 @@ module Aws::Macie2
376
376
 
377
377
  # Provides information about the number of S3 buckets that use certain
378
378
  # types of server-side encryption by default or don't encrypt new
379
- # objects by default.
379
+ # objects by default. For detailed information about these settings, see
380
+ # [Setting default server-side encryption behavior for Amazon S3
381
+ # buckets][1] in the *Amazon Simple Storage Service User Guide*.
382
+ #
383
+ #
384
+ #
385
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucket-encryption.html
380
386
  #
381
387
  # @!attribute [rw] kms_managed
382
388
  # @return [Integer]
@@ -387,18 +393,22 @@ module Aws::Macie2
387
393
  # @!attribute [rw] unencrypted
388
394
  # @return [Integer]
389
395
  #
396
+ # @!attribute [rw] unknown
397
+ # @return [Integer]
398
+ #
390
399
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/BucketCountByEncryptionType AWS API Documentation
391
400
  #
392
401
  class BucketCountByEncryptionType < Struct.new(
393
402
  :kms_managed,
394
403
  :s3_managed,
395
- :unencrypted)
404
+ :unencrypted,
405
+ :unknown)
396
406
  SENSITIVE = []
397
407
  include Aws::Structure
398
408
  end
399
409
 
400
- # Provides information about the number of S3 buckets that are shared
401
- # with other AWS accounts.
410
+ # Provides information about the number of S3 buckets that are and
411
+ # aren't shared with other AWS accounts.
402
412
  #
403
413
  # @!attribute [rw] external
404
414
  # @return [Integer]
@@ -423,6 +433,29 @@ module Aws::Macie2
423
433
  include Aws::Structure
424
434
  end
425
435
 
436
+ # Provides information about the number of S3 buckets whose bucket
437
+ # policies do and don't require server-side encryption of objects when
438
+ # objects are uploaded to the buckets.
439
+ #
440
+ # @!attribute [rw] allows_unencrypted_object_uploads
441
+ # @return [Integer]
442
+ #
443
+ # @!attribute [rw] denies_unencrypted_object_uploads
444
+ # @return [Integer]
445
+ #
446
+ # @!attribute [rw] unknown
447
+ # @return [Integer]
448
+ #
449
+ # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/BucketCountPolicyAllowsUnencryptedObjectUploads AWS API Documentation
450
+ #
451
+ class BucketCountPolicyAllowsUnencryptedObjectUploads < Struct.new(
452
+ :allows_unencrypted_object_uploads,
453
+ :denies_unencrypted_object_uploads,
454
+ :unknown)
455
+ SENSITIVE = []
456
+ include Aws::Structure
457
+ end
458
+
426
459
  # Specifies the operator to use in a property-based condition that
427
460
  # filters the results of a query for information about S3 buckets.
428
461
  #
@@ -495,7 +528,7 @@ module Aws::Macie2
495
528
  # @return [Types::BlockPublicAccess]
496
529
  #
497
530
  # @!attribute [rw] bucket_policy
498
- # Provides information about the permissions settings of a bucket
531
+ # Provides information about the permissions settings of the bucket
499
532
  # policy for an S3 bucket.
500
533
  # @return [Types::BucketPolicy]
501
534
  #
@@ -515,6 +548,9 @@ module Aws::Macie2
515
548
  # @!attribute [rw] account_id
516
549
  # @return [String]
517
550
  #
551
+ # @!attribute [rw] allows_unencrypted_object_uploads
552
+ # @return [String]
553
+ #
518
554
  # @!attribute [rw] bucket_arn
519
555
  # @return [String]
520
556
  #
@@ -613,6 +649,7 @@ module Aws::Macie2
613
649
  #
614
650
  class BucketMetadata < Struct.new(
615
651
  :account_id,
652
+ :allows_unencrypted_object_uploads,
616
653
  :bucket_arn,
617
654
  :bucket_created_at,
618
655
  :bucket_name,
@@ -659,8 +696,8 @@ module Aws::Macie2
659
696
  include Aws::Structure
660
697
  end
661
698
 
662
- # Provides information about the permissions settings of a bucket policy
663
- # for an S3 bucket.
699
+ # Provides information about the permissions settings of the bucket
700
+ # policy for an S3 bucket.
664
701
  #
665
702
  # @!attribute [rw] allows_public_read_access
666
703
  # @return [Boolean]
@@ -2402,12 +2439,24 @@ module Aws::Macie2
2402
2439
  # @!attribute [rw] bucket_count_by_encryption_type
2403
2440
  # Provides information about the number of S3 buckets that use certain
2404
2441
  # types of server-side encryption by default or don't encrypt new
2405
- # objects by default.
2442
+ # objects by default. For detailed information about these settings,
2443
+ # see [Setting default server-side encryption behavior for Amazon S3
2444
+ # buckets][1] in the *Amazon Simple Storage Service User Guide*.
2445
+ #
2446
+ #
2447
+ #
2448
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucket-encryption.html
2406
2449
  # @return [Types::BucketCountByEncryptionType]
2407
2450
  #
2451
+ # @!attribute [rw] bucket_count_by_object_encryption_requirement
2452
+ # Provides information about the number of S3 buckets whose bucket
2453
+ # policies do and don't require server-side encryption of objects
2454
+ # when objects are uploaded to the buckets.
2455
+ # @return [Types::BucketCountPolicyAllowsUnencryptedObjectUploads]
2456
+ #
2408
2457
  # @!attribute [rw] bucket_count_by_shared_access_type
2409
- # Provides information about the number of S3 buckets that are shared
2410
- # with other AWS accounts.
2458
+ # Provides information about the number of S3 buckets that are and
2459
+ # aren't shared with other AWS accounts.
2411
2460
  # @return [Types::BucketCountBySharedAccessType]
2412
2461
  #
2413
2462
  # @!attribute [rw] classifiable_object_count
@@ -2454,6 +2503,7 @@ module Aws::Macie2
2454
2503
  :bucket_count,
2455
2504
  :bucket_count_by_effective_permission,
2456
2505
  :bucket_count_by_encryption_type,
2506
+ :bucket_count_by_object_encryption_requirement,
2457
2507
  :bucket_count_by_shared_access_type,
2458
2508
  :classifiable_object_count,
2459
2509
  :classifiable_size_in_bytes,
@@ -4088,13 +4138,17 @@ module Aws::Macie2
4088
4138
  # @!attribute [rw] unencrypted
4089
4139
  # @return [Integer]
4090
4140
  #
4141
+ # @!attribute [rw] unknown
4142
+ # @return [Integer]
4143
+ #
4091
4144
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ObjectCountByEncryptionType AWS API Documentation
4092
4145
  #
4093
4146
  class ObjectCountByEncryptionType < Struct.new(
4094
4147
  :customer_managed,
4095
4148
  :kms_managed,
4096
4149
  :s3_managed,
4097
- :unencrypted)
4150
+ :unencrypted,
4151
+ :unknown)
4098
4152
  SENSITIVE = []
4099
4153
  include Aws::Structure
4100
4154
  end
@@ -4410,6 +4464,9 @@ module Aws::Macie2
4410
4464
 
4411
4465
  # Provides information about an S3 bucket that a finding applies to.
4412
4466
  #
4467
+ # @!attribute [rw] allows_unencrypted_object_uploads
4468
+ # @return [String]
4469
+ #
4413
4470
  # @!attribute [rw] arn
4414
4471
  # @return [String]
4415
4472
  #
@@ -4442,6 +4499,7 @@ module Aws::Macie2
4442
4499
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/S3Bucket AWS API Documentation
4443
4500
  #
4444
4501
  class S3Bucket < Struct.new(
4502
+ :allows_unencrypted_object_uploads,
4445
4503
  :arn,
4446
4504
  :created_at,
4447
4505
  :default_server_side_encryption,
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.26.0
4
+ version: 1.27.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: 2021-03-22 00:00:00.000000000 Z
11
+ date: 2021-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubyforge_project:
87
- rubygems_version: 2.7.6.2
86
+ rubygems_version: 3.1.6
88
87
  signing_key:
89
88
  specification_version: 4
90
89
  summary: AWS SDK for Ruby - Amazon Macie 2