aws-sdk-s3control 1.54.0 → 1.56.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: cf22311004f173d80a6f072e18bc9fb696ea4299dcb9d4f35158f6b8458834f4
4
- data.tar.gz: d82b86306039dc8d4533fbda245e652e3fe860f0aa844d91ff311a2acddf4888
3
+ metadata.gz: 0af62c49847da4df3b44e80e2722a53820f16e9c5fbd7a1874100c443f2df7e3
4
+ data.tar.gz: e793fcc46c3447ee5d655e3118422dd0b18752b0712c416ca3e60221db1d6c13
5
5
  SHA512:
6
- metadata.gz: f7f602135016991b2c41f6e1e5793963a83b928c696a47f0edef6448c3bbc9752359bd5b94b023a2033d959cca43be8b65f6e3db80c9ebf59b61e86857254f40
7
- data.tar.gz: 8700aceb1f65ba9cb7d594058683a499525341652994d2b69d032bb2ed72136e6ce7afc2330d4578f30a848c077727d444c737754d4f2ba793accbc3aab18c57
6
+ metadata.gz: aa0fec0b6884898b4dd840c9cee1e915a413c1a06534416316e2b2c3e1e31c622e7207cfc2bf46021c64eb7718c3eb53eb6ee4c4fb8669556e442ca7d4fe5404
7
+ data.tar.gz: 1835481b9f33f429145f70102d0f9e0c743afc98a4ed8f777496499b7fc87c2555d50f13b5a467fe2198fce43874e5dae5dbd3a9b22ce27d8b842c7ea34e2217
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.56.0 (2022-11-17)
5
+ ------------------
6
+
7
+ * Feature - Added 34 new S3 Storage Lens metrics to support additional customer use cases.
8
+
9
+ 1.55.0 (2022-11-02)
10
+ ------------------
11
+
12
+ * Feature - S3 on Outposts launches support for Lifecycle configuration for Outposts buckets. With S3 Lifecycle configuration, you can mange objects so they are stored cost effectively. You can manage objects using size-based rules and specify how many noncurrent versions bucket will retain.
13
+
4
14
  1.54.0 (2022-10-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
1
+ 1.56.0
@@ -2623,6 +2623,10 @@ module Aws::S3Control
2623
2623
  # resp.rules[0].filter.and.tags #=> Array
2624
2624
  # resp.rules[0].filter.and.tags[0].key #=> String
2625
2625
  # resp.rules[0].filter.and.tags[0].value #=> String
2626
+ # resp.rules[0].filter.and.object_size_greater_than #=> Integer
2627
+ # resp.rules[0].filter.and.object_size_less_than #=> Integer
2628
+ # resp.rules[0].filter.object_size_greater_than #=> Integer
2629
+ # resp.rules[0].filter.object_size_less_than #=> Integer
2626
2630
  # resp.rules[0].status #=> String, one of "Enabled", "Disabled"
2627
2631
  # resp.rules[0].transitions #=> Array
2628
2632
  # resp.rules[0].transitions[0].date #=> Time
@@ -2632,6 +2636,7 @@ module Aws::S3Control
2632
2636
  # resp.rules[0].noncurrent_version_transitions[0].noncurrent_days #=> Integer
2633
2637
  # resp.rules[0].noncurrent_version_transitions[0].storage_class #=> String, one of "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE"
2634
2638
  # resp.rules[0].noncurrent_version_expiration.noncurrent_days #=> Integer
2639
+ # resp.rules[0].noncurrent_version_expiration.newer_noncurrent_versions #=> Integer
2635
2640
  # resp.rules[0].abort_incomplete_multipart_upload.days_after_initiation #=> Integer
2636
2641
  #
2637
2642
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetBucketLifecycleConfiguration AWS API Documentation
@@ -3206,11 +3211,13 @@ module Aws::S3Control
3206
3211
 
3207
3212
  # Gets the Amazon S3 Storage Lens configuration. For more information,
3208
3213
  # see [Assessing your storage activity and usage with Amazon S3 Storage
3209
- # Lens ][1] in the *Amazon S3 User Guide*.
3214
+ # Lens ][1] in the *Amazon S3 User Guide*. For a complete list of S3
3215
+ # Storage Lens metrics, see [S3 Storage Lens metrics glossary][2] in the
3216
+ # *Amazon S3 User Guide*.
3210
3217
  #
3211
3218
  # <note markdown="1"> To use this action, you must have permission to perform the
3212
3219
  # `s3:GetStorageLensConfiguration` action. For more information, see
3213
- # [Setting permissions to use Amazon S3 Storage Lens][2] in the *Amazon
3220
+ # [Setting permissions to use Amazon S3 Storage Lens][3] in the *Amazon
3214
3221
  # S3 User Guide*.
3215
3222
  #
3216
3223
  # </note>
@@ -3218,7 +3225,8 @@ module Aws::S3Control
3218
3225
  #
3219
3226
  #
3220
3227
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
3221
- # [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens_iam_permissions.html
3228
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_metrics_glossary.html
3229
+ # [3]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens_iam_permissions.html
3222
3230
  #
3223
3231
  # @option params [required, String] :config_id
3224
3232
  # The ID of the Amazon S3 Storage Lens configuration.
@@ -3246,6 +3254,12 @@ module Aws::S3Control
3246
3254
  # resp.storage_lens_configuration.account_level.bucket_level.prefix_level.storage_metrics.selection_criteria.delimiter #=> String
3247
3255
  # resp.storage_lens_configuration.account_level.bucket_level.prefix_level.storage_metrics.selection_criteria.max_depth #=> Integer
3248
3256
  # resp.storage_lens_configuration.account_level.bucket_level.prefix_level.storage_metrics.selection_criteria.min_storage_bytes_percentage #=> Float
3257
+ # resp.storage_lens_configuration.account_level.bucket_level.advanced_cost_optimization_metrics.is_enabled #=> Boolean
3258
+ # resp.storage_lens_configuration.account_level.bucket_level.advanced_data_protection_metrics.is_enabled #=> Boolean
3259
+ # resp.storage_lens_configuration.account_level.bucket_level.detailed_status_codes_metrics.is_enabled #=> Boolean
3260
+ # resp.storage_lens_configuration.account_level.advanced_cost_optimization_metrics.is_enabled #=> Boolean
3261
+ # resp.storage_lens_configuration.account_level.advanced_data_protection_metrics.is_enabled #=> Boolean
3262
+ # resp.storage_lens_configuration.account_level.detailed_status_codes_metrics.is_enabled #=> Boolean
3249
3263
  # resp.storage_lens_configuration.include.buckets #=> Array
3250
3264
  # resp.storage_lens_configuration.include.buckets[0] #=> String
3251
3265
  # resp.storage_lens_configuration.include.regions #=> Array
@@ -4027,7 +4041,11 @@ module Aws::S3Control
4027
4041
  # value: "TagValueString", # required
4028
4042
  # },
4029
4043
  # ],
4044
+ # object_size_greater_than: 1,
4045
+ # object_size_less_than: 1,
4030
4046
  # },
4047
+ # object_size_greater_than: 1,
4048
+ # object_size_less_than: 1,
4031
4049
  # },
4032
4050
  # status: "Enabled", # required, accepts Enabled, Disabled
4033
4051
  # transitions: [
@@ -4045,6 +4063,7 @@ module Aws::S3Control
4045
4063
  # ],
4046
4064
  # noncurrent_version_expiration: {
4047
4065
  # noncurrent_days: 1,
4066
+ # newer_noncurrent_versions: 1,
4048
4067
  # },
4049
4068
  # abort_incomplete_multipart_upload: {
4050
4069
  # days_after_initiation: 1,
@@ -4617,11 +4636,13 @@ module Aws::S3Control
4617
4636
 
4618
4637
  # Puts an Amazon S3 Storage Lens configuration. For more information
4619
4638
  # about S3 Storage Lens, see [Working with Amazon S3 Storage Lens][1] in
4620
- # the *Amazon S3 User Guide*.
4639
+ # the *Amazon S3 User Guide*. For a complete list of S3 Storage Lens
4640
+ # metrics, see [S3 Storage Lens metrics glossary][2] in the *Amazon S3
4641
+ # User Guide*.
4621
4642
  #
4622
4643
  # <note markdown="1"> To use this action, you must have permission to perform the
4623
4644
  # `s3:PutStorageLensConfiguration` action. For more information, see
4624
- # [Setting permissions to use Amazon S3 Storage Lens][2] in the *Amazon
4645
+ # [Setting permissions to use Amazon S3 Storage Lens][3] in the *Amazon
4625
4646
  # S3 User Guide*.
4626
4647
  #
4627
4648
  # </note>
@@ -4629,7 +4650,8 @@ module Aws::S3Control
4629
4650
  #
4630
4651
  #
4631
4652
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
4632
- # [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens_iam_permissions.html
4653
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_metrics_glossary.html
4654
+ # [3]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens_iam_permissions.html
4633
4655
  #
4634
4656
  # @option params [required, String] :config_id
4635
4657
  # The ID of the S3 Storage Lens configuration.
@@ -4674,6 +4696,24 @@ module Aws::S3Control
4674
4696
  # },
4675
4697
  # },
4676
4698
  # },
4699
+ # advanced_cost_optimization_metrics: {
4700
+ # is_enabled: false,
4701
+ # },
4702
+ # advanced_data_protection_metrics: {
4703
+ # is_enabled: false,
4704
+ # },
4705
+ # detailed_status_codes_metrics: {
4706
+ # is_enabled: false,
4707
+ # },
4708
+ # },
4709
+ # advanced_cost_optimization_metrics: {
4710
+ # is_enabled: false,
4711
+ # },
4712
+ # advanced_data_protection_metrics: {
4713
+ # is_enabled: false,
4714
+ # },
4715
+ # detailed_status_codes_metrics: {
4716
+ # is_enabled: false,
4677
4717
  # },
4678
4718
  # },
4679
4719
  # include: {
@@ -4923,7 +4963,7 @@ module Aws::S3Control
4923
4963
  params: params,
4924
4964
  config: config)
4925
4965
  context[:gem_name] = 'aws-sdk-s3control'
4926
- context[:gem_version] = '1.54.0'
4966
+ context[:gem_version] = '1.56.0'
4927
4967
  Seahorse::Client::Request.new(handlers, context)
4928
4968
  end
4929
4969
 
@@ -20,6 +20,8 @@ module Aws::S3Control
20
20
  AccountId = Shapes::StringShape.new(name: 'AccountId')
21
21
  AccountLevel = Shapes::StructureShape.new(name: 'AccountLevel')
22
22
  ActivityMetrics = Shapes::StructureShape.new(name: 'ActivityMetrics')
23
+ AdvancedCostOptimizationMetrics = Shapes::StructureShape.new(name: 'AdvancedCostOptimizationMetrics')
24
+ AdvancedDataProtectionMetrics = Shapes::StructureShape.new(name: 'AdvancedDataProtectionMetrics')
23
25
  Alias = Shapes::StringShape.new(name: 'Alias')
24
26
  AsyncCreationTimestamp = Shapes::TimestampShape.new(name: 'AsyncCreationTimestamp')
25
27
  AsyncErrorDetails = Shapes::StructureShape.new(name: 'AsyncErrorDetails')
@@ -85,6 +87,7 @@ module Aws::S3Control
85
87
  DescribeJobResult = Shapes::StructureShape.new(name: 'DescribeJobResult')
86
88
  DescribeMultiRegionAccessPointOperationRequest = Shapes::StructureShape.new(name: 'DescribeMultiRegionAccessPointOperationRequest')
87
89
  DescribeMultiRegionAccessPointOperationResult = Shapes::StructureShape.new(name: 'DescribeMultiRegionAccessPointOperationResult')
90
+ DetailedStatusCodesMetrics = Shapes::StructureShape.new(name: 'DetailedStatusCodesMetrics')
88
91
  Endpoints = Shapes::MapShape.new(name: 'Endpoints')
89
92
  EstablishedMultiRegionAccessPointPolicy = Shapes::StructureShape.new(name: 'EstablishedMultiRegionAccessPointPolicy')
90
93
  ExceptionMessage = Shapes::StringShape.new(name: 'ExceptionMessage')
@@ -227,6 +230,7 @@ module Aws::S3Control
227
230
  NonEmptyMaxLength2048String = Shapes::StringShape.new(name: 'NonEmptyMaxLength2048String')
228
231
  NonEmptyMaxLength256String = Shapes::StringShape.new(name: 'NonEmptyMaxLength256String')
229
232
  NonEmptyMaxLength64String = Shapes::StringShape.new(name: 'NonEmptyMaxLength64String')
233
+ NoncurrentVersionCount = Shapes::IntegerShape.new(name: 'NoncurrentVersionCount')
230
234
  NoncurrentVersionExpiration = Shapes::StructureShape.new(name: 'NoncurrentVersionExpiration')
231
235
  NoncurrentVersionTransition = Shapes::StructureShape.new(name: 'NoncurrentVersionTransition')
232
236
  NoncurrentVersionTransitionList = Shapes::ListShape.new(name: 'NoncurrentVersionTransitionList')
@@ -247,6 +251,8 @@ module Aws::S3Control
247
251
  ObjectLambdaTransformationConfigurationActionsList = Shapes::ListShape.new(name: 'ObjectLambdaTransformationConfigurationActionsList')
248
252
  ObjectLambdaTransformationConfigurationsList = Shapes::ListShape.new(name: 'ObjectLambdaTransformationConfigurationsList')
249
253
  ObjectLockEnabledForBucket = Shapes::BooleanShape.new(name: 'ObjectLockEnabledForBucket')
254
+ ObjectSizeGreaterThanBytes = Shapes::IntegerShape.new(name: 'ObjectSizeGreaterThanBytes')
255
+ ObjectSizeLessThanBytes = Shapes::IntegerShape.new(name: 'ObjectSizeLessThanBytes')
250
256
  OperationName = Shapes::StringShape.new(name: 'OperationName')
251
257
  OutputSchemaVersion = Shapes::StringShape.new(name: 'OutputSchemaVersion')
252
258
  Policy = Shapes::StringShape.new(name: 'Policy')
@@ -380,11 +386,20 @@ module Aws::S3Control
380
386
 
381
387
  AccountLevel.add_member(:activity_metrics, Shapes::ShapeRef.new(shape: ActivityMetrics, location_name: "ActivityMetrics"))
382
388
  AccountLevel.add_member(:bucket_level, Shapes::ShapeRef.new(shape: BucketLevel, required: true, location_name: "BucketLevel"))
389
+ AccountLevel.add_member(:advanced_cost_optimization_metrics, Shapes::ShapeRef.new(shape: AdvancedCostOptimizationMetrics, location_name: "AdvancedCostOptimizationMetrics"))
390
+ AccountLevel.add_member(:advanced_data_protection_metrics, Shapes::ShapeRef.new(shape: AdvancedDataProtectionMetrics, location_name: "AdvancedDataProtectionMetrics"))
391
+ AccountLevel.add_member(:detailed_status_codes_metrics, Shapes::ShapeRef.new(shape: DetailedStatusCodesMetrics, location_name: "DetailedStatusCodesMetrics"))
383
392
  AccountLevel.struct_class = Types::AccountLevel
384
393
 
385
394
  ActivityMetrics.add_member(:is_enabled, Shapes::ShapeRef.new(shape: IsEnabled, location_name: "IsEnabled"))
386
395
  ActivityMetrics.struct_class = Types::ActivityMetrics
387
396
 
397
+ AdvancedCostOptimizationMetrics.add_member(:is_enabled, Shapes::ShapeRef.new(shape: IsEnabled, location_name: "IsEnabled"))
398
+ AdvancedCostOptimizationMetrics.struct_class = Types::AdvancedCostOptimizationMetrics
399
+
400
+ AdvancedDataProtectionMetrics.add_member(:is_enabled, Shapes::ShapeRef.new(shape: IsEnabled, location_name: "IsEnabled"))
401
+ AdvancedDataProtectionMetrics.struct_class = Types::AdvancedDataProtectionMetrics
402
+
388
403
  AsyncErrorDetails.add_member(:code, Shapes::ShapeRef.new(shape: MaxLength1024String, location_name: "Code"))
389
404
  AsyncErrorDetails.add_member(:message, Shapes::ShapeRef.new(shape: MaxLength1024String, location_name: "Message"))
390
405
  AsyncErrorDetails.add_member(:resource, Shapes::ShapeRef.new(shape: MaxLength1024String, location_name: "Resource"))
@@ -421,6 +436,9 @@ module Aws::S3Control
421
436
 
422
437
  BucketLevel.add_member(:activity_metrics, Shapes::ShapeRef.new(shape: ActivityMetrics, location_name: "ActivityMetrics"))
423
438
  BucketLevel.add_member(:prefix_level, Shapes::ShapeRef.new(shape: PrefixLevel, location_name: "PrefixLevel"))
439
+ BucketLevel.add_member(:advanced_cost_optimization_metrics, Shapes::ShapeRef.new(shape: AdvancedCostOptimizationMetrics, location_name: "AdvancedCostOptimizationMetrics"))
440
+ BucketLevel.add_member(:advanced_data_protection_metrics, Shapes::ShapeRef.new(shape: AdvancedDataProtectionMetrics, location_name: "AdvancedDataProtectionMetrics"))
441
+ BucketLevel.add_member(:detailed_status_codes_metrics, Shapes::ShapeRef.new(shape: DetailedStatusCodesMetrics, location_name: "DetailedStatusCodesMetrics"))
424
442
  BucketLevel.struct_class = Types::BucketLevel
425
443
 
426
444
  Buckets.member = Shapes::ShapeRef.new(shape: S3BucketArnString, location_name: "Arn")
@@ -573,6 +591,9 @@ module Aws::S3Control
573
591
  DescribeMultiRegionAccessPointOperationResult.add_member(:async_operation, Shapes::ShapeRef.new(shape: AsyncOperation, location_name: "AsyncOperation"))
574
592
  DescribeMultiRegionAccessPointOperationResult.struct_class = Types::DescribeMultiRegionAccessPointOperationResult
575
593
 
594
+ DetailedStatusCodesMetrics.add_member(:is_enabled, Shapes::ShapeRef.new(shape: IsEnabled, location_name: "IsEnabled"))
595
+ DetailedStatusCodesMetrics.struct_class = Types::DetailedStatusCodesMetrics
596
+
576
597
  Endpoints.key = Shapes::ShapeRef.new(shape: NonEmptyMaxLength64String)
577
598
  Endpoints.value = Shapes::ShapeRef.new(shape: NonEmptyMaxLength1024String)
578
599
 
@@ -873,11 +894,15 @@ module Aws::S3Control
873
894
 
874
895
  LifecycleRuleAndOperator.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
875
896
  LifecycleRuleAndOperator.add_member(:tags, Shapes::ShapeRef.new(shape: S3TagSet, location_name: "Tags"))
897
+ LifecycleRuleAndOperator.add_member(:object_size_greater_than, Shapes::ShapeRef.new(shape: ObjectSizeGreaterThanBytes, location_name: "ObjectSizeGreaterThan", metadata: {"box"=>true}))
898
+ LifecycleRuleAndOperator.add_member(:object_size_less_than, Shapes::ShapeRef.new(shape: ObjectSizeLessThanBytes, location_name: "ObjectSizeLessThan", metadata: {"box"=>true}))
876
899
  LifecycleRuleAndOperator.struct_class = Types::LifecycleRuleAndOperator
877
900
 
878
901
  LifecycleRuleFilter.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
879
902
  LifecycleRuleFilter.add_member(:tag, Shapes::ShapeRef.new(shape: S3Tag, location_name: "Tag"))
880
903
  LifecycleRuleFilter.add_member(:and, Shapes::ShapeRef.new(shape: LifecycleRuleAndOperator, location_name: "And"))
904
+ LifecycleRuleFilter.add_member(:object_size_greater_than, Shapes::ShapeRef.new(shape: ObjectSizeGreaterThanBytes, location_name: "ObjectSizeGreaterThan", metadata: {"box"=>true}))
905
+ LifecycleRuleFilter.add_member(:object_size_less_than, Shapes::ShapeRef.new(shape: ObjectSizeLessThanBytes, location_name: "ObjectSizeLessThan", metadata: {"box"=>true}))
881
906
  LifecycleRuleFilter.struct_class = Types::LifecycleRuleFilter
882
907
 
883
908
  LifecycleRules.member = Shapes::ShapeRef.new(shape: LifecycleRule, location_name: "Rule")
@@ -971,6 +996,7 @@ module Aws::S3Control
971
996
  NoSuchPublicAccessBlockConfiguration.struct_class = Types::NoSuchPublicAccessBlockConfiguration
972
997
 
973
998
  NoncurrentVersionExpiration.add_member(:noncurrent_days, Shapes::ShapeRef.new(shape: Days, location_name: "NoncurrentDays"))
999
+ NoncurrentVersionExpiration.add_member(:newer_noncurrent_versions, Shapes::ShapeRef.new(shape: NoncurrentVersionCount, location_name: "NewerNoncurrentVersions", metadata: {"box"=>true}))
974
1000
  NoncurrentVersionExpiration.struct_class = Types::NoncurrentVersionExpiration
975
1001
 
976
1002
  NoncurrentVersionTransition.add_member(:noncurrent_days, Shapes::ShapeRef.new(shape: Days, location_name: "NoncurrentDays"))
@@ -119,21 +119,21 @@ OiJFbmRwb2ludCJ9XX0seyJmbiI6InBhcnNlVVJMIiwiYXJndiI6W3sicmVm
119
119
  IjoiRW5kcG9pbnQifV0sImFzc2lnbiI6InVybCJ9XSwiZW5kcG9pbnQiOnsi
120
120
  dXJsIjoie3VybCNzY2hlbWV9Oi8ve3VybCNhdXRob3JpdHl9e3VybCNwYXRo
121
121
  fSIsInByb3BlcnRpZXMiOnsiYXV0aFNjaGVtZXMiOlt7Im5hbWUiOiJzaWd2
122
- NCIsInNpZ25pbmdSZWdpb24iOiJ7UmVnaW9ufSIsImRpc2FibGVEb3VibGVF
123
- bmNvZGluZyI6dHJ1ZSwic2lnbmluZ05hbWUiOiJzMy1vdXRwb3N0cyJ9XX0s
122
+ NCIsImRpc2FibGVEb3VibGVFbmNvZGluZyI6dHJ1ZSwic2lnbmluZ05hbWUi
123
+ OiJzMy1vdXRwb3N0cyIsInNpZ25pbmdSZWdpb24iOiJ7UmVnaW9ufSJ9XX0s
124
124
  ImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In0seyJjb25kaXRpb25z
125
125
  IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VG
126
126
  SVBTIn0sdHJ1ZV19XSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zMy1v
127
127
  dXRwb3N0cy1maXBzLntSZWdpb259LntwYXJ0aXRpb25SZXN1bHQjZG5zU3Vm
128
128
  Zml4fSIsInByb3BlcnRpZXMiOnsiYXV0aFNjaGVtZXMiOlt7Im5hbWUiOiJz
129
- aWd2NCIsInNpZ25pbmdSZWdpb24iOiJ7UmVnaW9ufSIsImRpc2FibGVEb3Vi
130
- bGVFbmNvZGluZyI6dHJ1ZSwic2lnbmluZ05hbWUiOiJzMy1vdXRwb3N0cyJ9
129
+ aWd2NCIsImRpc2FibGVEb3VibGVFbmNvZGluZyI6dHJ1ZSwic2lnbmluZ05h
130
+ bWUiOiJzMy1vdXRwb3N0cyIsInNpZ25pbmdSZWdpb24iOiJ7UmVnaW9ufSJ9
131
131
  XX0sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In0seyJjb25kaXRp
132
132
  b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zMy1vdXRwb3N0
133
133
  cy57UmVnaW9ufS57cGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9w
134
- ZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJzaWdu
135
- aW5nUmVnaW9uIjoie1JlZ2lvbn0iLCJkaXNhYmxlRG91YmxlRW5jb2Rpbmci
136
- OnRydWUsInNpZ25pbmdOYW1lIjoiczMtb3V0cG9zdHMifV19LCJoZWFkZXJz
134
+ ZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJkaXNh
135
+ YmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdOYW1lIjoiczMtb3V0
136
+ cG9zdHMiLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0ifV19LCJoZWFkZXJz
137
137
  Ijp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfV19LHsiY29uZGl0aW9ucyI6
138
138
  W10sImVycm9yIjoiSW52YWxpZCByZWdpb246IHJlZ2lvbiB3YXMgbm90IGEg
139
139
  dmFsaWQgRE5TIG5hbWUuIiwidHlwZSI6ImVycm9yIn1dfV19XX1dfV19XX0s
@@ -220,9 +220,9 @@ bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVz
220
220
  ZUZJUFMifSx0cnVlXX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3Mz
221
221
  LW91dHBvc3RzLWZpcHMue2FjY2Vzc1BvaW50QXJuI3JlZ2lvbn0ue2FyblBh
222
222
  cnRpdGlvbiNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6eyJhdXRoU2NoZW1l
223
- cyI6W3sibmFtZSI6InNpZ3Y0Iiwic2lnbmluZ1JlZ2lvbiI6InthY2Nlc3NQ
224
- b2ludEFybiNyZWdpb259IiwiZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0cnVl
225
- LCJzaWduaW5nTmFtZSI6InMzLW91dHBvc3RzIn1dfSwiaGVhZGVycyI6eyJ4
223
+ cyI6W3sibmFtZSI6InNpZ3Y0IiwiZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0
224
+ cnVlLCJzaWduaW5nTmFtZSI6InMzLW91dHBvc3RzIiwic2lnbmluZ1JlZ2lv
225
+ biI6InthY2Nlc3NQb2ludEFybiNyZWdpb259In1dfSwiaGVhZGVycyI6eyJ4
226
226
  LWFtei1hY2NvdW50LWlkIjpbInthY2Nlc3NQb2ludEFybiNhY2NvdW50SWR9
227
227
  Il0sIngtYW16LW91dHBvc3QtaWQiOlsie291dHBvc3RJZH0iXX19LCJ0eXBl
228
228
  IjoiZW5kcG9pbnQifSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiaXNTZXQiLCJh
@@ -230,17 +230,17 @@ cmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBhcnNlVVJMIiwi
230
230
  YXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6InVybCJ9XSwi
231
231
  ZW5kcG9pbnQiOnsidXJsIjoie3VybCNzY2hlbWV9Oi8ve3VybCNhdXRob3Jp
232
232
  dHl9e3VybCNwYXRofSIsInByb3BlcnRpZXMiOnsiYXV0aFNjaGVtZXMiOlt7
233
- Im5hbWUiOiJzaWd2NCIsInNpZ25pbmdSZWdpb24iOiJ7YWNjZXNzUG9pbnRB
234
- cm4jcmVnaW9ufSIsImRpc2FibGVEb3VibGVFbmNvZGluZyI6dHJ1ZSwic2ln
235
- bmluZ05hbWUiOiJzMy1vdXRwb3N0cyJ9XX0sImhlYWRlcnMiOnsieC1hbXot
233
+ Im5hbWUiOiJzaWd2NCIsImRpc2FibGVEb3VibGVFbmNvZGluZyI6dHJ1ZSwi
234
+ c2lnbmluZ05hbWUiOiJzMy1vdXRwb3N0cyIsInNpZ25pbmdSZWdpb24iOiJ7
235
+ YWNjZXNzUG9pbnRBcm4jcmVnaW9ufSJ9XX0sImhlYWRlcnMiOnsieC1hbXot
236
236
  YWNjb3VudC1pZCI6WyJ7YWNjZXNzUG9pbnRBcm4jYWNjb3VudElkfSJdLCJ4
237
237
  LWFtei1vdXRwb3N0LWlkIjpbIntvdXRwb3N0SWR9Il19fSwidHlwZSI6ImVu
238
238
  ZHBvaW50In0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoi
239
239
  aHR0cHM6Ly9zMy1vdXRwb3N0cy57YWNjZXNzUG9pbnRBcm4jcmVnaW9ufS57
240
240
  YXJuUGFydGl0aW9uI2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7ImF1dGhT
241
- Y2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJzaWduaW5nUmVnaW9uIjoie2Fj
242
- Y2Vzc1BvaW50QXJuI3JlZ2lvbn0iLCJkaXNhYmxlRG91YmxlRW5jb2Rpbmci
243
- OnRydWUsInNpZ25pbmdOYW1lIjoiczMtb3V0cG9zdHMifV19LCJoZWFkZXJz
241
+ Y2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJkaXNhYmxlRG91YmxlRW5jb2Rp
242
+ bmciOnRydWUsInNpZ25pbmdOYW1lIjoiczMtb3V0cG9zdHMiLCJzaWduaW5n
243
+ UmVnaW9uIjoie2FjY2Vzc1BvaW50QXJuI3JlZ2lvbn0ifV19LCJoZWFkZXJz
244
244
  Ijp7IngtYW16LWFjY291bnQtaWQiOlsie2FjY2Vzc1BvaW50QXJuI2FjY291
245
245
  bnRJZH0iXSwieC1hbXotb3V0cG9zdC1pZCI6WyJ7b3V0cG9zdElkfSJdfX0s
246
246
  InR5cGUiOiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJv
@@ -351,26 +351,26 @@ IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VG
351
351
  SVBTIn0sdHJ1ZV19XSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zMy1v
352
352
  dXRwb3N0cy1maXBzLntidWNrZXRBcm4jcmVnaW9ufS57YXJuUGFydGl0aW9u
353
353
  I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJu
354
- YW1lIjoic2lndjQiLCJzaWduaW5nUmVnaW9uIjoie2J1Y2tldEFybiNyZWdp
355
- b259IiwiZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0cnVlLCJzaWduaW5nTmFt
356
- ZSI6InMzLW91dHBvc3RzIn1dfSwiaGVhZGVycyI6eyJ4LWFtei1hY2NvdW50
354
+ YW1lIjoic2lndjQiLCJkaXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNp
355
+ Z25pbmdOYW1lIjoiczMtb3V0cG9zdHMiLCJzaWduaW5nUmVnaW9uIjoie2J1
356
+ Y2tldEFybiNyZWdpb259In1dfSwiaGVhZGVycyI6eyJ4LWFtei1hY2NvdW50
357
357
  LWlkIjpbIntidWNrZXRBcm4jYWNjb3VudElkfSJdLCJ4LWFtei1vdXRwb3N0
358
358
  LWlkIjpbIntvdXRwb3N0SWR9Il19fSwidHlwZSI6ImVuZHBvaW50In0seyJj
359
359
  b25kaXRpb25zIjpbeyJmbiI6ImlzU2V0IiwiYXJndiI6W3sicmVmIjoiRW5k
360
360
  cG9pbnQifV19LHsiZm4iOiJwYXJzZVVSTCIsImFyZ3YiOlt7InJlZiI6IkVu
361
361
  ZHBvaW50In1dLCJhc3NpZ24iOiJ1cmwifV0sImVuZHBvaW50Ijp7InVybCI6
362
362
  Int1cmwjc2NoZW1lfTovL3t1cmwjYXV0aG9yaXR5fXt1cmwjcGF0aH0iLCJw
363
- cm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJz
364
- aWduaW5nUmVnaW9uIjoie2J1Y2tldEFybiNyZWdpb259IiwiZGlzYWJsZURv
365
- dWJsZUVuY29kaW5nIjp0cnVlLCJzaWduaW5nTmFtZSI6InMzLW91dHBvc3Rz
363
+ cm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJk
364
+ aXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdOYW1lIjoiczMt
365
+ b3V0cG9zdHMiLCJzaWduaW5nUmVnaW9uIjoie2J1Y2tldEFybiNyZWdpb259
366
366
  In1dfSwiaGVhZGVycyI6eyJ4LWFtei1hY2NvdW50LWlkIjpbIntidWNrZXRB
367
367
  cm4jYWNjb3VudElkfSJdLCJ4LWFtei1vdXRwb3N0LWlkIjpbIntvdXRwb3N0
368
368
  SWR9Il19fSwidHlwZSI6ImVuZHBvaW50In0seyJjb25kaXRpb25zIjpbXSwi
369
369
  ZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zMy1vdXRwb3N0cy57YnVja2V0
370
370
  QXJuI3JlZ2lvbn0ue2FyblBhcnRpdGlvbiNkbnNTdWZmaXh9IiwicHJvcGVy
371
- dGllcyI6eyJhdXRoU2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0Iiwic2lnbmlu
372
- Z1JlZ2lvbiI6IntidWNrZXRBcm4jcmVnaW9ufSIsImRpc2FibGVEb3VibGVF
373
- bmNvZGluZyI6dHJ1ZSwic2lnbmluZ05hbWUiOiJzMy1vdXRwb3N0cyJ9XX0s
371
+ dGllcyI6eyJhdXRoU2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0IiwiZGlzYWJs
372
+ ZURvdWJsZUVuY29kaW5nIjp0cnVlLCJzaWduaW5nTmFtZSI6InMzLW91dHBv
373
+ c3RzIiwic2lnbmluZ1JlZ2lvbiI6IntidWNrZXRBcm4jcmVnaW9ufSJ9XX0s
374
374
  ImhlYWRlcnMiOnsieC1hbXotYWNjb3VudC1pZCI6WyJ7YnVja2V0QXJuI2Fj
375
375
  Y291bnRJZH0iXSwieC1hbXotb3V0cG9zdC1pZCI6WyJ7b3V0cG9zdElkfSJd
376
376
  fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJl
@@ -442,13 +442,13 @@ dWlyZXNBY2NvdW50SWQifSx0cnVlXX0seyJmbiI6ImlzU2V0IiwiYXJndiI6
442
442
  W3sicmVmIjoiQWNjb3VudElkIn1dfV0sImVuZHBvaW50Ijp7InVybCI6Int1
443
443
  cmwjc2NoZW1lfTovL3tBY2NvdW50SWR9Lnt1cmwjYXV0aG9yaXR5fXt1cmwj
444
444
  cGF0aH0iLCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoi
445
- c2lndjQiLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0iLCJkaXNhYmxlRG91
446
- YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdOYW1lIjoiczMifV19LCJoZWFk
445
+ c2lndjQiLCJkaXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdO
446
+ YW1lIjoiczMiLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0ifV19LCJoZWFk
447
447
  ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9ucyI6W10s
448
448
  ImVuZHBvaW50Ijp7InVybCI6Int1cmwjc2NoZW1lfTovL3t1cmwjYXV0aG9y
449
449
  aXR5fXt1cmwjcGF0aH0iLCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpb
450
- eyJuYW1lIjoic2lndjQiLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0iLCJk
451
- aXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdOYW1lIjoiczMi
450
+ eyJuYW1lIjoic2lndjQiLCJkaXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUs
451
+ InNpZ25pbmdOYW1lIjoiczMiLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0i
452
452
  fV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfSx7ImNv
453
453
  bmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
454
454
  b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJV
@@ -460,17 +460,17 @@ dElkIn0sdHJ1ZV19LHsiZm4iOiJpc1NldCIsImFyZ3YiOlt7InJlZiI6IkFj
460
460
  Y291bnRJZCJ9XX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3tBY2Nv
461
461
  dW50SWR9LnMzLWNvbnRyb2wtZmlwcy5kdWFsc3RhY2sue1JlZ2lvbn0ue3Bh
462
462
  cnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6eyJhdXRo
463
- U2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0Iiwic2lnbmluZ1JlZ2lvbiI6IntS
464
- ZWdpb259IiwiZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0cnVlLCJzaWduaW5n
465
- TmFtZSI6InMzIn1dfSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
463
+ U2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0IiwiZGlzYWJsZURvdWJsZUVuY29k
464
+ aW5nIjp0cnVlLCJzaWduaW5nTmFtZSI6InMzIiwic2lnbmluZ1JlZ2lvbiI6
465
+ IntSZWdpb259In1dfSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
466
466
  fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
467
467
  Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
468
468
  bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJl
469
469
  bmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3MzLWNvbnRyb2wtZmlwcy5kdWFs
470
470
  c3RhY2sue1JlZ2lvbn0ue3BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9Iiwi
471
471
  cHJvcGVydGllcyI6eyJhdXRoU2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0Iiwi
472
- c2lnbmluZ1JlZ2lvbiI6IntSZWdpb259IiwiZGlzYWJsZURvdWJsZUVuY29k
473
- aW5nIjp0cnVlLCJzaWduaW5nTmFtZSI6InMzIn1dfSwiaGVhZGVycyI6e319
472
+ ZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0cnVlLCJzaWduaW5nTmFtZSI6InMz
473
+ Iiwic2lnbmluZ1JlZ2lvbiI6IntSZWdpb259In1dfSwiaGVhZGVycyI6e319
474
474
  LCJ0eXBlIjoiZW5kcG9pbnQifSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9v
475
475
  bGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0s
476
476
  eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFs
@@ -481,16 +481,16 @@ Zm4iOiJpc1NldCIsImFyZ3YiOlt7InJlZiI6IkFjY291bnRJZCJ9XX1dLCJl
481
481
  bmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3tBY2NvdW50SWR9LnMzLWNvbnRy
482
482
  b2wtZmlwcy57UmVnaW9ufS57cGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0i
483
483
  LCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQi
484
- LCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0iLCJkaXNhYmxlRG91YmxlRW5j
485
- b2RpbmciOnRydWUsInNpZ25pbmdOYW1lIjoiczMifV19LCJoZWFkZXJzIjp7
484
+ LCJkaXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdOYW1lIjoi
485
+ czMiLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0ifV19LCJoZWFkZXJzIjp7
486
486
  fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9ucyI6W3siZm4iOiJi
487
487
  b29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVd
488
488
  fSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1
489
489
  YWxTdGFjayJ9LGZhbHNlXX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczov
490
490
  L3MzLWNvbnRyb2wtZmlwcy57UmVnaW9ufS57cGFydGl0aW9uUmVzdWx0I2Ru
491
491
  c1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1l
492
- Ijoic2lndjQiLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0iLCJkaXNhYmxl
493
- RG91YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdOYW1lIjoiczMifV19LCJo
492
+ Ijoic2lndjQiLCJkaXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNpZ25p
493
+ bmdOYW1lIjoiczMiLCJzaWduaW5nUmVnaW9uIjoie1JlZ2lvbn0ifV19LCJo
494
494
  ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9ucyI6
495
495
  W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
496
496
  UyJ9LGZhbHNlXX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJy
@@ -501,17 +501,17 @@ fSx0cnVlXX0seyJmbiI6ImlzU2V0IiwiYXJndiI6W3sicmVmIjoiQWNjb3Vu
501
501
  dElkIn1dfV0sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8ve0FjY291bnRJ
502
502
  ZH0uczMtY29udHJvbC5kdWFsc3RhY2sue1JlZ2lvbn0ue3BhcnRpdGlvblJl
503
503
  c3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6eyJhdXRoU2NoZW1lcyI6
504
- W3sibmFtZSI6InNpZ3Y0Iiwic2lnbmluZ1JlZ2lvbiI6IntSZWdpb259Iiwi
505
- ZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0cnVlLCJzaWduaW5nTmFtZSI6InMz
504
+ W3sibmFtZSI6InNpZ3Y0IiwiZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0cnVl
505
+ LCJzaWduaW5nTmFtZSI6InMzIiwic2lnbmluZ1JlZ2lvbiI6IntSZWdpb259
506
506
  In1dfSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifSx7ImNvbmRp
507
507
  dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6
508
508
  IlVzZUZJUFMifSxmYWxzZV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwiYXJn
509
509
  diI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZW5kcG9pbnQi
510
510
  OnsidXJsIjoiaHR0cHM6Ly9zMy1jb250cm9sLmR1YWxzdGFjay57UmVnaW9u
511
511
  fS57cGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7
512
- ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJzaWduaW5nUmVnaW9u
513
- Ijoie1JlZ2lvbn0iLCJkaXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUsInNp
514
- Z25pbmdOYW1lIjoiczMifV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRw
512
+ ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJkaXNhYmxlRG91Ymxl
513
+ RW5jb2RpbmciOnRydWUsInNpZ25pbmdOYW1lIjoiczMiLCJzaWduaW5nUmVn
514
+ aW9uIjoie1JlZ2lvbn0ifV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRw
515
515
  b2ludCJ9LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwi
516
516
  YXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LGZhbHNlXX0seyJmbiI6ImJvb2xl
517
517
  YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSxmYWxz
@@ -521,17 +521,17 @@ ZiI6IlJlcXVpcmVzQWNjb3VudElkIn0sdHJ1ZV19LHsiZm4iOiJpc1NldCIs
521
521
  ImFyZ3YiOlt7InJlZiI6IkFjY291bnRJZCJ9XX1dLCJlbmRwb2ludCI6eyJ1
522
522
  cmwiOiJodHRwczovL3tBY2NvdW50SWR9LnMzLWNvbnRyb2wue1JlZ2lvbn0u
523
523
  e3BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6eyJh
524
- dXRoU2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0Iiwic2lnbmluZ1JlZ2lvbiI6
525
- IntSZWdpb259IiwiZGlzYWJsZURvdWJsZUVuY29kaW5nIjp0cnVlLCJzaWdu
526
- aW5nTmFtZSI6InMzIn1dfSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9p
524
+ dXRoU2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0IiwiZGlzYWJsZURvdWJsZUVu
525
+ Y29kaW5nIjp0cnVlLCJzaWduaW5nTmFtZSI6InMzIiwic2lnbmluZ1JlZ2lv
526
+ biI6IntSZWdpb259In1dfSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9p
527
527
  bnQifSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFy
528
528
  Z3YiOlt7InJlZiI6IlVzZUZJUFMifSxmYWxzZV19LHsiZm4iOiJib29sZWFu
529
529
  RXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sZmFsc2Vd
530
530
  fV0sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vczMtY29udHJvbC57UmVn
531
531
  aW9ufS57cGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVz
532
- Ijp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJzaWduaW5nUmVn
533
- aW9uIjoie1JlZ2lvbn0iLCJkaXNhYmxlRG91YmxlRW5jb2RpbmciOnRydWUs
534
- InNpZ25pbmdOYW1lIjoiczMifV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
532
+ Ijp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJkaXNhYmxlRG91
533
+ YmxlRW5jb2RpbmciOnRydWUsInNpZ25pbmdOYW1lIjoiczMiLCJzaWduaW5n
534
+ UmVnaW9uIjoie1JlZ2lvbn0ifV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
535
535
  bmRwb2ludCJ9XX1dfV19XX1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9y
536
536
  IjoiSW52YWxpZCByZWdpb246IHJlZ2lvbiB3YXMgbm90IGEgdmFsaWQgRE5T
537
537
  IG5hbWUuIiwidHlwZSI6ImVycm9yIn1dfV19LHsiY29uZGl0aW9ucyI6W10s
@@ -82,9 +82,19 @@ module Aws::S3Control
82
82
  include Aws::Structure
83
83
  end
84
84
 
85
- # A container for the account level Amazon S3 Storage Lens
85
+ # A container for the account-level Amazon S3 Storage Lens
86
86
  # configuration.
87
87
  #
88
+ # For more information about S3 Storage Lens, see [Assessing your
89
+ # storage activity and usage with S3 Storage Lens][1] in the *Amazon S3
90
+ # User Guide*. For a complete list of S3 Storage Lens metrics, see [S3
91
+ # Storage Lens metrics glossary][2] in the *Amazon S3 User Guide*.
92
+ #
93
+ #
94
+ #
95
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens.html
96
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_metrics_glossary.html
97
+ #
88
98
  # @note When making an API call, you may pass AccountLevel
89
99
  # data as a hash:
90
100
  #
@@ -106,27 +116,73 @@ module Aws::S3Control
106
116
  # },
107
117
  # },
108
118
  # },
119
+ # advanced_cost_optimization_metrics: {
120
+ # is_enabled: false,
121
+ # },
122
+ # advanced_data_protection_metrics: {
123
+ # is_enabled: false,
124
+ # },
125
+ # detailed_status_codes_metrics: {
126
+ # is_enabled: false,
127
+ # },
128
+ # },
129
+ # advanced_cost_optimization_metrics: {
130
+ # is_enabled: false,
131
+ # },
132
+ # advanced_data_protection_metrics: {
133
+ # is_enabled: false,
134
+ # },
135
+ # detailed_status_codes_metrics: {
136
+ # is_enabled: false,
109
137
  # },
110
138
  # }
111
139
  #
112
140
  # @!attribute [rw] activity_metrics
113
- # A container for the S3 Storage Lens activity metrics.
141
+ # A container for S3 Storage Lens activity metrics.
114
142
  # @return [Types::ActivityMetrics]
115
143
  #
116
144
  # @!attribute [rw] bucket_level
117
145
  # A container for the S3 Storage Lens bucket-level configuration.
118
146
  # @return [Types::BucketLevel]
119
147
  #
148
+ # @!attribute [rw] advanced_cost_optimization_metrics
149
+ # A container for S3 Storage Lens advanced cost-optimization metrics.
150
+ # @return [Types::AdvancedCostOptimizationMetrics]
151
+ #
152
+ # @!attribute [rw] advanced_data_protection_metrics
153
+ # A container for S3 Storage Lens advanced data-protection metrics.
154
+ # @return [Types::AdvancedDataProtectionMetrics]
155
+ #
156
+ # @!attribute [rw] detailed_status_codes_metrics
157
+ # A container for detailed status code metrics.
158
+ # @return [Types::DetailedStatusCodesMetrics]
159
+ #
120
160
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/AccountLevel AWS API Documentation
121
161
  #
122
162
  class AccountLevel < Struct.new(
123
163
  :activity_metrics,
124
- :bucket_level)
164
+ :bucket_level,
165
+ :advanced_cost_optimization_metrics,
166
+ :advanced_data_protection_metrics,
167
+ :detailed_status_codes_metrics)
125
168
  SENSITIVE = []
126
169
  include Aws::Structure
127
170
  end
128
171
 
129
- # A container for the activity metrics.
172
+ # The container element for Amazon S3 Storage Lens activity metrics.
173
+ # Activity metrics show details about how your storage is requested,
174
+ # such as requests (for example, All requests, Get requests, Put
175
+ # requests), bytes uploaded or downloaded, and errors.
176
+ #
177
+ # For more information about S3 Storage Lens, see [Assessing your
178
+ # storage activity and usage with S3 Storage Lens][1] in the *Amazon S3
179
+ # User Guide*. For a complete list of S3 Storage Lens metrics, see [S3
180
+ # Storage Lens metrics glossary][2] in the *Amazon S3 User Guide*.
181
+ #
182
+ #
183
+ #
184
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens.html
185
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_metrics_glossary.html
130
186
  #
131
187
  # @note When making an API call, you may pass ActivityMetrics
132
188
  # data as a hash:
@@ -136,7 +192,7 @@ module Aws::S3Control
136
192
  # }
137
193
  #
138
194
  # @!attribute [rw] is_enabled
139
- # A container for whether the activity metrics are enabled.
195
+ # A container that indicates whether activity metrics are enabled.
140
196
  # @return [Boolean]
141
197
  #
142
198
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/ActivityMetrics AWS API Documentation
@@ -147,6 +203,77 @@ module Aws::S3Control
147
203
  include Aws::Structure
148
204
  end
149
205
 
206
+ # The container element for Amazon S3 Storage Lens advanced
207
+ # cost-optimization metrics. Advanced cost-optimization metrics provide
208
+ # insights that you can use to manage and optimize your storage costs,
209
+ # for example, lifecycle rule counts for transitions, expirations, and
210
+ # incomplete multipart uploads.
211
+ #
212
+ # For more information about S3 Storage Lens, see [Assessing your
213
+ # storage activity and usage with S3 Storage Lens][1] in the *Amazon S3
214
+ # User Guide*. For a complete list of S3 Storage Lens metrics, see [S3
215
+ # Storage Lens metrics glossary][2] in the *Amazon S3 User Guide*.
216
+ #
217
+ #
218
+ #
219
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens.html
220
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_metrics_glossary.html
221
+ #
222
+ # @note When making an API call, you may pass AdvancedCostOptimizationMetrics
223
+ # data as a hash:
224
+ #
225
+ # {
226
+ # is_enabled: false,
227
+ # }
228
+ #
229
+ # @!attribute [rw] is_enabled
230
+ # A container that indicates whether advanced cost-optimization
231
+ # metrics are enabled.
232
+ # @return [Boolean]
233
+ #
234
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/AdvancedCostOptimizationMetrics AWS API Documentation
235
+ #
236
+ class AdvancedCostOptimizationMetrics < Struct.new(
237
+ :is_enabled)
238
+ SENSITIVE = []
239
+ include Aws::Structure
240
+ end
241
+
242
+ # The container element for Amazon S3 Storage Lens advanced
243
+ # data-protection metrics. Advanced data-protection metrics provide
244
+ # insights that you can use to perform audits and protect your data, for
245
+ # example replication rule counts within and across Regions.
246
+ #
247
+ # For more information about S3 Storage Lens, see [Assessing your
248
+ # storage activity and usage with S3 Storage Lens][1] in the *Amazon S3
249
+ # User Guide*. For a complete list of S3 Storage Lens metrics, see [S3
250
+ # Storage Lens metrics glossary][2] in the *Amazon S3 User Guide*.
251
+ #
252
+ #
253
+ #
254
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens.html
255
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_metrics_glossary.html
256
+ #
257
+ # @note When making an API call, you may pass AdvancedDataProtectionMetrics
258
+ # data as a hash:
259
+ #
260
+ # {
261
+ # is_enabled: false,
262
+ # }
263
+ #
264
+ # @!attribute [rw] is_enabled
265
+ # A container that indicates whether advanced data-protection metrics
266
+ # are enabled.
267
+ # @return [Boolean]
268
+ #
269
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/AdvancedDataProtectionMetrics AWS API Documentation
270
+ #
271
+ class AdvancedDataProtectionMetrics < Struct.new(
272
+ :is_enabled)
273
+ SENSITIVE = []
274
+ include Aws::Structure
275
+ end
276
+
150
277
  # Error details for the failed asynchronous operation.
151
278
  #
152
279
  # @!attribute [rw] code
@@ -330,7 +457,16 @@ module Aws::S3Control
330
457
  #
331
458
  class BucketAlreadyOwnedByYou < Aws::EmptyStructure; end
332
459
 
333
- # A container for the bucket-level configuration.
460
+ # A container for the bucket-level configuration for Amazon S3 Storage
461
+ # Lens.
462
+ #
463
+ # For more information about S3 Storage Lens, see [Assessing your
464
+ # storage activity and usage with S3 Storage Lens][1] in the *Amazon S3
465
+ # User Guide*.
466
+ #
467
+ #
468
+ #
469
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens.html
334
470
  #
335
471
  # @note When making an API call, you may pass BucketLevel
336
472
  # data as a hash:
@@ -349,23 +485,49 @@ module Aws::S3Control
349
485
  # },
350
486
  # },
351
487
  # },
488
+ # advanced_cost_optimization_metrics: {
489
+ # is_enabled: false,
490
+ # },
491
+ # advanced_data_protection_metrics: {
492
+ # is_enabled: false,
493
+ # },
494
+ # detailed_status_codes_metrics: {
495
+ # is_enabled: false,
496
+ # },
352
497
  # }
353
498
  #
354
499
  # @!attribute [rw] activity_metrics
355
- # A container for the bucket-level activity metrics for Amazon S3
356
- # Storage Lens
500
+ # A container for the bucket-level activity metrics for S3 Storage
501
+ # Lens.
357
502
  # @return [Types::ActivityMetrics]
358
503
  #
359
504
  # @!attribute [rw] prefix_level
360
- # A container for the bucket-level prefix-level metrics for S3 Storage
361
- # Lens
505
+ # A container for the prefix-level metrics for S3 Storage Lens.
362
506
  # @return [Types::PrefixLevel]
363
507
  #
508
+ # @!attribute [rw] advanced_cost_optimization_metrics
509
+ # A container for bucket-level advanced cost-optimization metrics for
510
+ # S3 Storage Lens.
511
+ # @return [Types::AdvancedCostOptimizationMetrics]
512
+ #
513
+ # @!attribute [rw] advanced_data_protection_metrics
514
+ # A container for bucket-level advanced data-protection metrics for S3
515
+ # Storage Lens.
516
+ # @return [Types::AdvancedDataProtectionMetrics]
517
+ #
518
+ # @!attribute [rw] detailed_status_codes_metrics
519
+ # A container for bucket-level detailed status code metrics for S3
520
+ # Storage Lens.
521
+ # @return [Types::DetailedStatusCodesMetrics]
522
+ #
364
523
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/BucketLevel AWS API Documentation
365
524
  #
366
525
  class BucketLevel < Struct.new(
367
526
  :activity_metrics,
368
- :prefix_level)
527
+ :prefix_level,
528
+ :advanced_cost_optimization_metrics,
529
+ :advanced_data_protection_metrics,
530
+ :detailed_status_codes_metrics)
369
531
  SENSITIVE = []
370
532
  include Aws::Structure
371
533
  end
@@ -1026,7 +1188,7 @@ module Aws::S3Control
1026
1188
  # bucket or object public, see [The Meaning of "Public"][1] in the
1027
1189
  # *Amazon S3 User Guide*.
1028
1190
  #
1029
- # This is not supported for Amazon S3 on Outposts.
1191
+ # This data type is not supported for Amazon S3 on Outposts.
1030
1192
  #
1031
1193
  #
1032
1194
  #
@@ -1669,6 +1831,41 @@ module Aws::S3Control
1669
1831
  include Aws::Structure
1670
1832
  end
1671
1833
 
1834
+ # The container element for Amazon S3 Storage Lens detailed status code
1835
+ # metrics. Detailed status code metrics generate metrics for HTTP status
1836
+ # codes, such as `200 OK`, `403 Forbidden`, `503 Service Unavailable`
1837
+ # and others.
1838
+ #
1839
+ # For more information about S3 Storage Lens, see [Assessing your
1840
+ # storage activity and usage with S3 Storage Lens][1] in the *Amazon S3
1841
+ # User Guide*. For a complete list of S3 Storage Lens metrics, see [S3
1842
+ # Storage Lens metrics glossary][2] in the *Amazon S3 User Guide*.
1843
+ #
1844
+ #
1845
+ #
1846
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens.html
1847
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_metrics_glossary.html
1848
+ #
1849
+ # @note When making an API call, you may pass DetailedStatusCodesMetrics
1850
+ # data as a hash:
1851
+ #
1852
+ # {
1853
+ # is_enabled: false,
1854
+ # }
1855
+ #
1856
+ # @!attribute [rw] is_enabled
1857
+ # A container that indicates whether detailed status code metrics are
1858
+ # enabled.
1859
+ # @return [Boolean]
1860
+ #
1861
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/DetailedStatusCodesMetrics AWS API Documentation
1862
+ #
1863
+ class DetailedStatusCodesMetrics < Struct.new(
1864
+ :is_enabled)
1865
+ SENSITIVE = []
1866
+ include Aws::Structure
1867
+ end
1868
+
1672
1869
  # The last established access control policy for a Multi-Region Access
1673
1870
  # Point.
1674
1871
  #
@@ -2084,7 +2281,7 @@ module Aws::S3Control
2084
2281
  # bucket or object public, see [The Meaning of "Public"][1] in the
2085
2282
  # *Amazon S3 User Guide*.
2086
2283
  #
2087
- # This is not supported for Amazon S3 on Outposts.
2284
+ # This data type is not supported for Amazon S3 on Outposts.
2088
2285
  #
2089
2286
  #
2090
2287
  #
@@ -3241,7 +3438,7 @@ module Aws::S3Control
3241
3438
  # @return [Types::S3CopyObjectOperation]
3242
3439
  #
3243
3440
  # @!attribute [rw] s3_put_object_acl
3244
- # Directs the specified job to run a PUT Object acl call on every
3441
+ # Directs the specified job to run a `PutObjectAcl` call on every
3245
3442
  # object in the manifest.
3246
3443
  # @return [Types::S3SetObjectAclOperation]
3247
3444
  #
@@ -3459,7 +3656,11 @@ module Aws::S3Control
3459
3656
  # value: "TagValueString", # required
3460
3657
  # },
3461
3658
  # ],
3659
+ # object_size_greater_than: 1,
3660
+ # object_size_less_than: 1,
3462
3661
  # },
3662
+ # object_size_greater_than: 1,
3663
+ # object_size_less_than: 1,
3463
3664
  # },
3464
3665
  # status: "Enabled", # required, accepts Enabled, Disabled
3465
3666
  # transitions: [
@@ -3477,6 +3678,7 @@ module Aws::S3Control
3477
3678
  # ],
3478
3679
  # noncurrent_version_expiration: {
3479
3680
  # noncurrent_days: 1,
3681
+ # newer_noncurrent_versions: 1,
3480
3682
  # },
3481
3683
  # abort_incomplete_multipart_upload: {
3482
3684
  # days_after_initiation: 1,
@@ -3561,7 +3763,11 @@ module Aws::S3Control
3561
3763
  # value: "TagValueString", # required
3562
3764
  # },
3563
3765
  # ],
3766
+ # object_size_greater_than: 1,
3767
+ # object_size_less_than: 1,
3564
3768
  # },
3769
+ # object_size_greater_than: 1,
3770
+ # object_size_less_than: 1,
3565
3771
  # },
3566
3772
  # status: "Enabled", # required, accepts Enabled, Disabled
3567
3773
  # transitions: [
@@ -3579,6 +3785,7 @@ module Aws::S3Control
3579
3785
  # ],
3580
3786
  # noncurrent_version_expiration: {
3581
3787
  # noncurrent_days: 1,
3788
+ # newer_noncurrent_versions: 1,
3582
3789
  # },
3583
3790
  # abort_incomplete_multipart_upload: {
3584
3791
  # days_after_initiation: 1,
@@ -3628,10 +3835,6 @@ module Aws::S3Control
3628
3835
  #
3629
3836
  # @!attribute [rw] noncurrent_version_expiration
3630
3837
  # The noncurrent version expiration of the lifecycle rule.
3631
- #
3632
- # <note markdown="1"> This is not supported by Amazon S3 on Outposts buckets.
3633
- #
3634
- # </note>
3635
3838
  # @return [Types::NoncurrentVersionExpiration]
3636
3839
  #
3637
3840
  # @!attribute [rw] abort_incomplete_multipart_upload
@@ -3674,6 +3877,8 @@ module Aws::S3Control
3674
3877
  # value: "TagValueString", # required
3675
3878
  # },
3676
3879
  # ],
3880
+ # object_size_greater_than: 1,
3881
+ # object_size_less_than: 1,
3677
3882
  # }
3678
3883
  #
3679
3884
  # @!attribute [rw] prefix
@@ -3685,11 +3890,21 @@ module Aws::S3Control
3685
3890
  # the rule to apply.
3686
3891
  # @return [Array<Types::S3Tag>]
3687
3892
  #
3893
+ # @!attribute [rw] object_size_greater_than
3894
+ # Minimum object size to which the rule applies.
3895
+ # @return [Integer]
3896
+ #
3897
+ # @!attribute [rw] object_size_less_than
3898
+ # Maximum object size to which the rule applies.
3899
+ # @return [Integer]
3900
+ #
3688
3901
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/LifecycleRuleAndOperator AWS API Documentation
3689
3902
  #
3690
3903
  class LifecycleRuleAndOperator < Struct.new(
3691
3904
  :prefix,
3692
- :tags)
3905
+ :tags,
3906
+ :object_size_greater_than,
3907
+ :object_size_less_than)
3693
3908
  SENSITIVE = []
3694
3909
  include Aws::Structure
3695
3910
  end
@@ -3713,7 +3928,11 @@ module Aws::S3Control
3713
3928
  # value: "TagValueString", # required
3714
3929
  # },
3715
3930
  # ],
3931
+ # object_size_greater_than: 1,
3932
+ # object_size_less_than: 1,
3716
3933
  # },
3934
+ # object_size_greater_than: 1,
3935
+ # object_size_less_than: 1,
3717
3936
  # }
3718
3937
  #
3719
3938
  # @!attribute [rw] prefix
@@ -3729,18 +3948,29 @@ module Aws::S3Control
3729
3948
  # @return [String]
3730
3949
  #
3731
3950
  # @!attribute [rw] tag
3951
+ # A container for a key-value name pair.
3732
3952
  # @return [Types::S3Tag]
3733
3953
  #
3734
3954
  # @!attribute [rw] and
3735
3955
  # The container for the `AND` condition for the lifecycle rule.
3736
3956
  # @return [Types::LifecycleRuleAndOperator]
3737
3957
  #
3958
+ # @!attribute [rw] object_size_greater_than
3959
+ # Minimum object size to which the rule applies.
3960
+ # @return [Integer]
3961
+ #
3962
+ # @!attribute [rw] object_size_less_than
3963
+ # Maximum object size to which the rule applies.
3964
+ # @return [Integer]
3965
+ #
3738
3966
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/LifecycleRuleFilter AWS API Documentation
3739
3967
  #
3740
3968
  class LifecycleRuleFilter < Struct.new(
3741
3969
  :prefix,
3742
3970
  :tag,
3743
- :and)
3971
+ :and,
3972
+ :object_size_greater_than,
3973
+ :object_size_less_than)
3744
3974
  SENSITIVE = []
3745
3975
  include Aws::Structure
3746
3976
  end
@@ -4211,7 +4441,7 @@ module Aws::S3Control
4211
4441
  # bucket or object public, see [The Meaning of "Public"][1] in the
4212
4442
  # *Amazon S3 User Guide*.
4213
4443
  #
4214
- # This is not supported for Amazon S3 on Outposts.
4444
+ # This data type is not supported for Amazon S3 on Outposts.
4215
4445
  #
4216
4446
  #
4217
4447
  #
@@ -4286,6 +4516,7 @@ module Aws::S3Control
4286
4516
  #
4287
4517
  # {
4288
4518
  # noncurrent_days: 1,
4519
+ # newer_noncurrent_versions: 1,
4289
4520
  # }
4290
4521
  #
4291
4522
  # @!attribute [rw] noncurrent_days
@@ -4299,10 +4530,23 @@ module Aws::S3Control
4299
4530
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/intro-lifecycle-rules.html#non-current-days-calculations
4300
4531
  # @return [Integer]
4301
4532
  #
4533
+ # @!attribute [rw] newer_noncurrent_versions
4534
+ # Specifies how many noncurrent versions S3 on Outposts will retain.
4535
+ # If there are this many more recent noncurrent versions, S3 on
4536
+ # Outposts will take the associated action. For more information about
4537
+ # noncurrent versions, see [Lifecycle configuration elements][1] in
4538
+ # the *Amazon S3 User Guide*.
4539
+ #
4540
+ #
4541
+ #
4542
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/intro-lifecycle-rules.html
4543
+ # @return [Integer]
4544
+ #
4302
4545
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/NoncurrentVersionExpiration AWS API Documentation
4303
4546
  #
4304
4547
  class NoncurrentVersionExpiration < Struct.new(
4305
- :noncurrent_days)
4548
+ :noncurrent_days,
4549
+ :newer_noncurrent_versions)
4306
4550
  SENSITIVE = []
4307
4551
  include Aws::Structure
4308
4552
  end
@@ -4406,8 +4650,9 @@ module Aws::S3Control
4406
4650
  # @return [Boolean]
4407
4651
  #
4408
4652
  # @!attribute [rw] allowed_features
4409
- # A container for allowed features. Valid inputs are `GetObject-Range`
4410
- # and `GetObject-PartNumber`.
4653
+ # A container for allowed features. Valid inputs are
4654
+ # `GetObject-Range`, `GetObject-PartNumber`, `HeadObject-Range`, and
4655
+ # `HeadObject-PartNumber`.
4411
4656
  # @return [Array<String>]
4412
4657
  #
4413
4658
  # @!attribute [rw] transformation_configurations
@@ -4467,7 +4712,8 @@ module Aws::S3Control
4467
4712
  #
4468
4713
  # @!attribute [rw] actions
4469
4714
  # A container for the action of an Object Lambda Access Point
4470
- # configuration. Valid input is `GetObject`.
4715
+ # configuration. Valid inputs are `GetObject`, `ListObjects`,
4716
+ # `HeadObject`, and `ListObjectsV2`.
4471
4717
  # @return [Array<String>]
4472
4718
  #
4473
4719
  # @!attribute [rw] content_transformation
@@ -4589,7 +4835,7 @@ module Aws::S3Control
4589
4835
  # bucket or object public, see [The Meaning of "Public"][1] in the
4590
4836
  # *Amazon S3 User Guide*.
4591
4837
  #
4592
- # This is not supported for Amazon S3 on Outposts.
4838
+ # This data type is not supported for Amazon S3 on Outposts.
4593
4839
  #
4594
4840
  #
4595
4841
  #
@@ -4610,7 +4856,7 @@ module Aws::S3Control
4610
4856
  # (ACLs) for buckets in this account. Setting this element to `TRUE`
4611
4857
  # causes the following behavior:
4612
4858
  #
4613
- # * PUT Bucket acl and PUT Object acl calls fail if the specified ACL
4859
+ # * `PutBucketAcl` and `PutObjectAcl` calls fail if the specified ACL
4614
4860
  # is public.
4615
4861
  #
4616
4862
  # * PUT Object calls fail if the request includes a public ACL.
@@ -4619,7 +4865,7 @@ module Aws::S3Control
4619
4865
  #
4620
4866
  # Enabling this setting doesn't affect existing policies or ACLs.
4621
4867
  #
4622
- # This is not supported for Amazon S3 on Outposts.
4868
+ # This property is not supported for Amazon S3 on Outposts.
4623
4869
  # @return [Boolean]
4624
4870
  #
4625
4871
  # @!attribute [rw] ignore_public_acls
@@ -4631,7 +4877,7 @@ module Aws::S3Control
4631
4877
  # Enabling this setting doesn't affect the persistence of any
4632
4878
  # existing ACLs and doesn't prevent new public ACLs from being set.
4633
4879
  #
4634
- # This is not supported for Amazon S3 on Outposts.
4880
+ # This property is not supported for Amazon S3 on Outposts.
4635
4881
  # @return [Boolean]
4636
4882
  #
4637
4883
  # @!attribute [rw] block_public_policy
@@ -4642,7 +4888,7 @@ module Aws::S3Control
4642
4888
  #
4643
4889
  # Enabling this setting doesn't affect existing bucket policies.
4644
4890
  #
4645
- # This is not supported for Amazon S3 on Outposts.
4891
+ # This property is not supported for Amazon S3 on Outposts.
4646
4892
  # @return [Boolean]
4647
4893
  #
4648
4894
  # @!attribute [rw] restrict_public_buckets
@@ -4656,7 +4902,7 @@ module Aws::S3Control
4656
4902
  # public bucket policy, including non-public delegation to specific
4657
4903
  # accounts, is blocked.
4658
4904
  #
4659
- # This is not supported for Amazon S3 on Outposts.
4905
+ # This property is not supported for Amazon S3 on Outposts.
4660
4906
  # @return [Boolean]
4661
4907
  #
4662
4908
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/PublicAccessBlockConfiguration AWS API Documentation
@@ -4831,7 +5077,11 @@ module Aws::S3Control
4831
5077
  # value: "TagValueString", # required
4832
5078
  # },
4833
5079
  # ],
5080
+ # object_size_greater_than: 1,
5081
+ # object_size_less_than: 1,
4834
5082
  # },
5083
+ # object_size_greater_than: 1,
5084
+ # object_size_less_than: 1,
4835
5085
  # },
4836
5086
  # status: "Enabled", # required, accepts Enabled, Disabled
4837
5087
  # transitions: [
@@ -4849,6 +5099,7 @@ module Aws::S3Control
4849
5099
  # ],
4850
5100
  # noncurrent_version_expiration: {
4851
5101
  # noncurrent_days: 1,
5102
+ # newer_noncurrent_versions: 1,
4852
5103
  # },
4853
5104
  # abort_incomplete_multipart_upload: {
4854
5105
  # days_after_initiation: 1,
@@ -5218,6 +5469,24 @@ module Aws::S3Control
5218
5469
  # },
5219
5470
  # },
5220
5471
  # },
5472
+ # advanced_cost_optimization_metrics: {
5473
+ # is_enabled: false,
5474
+ # },
5475
+ # advanced_data_protection_metrics: {
5476
+ # is_enabled: false,
5477
+ # },
5478
+ # detailed_status_codes_metrics: {
5479
+ # is_enabled: false,
5480
+ # },
5481
+ # },
5482
+ # advanced_cost_optimization_metrics: {
5483
+ # is_enabled: false,
5484
+ # },
5485
+ # advanced_data_protection_metrics: {
5486
+ # is_enabled: false,
5487
+ # },
5488
+ # detailed_status_codes_metrics: {
5489
+ # is_enabled: false,
5221
5490
  # },
5222
5491
  # },
5223
5492
  # include: {
@@ -5609,9 +5878,9 @@ module Aws::S3Control
5609
5878
  #
5610
5879
  # @!attribute [rw] target_resource
5611
5880
  # Specifies the destination bucket ARN for the batch copy operation.
5612
- # For example, to copy objects to a bucket named
5613
- # "destinationBucket", set the TargetResource to
5614
- # "arn:aws:s3:::destinationBucket".
5881
+ # For example, to copy objects to a bucket named `destinationBucket`,
5882
+ # set the `TargetResource` property to
5883
+ # `arn:aws:s3:::destinationBucket`.
5615
5884
  # @return [String]
5616
5885
  #
5617
5886
  # @!attribute [rw] canned_access_control_list
@@ -6145,9 +6414,9 @@ module Aws::S3Control
6145
6414
  end
6146
6415
 
6147
6416
  # Contains the configuration parameters for a Set Object ACL operation.
6148
- # S3 Batch Operations passes every object to the underlying PUT Object
6149
- # acl API. For more information about the parameters for this operation,
6150
- # see [PUT Object acl][1].
6417
+ # S3 Batch Operations passes every object to the underlying
6418
+ # `PutObjectAcl` API. For more information about the parameters for this
6419
+ # operation, see [ `PutObjectAcl` ][1].
6151
6420
  #
6152
6421
  #
6153
6422
  #
@@ -6300,6 +6569,8 @@ module Aws::S3Control
6300
6569
  include Aws::Structure
6301
6570
  end
6302
6571
 
6572
+ # A container for a key-value name pair.
6573
+ #
6303
6574
  # @note When making an API call, you may pass S3Tag
6304
6575
  # data as a hash:
6305
6576
  #
@@ -6309,9 +6580,11 @@ module Aws::S3Control
6309
6580
  # }
6310
6581
  #
6311
6582
  # @!attribute [rw] key
6583
+ # Key of the tag
6312
6584
  # @return [String]
6313
6585
  #
6314
6586
  # @!attribute [rw] value
6587
+ # Value of the tag
6315
6588
  # @return [String]
6316
6589
  #
6317
6590
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/S3Tag AWS API Documentation
@@ -6470,6 +6743,24 @@ module Aws::S3Control
6470
6743
  # },
6471
6744
  # },
6472
6745
  # },
6746
+ # advanced_cost_optimization_metrics: {
6747
+ # is_enabled: false,
6748
+ # },
6749
+ # advanced_data_protection_metrics: {
6750
+ # is_enabled: false,
6751
+ # },
6752
+ # detailed_status_codes_metrics: {
6753
+ # is_enabled: false,
6754
+ # },
6755
+ # },
6756
+ # advanced_cost_optimization_metrics: {
6757
+ # is_enabled: false,
6758
+ # },
6759
+ # advanced_data_protection_metrics: {
6760
+ # is_enabled: false,
6761
+ # },
6762
+ # detailed_status_codes_metrics: {
6763
+ # is_enabled: false,
6473
6764
  # },
6474
6765
  # },
6475
6766
  # include: {
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-s3control/customizations'
52
52
  # @!group service
53
53
  module Aws::S3Control
54
54
 
55
- GEM_VERSION = '1.54.0'
55
+ GEM_VERSION = '1.56.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3control
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.54.0
4
+ version: 1.56.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2022-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4