aws-sdk-s3 1.67.1 → 1.71.1

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.
Files changed (91) hide show
  1. checksums.yaml +4 -4
  2. data/lib/aws-sdk-s3.rb +3 -1
  3. data/lib/aws-sdk-s3/bucket.rb +2 -0
  4. data/lib/aws-sdk-s3/bucket_acl.rb +2 -0
  5. data/lib/aws-sdk-s3/bucket_cors.rb +2 -0
  6. data/lib/aws-sdk-s3/bucket_lifecycle.rb +2 -0
  7. data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +2 -0
  8. data/lib/aws-sdk-s3/bucket_logging.rb +2 -0
  9. data/lib/aws-sdk-s3/bucket_notification.rb +2 -0
  10. data/lib/aws-sdk-s3/bucket_policy.rb +2 -0
  11. data/lib/aws-sdk-s3/bucket_region_cache.rb +2 -0
  12. data/lib/aws-sdk-s3/bucket_request_payment.rb +2 -0
  13. data/lib/aws-sdk-s3/bucket_tagging.rb +2 -0
  14. data/lib/aws-sdk-s3/bucket_versioning.rb +2 -0
  15. data/lib/aws-sdk-s3/bucket_website.rb +2 -0
  16. data/lib/aws-sdk-s3/client.rb +13 -6
  17. data/lib/aws-sdk-s3/client_api.rb +22 -0
  18. data/lib/aws-sdk-s3/customizations.rb +3 -0
  19. data/lib/aws-sdk-s3/customizations/bucket.rb +2 -0
  20. data/lib/aws-sdk-s3/customizations/multipart_upload.rb +2 -0
  21. data/lib/aws-sdk-s3/customizations/object.rb +2 -0
  22. data/lib/aws-sdk-s3/customizations/object_summary.rb +2 -0
  23. data/lib/aws-sdk-s3/customizations/types/list_object_versions_output.rb +2 -0
  24. data/lib/aws-sdk-s3/encryption.rb +2 -0
  25. data/lib/aws-sdk-s3/encryption/client.rb +2 -0
  26. data/lib/aws-sdk-s3/encryption/decrypt_handler.rb +11 -0
  27. data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +2 -0
  28. data/lib/aws-sdk-s3/encryption/default_key_provider.rb +2 -0
  29. data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +11 -0
  30. data/lib/aws-sdk-s3/encryption/errors.rb +2 -0
  31. data/lib/aws-sdk-s3/encryption/io_auth_decrypter.rb +2 -0
  32. data/lib/aws-sdk-s3/encryption/io_decrypter.rb +8 -1
  33. data/lib/aws-sdk-s3/encryption/io_encrypter.rb +2 -0
  34. data/lib/aws-sdk-s3/encryption/key_provider.rb +2 -0
  35. data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +2 -0
  36. data/lib/aws-sdk-s3/encryption/materials.rb +2 -0
  37. data/lib/aws-sdk-s3/encryption/utils.rb +2 -0
  38. data/lib/aws-sdk-s3/encryptionV2/client.rb +388 -0
  39. data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +198 -0
  40. data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +103 -0
  41. data/lib/aws-sdk-s3/encryptionV2/default_key_provider.rb +38 -0
  42. data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +66 -0
  43. data/lib/aws-sdk-s3/encryptionV2/errors.rb +13 -0
  44. data/lib/aws-sdk-s3/encryptionV2/io_auth_decrypter.rb +56 -0
  45. data/lib/aws-sdk-s3/encryptionV2/io_decrypter.rb +35 -0
  46. data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +71 -0
  47. data/lib/aws-sdk-s3/encryptionV2/key_provider.rb +29 -0
  48. data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +99 -0
  49. data/lib/aws-sdk-s3/encryptionV2/materials.rb +58 -0
  50. data/lib/aws-sdk-s3/encryptionV2/utils.rb +116 -0
  51. data/lib/aws-sdk-s3/encryption_v2.rb +20 -0
  52. data/lib/aws-sdk-s3/errors.rb +2 -0
  53. data/lib/aws-sdk-s3/event_streams.rb +2 -0
  54. data/lib/aws-sdk-s3/file_downloader.rb +2 -0
  55. data/lib/aws-sdk-s3/file_part.rb +2 -0
  56. data/lib/aws-sdk-s3/file_uploader.rb +2 -0
  57. data/lib/aws-sdk-s3/legacy_signer.rb +2 -0
  58. data/lib/aws-sdk-s3/multipart_file_uploader.rb +2 -0
  59. data/lib/aws-sdk-s3/multipart_stream_uploader.rb +2 -0
  60. data/lib/aws-sdk-s3/multipart_upload.rb +2 -0
  61. data/lib/aws-sdk-s3/multipart_upload_error.rb +2 -0
  62. data/lib/aws-sdk-s3/multipart_upload_part.rb +2 -0
  63. data/lib/aws-sdk-s3/object.rb +2 -0
  64. data/lib/aws-sdk-s3/object_acl.rb +2 -0
  65. data/lib/aws-sdk-s3/object_copier.rb +2 -0
  66. data/lib/aws-sdk-s3/object_multipart_copier.rb +2 -0
  67. data/lib/aws-sdk-s3/object_summary.rb +2 -0
  68. data/lib/aws-sdk-s3/object_version.rb +2 -0
  69. data/lib/aws-sdk-s3/plugins/accelerate.rb +2 -0
  70. data/lib/aws-sdk-s3/plugins/bucket_arn.rb +2 -0
  71. data/lib/aws-sdk-s3/plugins/bucket_dns.rb +2 -0
  72. data/lib/aws-sdk-s3/plugins/bucket_name_restrictions.rb +2 -0
  73. data/lib/aws-sdk-s3/plugins/dualstack.rb +2 -0
  74. data/lib/aws-sdk-s3/plugins/expect_100_continue.rb +2 -0
  75. data/lib/aws-sdk-s3/plugins/get_bucket_location_fix.rb +2 -0
  76. data/lib/aws-sdk-s3/plugins/http_200_errors.rb +4 -1
  77. data/lib/aws-sdk-s3/plugins/iad_regional_endpoint.rb +2 -0
  78. data/lib/aws-sdk-s3/plugins/location_constraint.rb +2 -0
  79. data/lib/aws-sdk-s3/plugins/md5s.rb +23 -24
  80. data/lib/aws-sdk-s3/plugins/redirects.rb +2 -0
  81. data/lib/aws-sdk-s3/plugins/s3_host_id.rb +2 -0
  82. data/lib/aws-sdk-s3/plugins/s3_signer.rb +2 -0
  83. data/lib/aws-sdk-s3/plugins/sse_cpk.rb +2 -0
  84. data/lib/aws-sdk-s3/plugins/streaming_retry.rb +118 -0
  85. data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -0
  86. data/lib/aws-sdk-s3/presigned_post.rb +2 -0
  87. data/lib/aws-sdk-s3/presigner.rb +2 -0
  88. data/lib/aws-sdk-s3/resource.rb +2 -0
  89. data/lib/aws-sdk-s3/types.rb +265 -0
  90. data/lib/aws-sdk-s3/waiters.rb +2 -0
  91. metadata +23 -9
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'pathname'
2
4
  require 'thread'
3
5
  require 'set'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'pathname'
2
4
 
3
5
  module Aws
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'set'
2
4
  require 'time'
3
5
  require 'openssl'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'pathname'
2
4
  require 'set'
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'thread'
2
4
  require 'set'
3
5
  require 'tempfile'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
  class MultipartUploadError < StandardError
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'thread'
2
4
 
3
5
  module Aws
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'thread'
2
4
  require 'cgi'
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
  module Plugins
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
  module Plugins
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
  module Plugins
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
  module Plugins
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
  module Plugins
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
  module Plugins
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
  module Plugins
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
  module Plugins
@@ -38,7 +40,8 @@ module Aws
38
40
  end
39
41
  end
40
42
 
41
- handler(Handler,
43
+ handler(
44
+ Handler,
42
45
  step: :sign,
43
46
  operations: [
44
47
  :complete_multipart_upload,
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
  module Plugins
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
  module Plugins
@@ -1,22 +1,19 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'openssl'
2
4
 
3
5
  module Aws
4
6
  module S3
5
7
  module Plugins
8
+ # @api private
9
+ # This plugin is effectively deprecated in favor of modeled
10
+ # httpChecksumRequired traits.
6
11
  class Md5s < Seahorse::Client::Plugin
7
-
8
- # Amazon S3 requires these operations to have an MD5 checksum
9
- REQUIRED_OPERATIONS = [
10
- :delete_objects,
11
- :put_bucket_cors,
12
- :put_bucket_lifecycle,
13
- :put_bucket_lifecycle_configuration,
14
- :put_bucket_policy,
15
- :put_bucket_replication,
16
- :put_bucket_tagging,
17
- :put_object_legal_hold,
18
- :put_object_lock_configuration,
19
- :put_object_retention
12
+ # These operations allow Content MD5 but are not required by
13
+ # httpChecksumRequired. This list should not grow.
14
+ OPTIONAL_OPERATIONS = [
15
+ :put_object,
16
+ :upload_part
20
17
  ]
21
18
 
22
19
  # @api private
@@ -63,20 +60,22 @@ module Aws
63
60
  default: true,
64
61
  doc_type: 'Boolean',
65
62
  docstring: <<-DOCS)
66
- When `true` a MD5 checksum will be computed for every request that
67
- sends a body. When `false`, MD5 checksums will only be computed
68
- for operations that require them. Checksum errors returned by Amazon
69
- S3 are automatically retried up to `:retry_limit` times.
63
+ When `true` a MD5 checksum will be computed and sent in the Content Md5
64
+ header for :put_object and :upload_part. When `false`, MD5 checksums
65
+ will not be computed for these operations. Checksums are still computed
66
+ for operations requiring them. Checksum errors returned by Amazon S3 are
67
+ automatically retried up to `:retry_limit` times.
70
68
  DOCS
71
69
 
72
70
  def add_handlers(handlers, config)
73
- # priority set low to ensure md5 is computed AFTER the request is
74
- # built but before it is signed
75
- handlers.add(Handler, {
76
- priority: 10,
77
- step: :build,
78
- operations: config.compute_checksums ? nil : REQUIRED_OPERATIONS,
79
- })
71
+ if config.compute_checksums
72
+ # priority set low to ensure md5 is computed AFTER the request is
73
+ # built but before it is signed
74
+ handlers.add(
75
+ Handler,
76
+ priority: 10, step: :build, operations: OPTIONAL_OPERATIONS
77
+ )
78
+ end
80
79
  end
81
80
 
82
81
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
  module Plugins
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
  module Plugins
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'aws-sigv4'
2
4
 
3
5
  module Aws
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'uri'
2
4
  require 'openssl'
3
5
 
@@ -0,0 +1,118 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'forwardable'
4
+
5
+ module Aws
6
+ module S3
7
+ module Plugins
8
+
9
+ # A wrapper around BlockIO that adds no-ops for truncate and rewind
10
+ # @api private
11
+ class RetryableBlockIO
12
+ extend Forwardable
13
+ def_delegators :@block_io, :write, :read, :size
14
+
15
+ def initialize(block_io)
16
+ @block_io = block_io
17
+ end
18
+
19
+ def truncate(_integer); end
20
+
21
+ def rewind; end
22
+ end
23
+
24
+ # A wrapper around ManagedFile that adds no-ops for truncate and rewind
25
+ # @api private
26
+ class RetryableManagedFile
27
+ extend Forwardable
28
+ def_delegators :@file, :write, :read, :size, :open?, :close
29
+
30
+ def initialize(managed_file)
31
+ @file = managed_file
32
+ end
33
+
34
+ def truncate(_integer); end
35
+
36
+ def rewind; end
37
+ end
38
+
39
+ # This handler works with the ResponseTarget plugin to provide smart
40
+ # retries of S3 streaming operations that support the range parameter
41
+ # (currently only: get_object). When a 200 OK with a TruncatedBodyError
42
+ # is received this handler will add a range header that excludes the
43
+ # data that has already been processed (written to file or sent to
44
+ # the target Proc).
45
+ # It is important to not write data to the custom target in the case of
46
+ # a non-success response. We do not want to write an XML error
47
+ # message to someone's file or pass it to a user's Proc.
48
+ # @api private
49
+ class StreamingRetry < Seahorse::Client::Plugin
50
+
51
+ class Handler < Seahorse::Client::Handler
52
+
53
+ def call(context)
54
+ target = context.params[:response_target] || context[:response_target]
55
+
56
+ # retry is only supported when range is NOT set on the initial request
57
+ if supported_target?(target) && !context.params[:range]
58
+ add_event_listeners(context, target)
59
+ end
60
+ @handler.call(context)
61
+ end
62
+
63
+ private
64
+
65
+ def add_event_listeners(context, target)
66
+ context.http_response.on_headers(200..299) do
67
+ case context.http_response.body
68
+ when Seahorse::Client::BlockIO then
69
+ context.http_response.body = RetryableBlockIO.new(context.http_response.body)
70
+ when Seahorse::Client::ManagedFile then
71
+ context.http_response.body = RetryableManagedFile.new(context.http_response.body)
72
+ end
73
+ end
74
+
75
+ context.http_response.on_headers(400..599) do
76
+ context.http_response.body = StringIO.new # something to write the error to
77
+ end
78
+
79
+ context.http_response.on_success(200..299) do
80
+ body = context.http_response.body
81
+ if body.is_a?(RetryableManagedFile) && body.open?
82
+ body.close
83
+ end
84
+ end
85
+
86
+ context.http_response.on_error do |error|
87
+ if retryable_body?(context) && truncated_body?(error)
88
+ context.http_request.headers[:range] = "bytes=#{context.http_response.body.size}-"
89
+ end
90
+ end
91
+ end
92
+
93
+ def truncated_body?(error)
94
+ error.is_a?(Seahorse::Client::NetworkingError) &&
95
+ error.original_error.is_a?(
96
+ Seahorse::Client::NetHttp::Handler::TruncatedBodyError
97
+ )
98
+ end
99
+
100
+ def retryable_body?(context)
101
+ context.http_response.body.is_a?(RetryableBlockIO) ||
102
+ context.http_response.body.is_a?(RetryableManagedFile)
103
+ end
104
+
105
+ def supported_target?(target)
106
+ case target
107
+ when Proc, String, Pathname then true
108
+ else false
109
+ end
110
+ end
111
+ end
112
+
113
+ handler(Handler, step: :sign, operations: [:get_object], priority: 10)
114
+
115
+ end
116
+ end
117
+ end
118
+ end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'uri'
2
4
  require 'cgi'
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'openssl'
2
4
  require 'base64'
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module S3
3
5
  class Presigner
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -34,6 +36,7 @@ module Aws::S3
34
36
  #
35
37
  class AbortIncompleteMultipartUpload < Struct.new(
36
38
  :days_after_initiation)
39
+ SENSITIVE = []
37
40
  include Aws::Structure
38
41
  end
39
42
 
@@ -46,6 +49,7 @@ module Aws::S3
46
49
  #
47
50
  class AbortMultipartUploadOutput < Struct.new(
48
51
  :request_charged)
52
+ SENSITIVE = []
49
53
  include Aws::Structure
50
54
  end
51
55
 
@@ -103,6 +107,7 @@ module Aws::S3
103
107
  :key,
104
108
  :upload_id,
105
109
  :request_payer)
110
+ SENSITIVE = []
106
111
  include Aws::Structure
107
112
  end
108
113
 
@@ -129,6 +134,7 @@ module Aws::S3
129
134
  #
130
135
  class AccelerateConfiguration < Struct.new(
131
136
  :status)
137
+ SENSITIVE = []
132
138
  include Aws::Structure
133
139
  end
134
140
 
@@ -170,6 +176,7 @@ module Aws::S3
170
176
  class AccessControlPolicy < Struct.new(
171
177
  :grants,
172
178
  :owner)
179
+ SENSITIVE = []
173
180
  include Aws::Structure
174
181
  end
175
182
 
@@ -196,6 +203,7 @@ module Aws::S3
196
203
  #
197
204
  class AccessControlTranslation < Struct.new(
198
205
  :owner)
206
+ SENSITIVE = []
199
207
  include Aws::Structure
200
208
  end
201
209
 
@@ -231,6 +239,7 @@ module Aws::S3
231
239
  class AnalyticsAndOperator < Struct.new(
232
240
  :prefix,
233
241
  :tags)
242
+ SENSITIVE = []
234
243
  include Aws::Structure
235
244
  end
236
245
 
@@ -296,6 +305,7 @@ module Aws::S3
296
305
  :id,
297
306
  :filter,
298
307
  :storage_class_analysis)
308
+ SENSITIVE = []
299
309
  include Aws::Structure
300
310
  end
301
311
 
@@ -321,6 +331,7 @@ module Aws::S3
321
331
  #
322
332
  class AnalyticsExportDestination < Struct.new(
323
333
  :s3_bucket_destination)
334
+ SENSITIVE = []
324
335
  include Aws::Structure
325
336
  end
326
337
 
@@ -369,6 +380,7 @@ module Aws::S3
369
380
  :prefix,
370
381
  :tag,
371
382
  :and)
383
+ SENSITIVE = []
372
384
  include Aws::Structure
373
385
  end
374
386
 
@@ -416,6 +428,7 @@ module Aws::S3
416
428
  :bucket_account_id,
417
429
  :bucket,
418
430
  :prefix)
431
+ SENSITIVE = []
419
432
  include Aws::Structure
420
433
  end
421
434
 
@@ -436,6 +449,7 @@ module Aws::S3
436
449
  class Bucket < Struct.new(
437
450
  :name,
438
451
  :creation_date)
452
+ SENSITIVE = []
439
453
  include Aws::Structure
440
454
  end
441
455
 
@@ -526,6 +540,7 @@ module Aws::S3
526
540
  #
527
541
  class BucketLifecycleConfiguration < Struct.new(
528
542
  :rules)
543
+ SENSITIVE = []
529
544
  include Aws::Structure
530
545
  end
531
546
 
@@ -568,6 +583,7 @@ module Aws::S3
568
583
  #
569
584
  class BucketLoggingStatus < Struct.new(
570
585
  :logging_enabled)
586
+ SENSITIVE = []
571
587
  include Aws::Structure
572
588
  end
573
589
 
@@ -604,6 +620,7 @@ module Aws::S3
604
620
  #
605
621
  class CORSConfiguration < Struct.new(
606
622
  :cors_rules)
623
+ SENSITIVE = []
607
624
  include Aws::Structure
608
625
  end
609
626
 
@@ -656,6 +673,7 @@ module Aws::S3
656
673
  :allowed_origins,
657
674
  :expose_headers,
658
675
  :max_age_seconds)
676
+ SENSITIVE = []
659
677
  include Aws::Structure
660
678
  end
661
679
 
@@ -741,6 +759,7 @@ module Aws::S3
741
759
  :field_delimiter,
742
760
  :quote_character,
743
761
  :allow_quoted_record_delimiter)
762
+ SENSITIVE = []
744
763
  include Aws::Structure
745
764
  end
746
765
 
@@ -796,6 +815,7 @@ module Aws::S3
796
815
  :record_delimiter,
797
816
  :field_delimiter,
798
817
  :quote_character)
818
+ SENSITIVE = []
799
819
  include Aws::Structure
800
820
  end
801
821
 
@@ -843,6 +863,7 @@ module Aws::S3
843
863
  :events,
844
864
  :cloud_function,
845
865
  :invocation_role)
866
+ SENSITIVE = []
846
867
  include Aws::Structure
847
868
  end
848
869
 
@@ -860,6 +881,7 @@ module Aws::S3
860
881
  #
861
882
  class CommonPrefix < Struct.new(
862
883
  :prefix)
884
+ SENSITIVE = []
863
885
  include Aws::Structure
864
886
  end
865
887
 
@@ -927,6 +949,7 @@ module Aws::S3
927
949
  :version_id,
928
950
  :ssekms_key_id,
929
951
  :request_charged)
952
+ SENSITIVE = [:ssekms_key_id]
930
953
  include Aws::Structure
931
954
  end
932
955
 
@@ -984,6 +1007,7 @@ module Aws::S3
984
1007
  :multipart_upload,
985
1008
  :upload_id,
986
1009
  :request_payer)
1010
+ SENSITIVE = []
987
1011
  include Aws::Structure
988
1012
  end
989
1013
 
@@ -1009,6 +1033,7 @@ module Aws::S3
1009
1033
  #
1010
1034
  class CompletedMultipartUpload < Struct.new(
1011
1035
  :parts)
1036
+ SENSITIVE = []
1012
1037
  include Aws::Structure
1013
1038
  end
1014
1039
 
@@ -1036,6 +1061,7 @@ module Aws::S3
1036
1061
  class CompletedPart < Struct.new(
1037
1062
  :etag,
1038
1063
  :part_number)
1064
+ SENSITIVE = []
1039
1065
  include Aws::Structure
1040
1066
  end
1041
1067
 
@@ -1078,6 +1104,7 @@ module Aws::S3
1078
1104
  class Condition < Struct.new(
1079
1105
  :http_error_code_returned_equals,
1080
1106
  :key_prefix_equals)
1107
+ SENSITIVE = []
1081
1108
  include Aws::Structure
1082
1109
  end
1083
1110
 
@@ -1085,6 +1112,7 @@ module Aws::S3
1085
1112
  #
1086
1113
  class ContinuationEvent < Struct.new(
1087
1114
  :event_type)
1115
+ SENSITIVE = []
1088
1116
  include Aws::Structure
1089
1117
  end
1090
1118
 
@@ -1154,6 +1182,7 @@ module Aws::S3
1154
1182
  :ssekms_key_id,
1155
1183
  :ssekms_encryption_context,
1156
1184
  :request_charged)
1185
+ SENSITIVE = [:ssekms_key_id, :ssekms_encryption_context]
1157
1186
  include Aws::Structure
1158
1187
  end
1159
1188
 
@@ -1438,6 +1467,7 @@ module Aws::S3
1438
1467
  :object_lock_mode,
1439
1468
  :object_lock_retain_until_date,
1440
1469
  :object_lock_legal_hold_status)
1470
+ SENSITIVE = [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context, :copy_source_sse_customer_key]
1441
1471
  include Aws::Structure
1442
1472
  end
1443
1473
 
@@ -1458,6 +1488,7 @@ module Aws::S3
1458
1488
  class CopyObjectResult < Struct.new(
1459
1489
  :etag,
1460
1490
  :last_modified)
1491
+ SENSITIVE = []
1461
1492
  include Aws::Structure
1462
1493
  end
1463
1494
 
@@ -1476,6 +1507,7 @@ module Aws::S3
1476
1507
  class CopyPartResult < Struct.new(
1477
1508
  :etag,
1478
1509
  :last_modified)
1510
+ SENSITIVE = []
1479
1511
  include Aws::Structure
1480
1512
  end
1481
1513
 
@@ -1498,6 +1530,7 @@ module Aws::S3
1498
1530
  #
1499
1531
  class CreateBucketConfiguration < Struct.new(
1500
1532
  :location_constraint)
1533
+ SENSITIVE = []
1501
1534
  include Aws::Structure
1502
1535
  end
1503
1536
 
@@ -1511,6 +1544,7 @@ module Aws::S3
1511
1544
  #
1512
1545
  class CreateBucketOutput < Struct.new(
1513
1546
  :location)
1547
+ SENSITIVE = []
1514
1548
  include Aws::Structure
1515
1549
  end
1516
1550
 
@@ -1582,6 +1616,7 @@ module Aws::S3
1582
1616
  :grant_write,
1583
1617
  :grant_write_acp,
1584
1618
  :object_lock_enabled_for_bucket)
1619
+ SENSITIVE = []
1585
1620
  include Aws::Structure
1586
1621
  end
1587
1622
 
@@ -1684,6 +1719,7 @@ module Aws::S3
1684
1719
  :ssekms_key_id,
1685
1720
  :ssekms_encryption_context,
1686
1721
  :request_charged)
1722
+ SENSITIVE = [:ssekms_key_id, :ssekms_encryption_context]
1687
1723
  include Aws::Structure
1688
1724
  end
1689
1725
 
@@ -1897,6 +1933,7 @@ module Aws::S3
1897
1933
  :object_lock_mode,
1898
1934
  :object_lock_retain_until_date,
1899
1935
  :object_lock_legal_hold_status)
1936
+ SENSITIVE = [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
1900
1937
  include Aws::Structure
1901
1938
  end
1902
1939
 
@@ -1933,6 +1970,7 @@ module Aws::S3
1933
1970
  :mode,
1934
1971
  :days,
1935
1972
  :years)
1973
+ SENSITIVE = []
1936
1974
  include Aws::Structure
1937
1975
  end
1938
1976
 
@@ -1965,6 +2003,7 @@ module Aws::S3
1965
2003
  class Delete < Struct.new(
1966
2004
  :objects,
1967
2005
  :quiet)
2006
+ SENSITIVE = []
1968
2007
  include Aws::Structure
1969
2008
  end
1970
2009
 
@@ -1990,6 +2029,7 @@ module Aws::S3
1990
2029
  class DeleteBucketAnalyticsConfigurationRequest < Struct.new(
1991
2030
  :bucket,
1992
2031
  :id)
2032
+ SENSITIVE = []
1993
2033
  include Aws::Structure
1994
2034
  end
1995
2035
 
@@ -2008,6 +2048,7 @@ module Aws::S3
2008
2048
  #
2009
2049
  class DeleteBucketCorsRequest < Struct.new(
2010
2050
  :bucket)
2051
+ SENSITIVE = []
2011
2052
  include Aws::Structure
2012
2053
  end
2013
2054
 
@@ -2027,6 +2068,7 @@ module Aws::S3
2027
2068
  #
2028
2069
  class DeleteBucketEncryptionRequest < Struct.new(
2029
2070
  :bucket)
2071
+ SENSITIVE = []
2030
2072
  include Aws::Structure
2031
2073
  end
2032
2074
 
@@ -2052,6 +2094,7 @@ module Aws::S3
2052
2094
  class DeleteBucketInventoryConfigurationRequest < Struct.new(
2053
2095
  :bucket,
2054
2096
  :id)
2097
+ SENSITIVE = []
2055
2098
  include Aws::Structure
2056
2099
  end
2057
2100
 
@@ -2070,6 +2113,7 @@ module Aws::S3
2070
2113
  #
2071
2114
  class DeleteBucketLifecycleRequest < Struct.new(
2072
2115
  :bucket)
2116
+ SENSITIVE = []
2073
2117
  include Aws::Structure
2074
2118
  end
2075
2119
 
@@ -2095,6 +2139,7 @@ module Aws::S3
2095
2139
  class DeleteBucketMetricsConfigurationRequest < Struct.new(
2096
2140
  :bucket,
2097
2141
  :id)
2142
+ SENSITIVE = []
2098
2143
  include Aws::Structure
2099
2144
  end
2100
2145
 
@@ -2113,6 +2158,7 @@ module Aws::S3
2113
2158
  #
2114
2159
  class DeleteBucketPolicyRequest < Struct.new(
2115
2160
  :bucket)
2161
+ SENSITIVE = []
2116
2162
  include Aws::Structure
2117
2163
  end
2118
2164
 
@@ -2131,6 +2177,7 @@ module Aws::S3
2131
2177
  #
2132
2178
  class DeleteBucketReplicationRequest < Struct.new(
2133
2179
  :bucket)
2180
+ SENSITIVE = []
2134
2181
  include Aws::Structure
2135
2182
  end
2136
2183
 
@@ -2149,6 +2196,7 @@ module Aws::S3
2149
2196
  #
2150
2197
  class DeleteBucketRequest < Struct.new(
2151
2198
  :bucket)
2199
+ SENSITIVE = []
2152
2200
  include Aws::Structure
2153
2201
  end
2154
2202
 
@@ -2167,6 +2215,7 @@ module Aws::S3
2167
2215
  #
2168
2216
  class DeleteBucketTaggingRequest < Struct.new(
2169
2217
  :bucket)
2218
+ SENSITIVE = []
2170
2219
  include Aws::Structure
2171
2220
  end
2172
2221
 
@@ -2186,6 +2235,7 @@ module Aws::S3
2186
2235
  #
2187
2236
  class DeleteBucketWebsiteRequest < Struct.new(
2188
2237
  :bucket)
2238
+ SENSITIVE = []
2189
2239
  include Aws::Structure
2190
2240
  end
2191
2241
 
@@ -2220,6 +2270,7 @@ module Aws::S3
2220
2270
  :version_id,
2221
2271
  :is_latest,
2222
2272
  :last_modified)
2273
+ SENSITIVE = []
2223
2274
  include Aws::Structure
2224
2275
  end
2225
2276
 
@@ -2263,6 +2314,7 @@ module Aws::S3
2263
2314
  #
2264
2315
  class DeleteMarkerReplication < Struct.new(
2265
2316
  :status)
2317
+ SENSITIVE = []
2266
2318
  include Aws::Structure
2267
2319
  end
2268
2320
 
@@ -2287,6 +2339,7 @@ module Aws::S3
2287
2339
  :delete_marker,
2288
2340
  :version_id,
2289
2341
  :request_charged)
2342
+ SENSITIVE = []
2290
2343
  include Aws::Structure
2291
2344
  end
2292
2345
 
@@ -2360,6 +2413,7 @@ module Aws::S3
2360
2413
  :version_id,
2361
2414
  :request_payer,
2362
2415
  :bypass_governance_retention)
2416
+ SENSITIVE = []
2363
2417
  include Aws::Structure
2364
2418
  end
2365
2419
 
@@ -2371,6 +2425,7 @@ module Aws::S3
2371
2425
  #
2372
2426
  class DeleteObjectTaggingOutput < Struct.new(
2373
2427
  :version_id)
2428
+ SENSITIVE = []
2374
2429
  include Aws::Structure
2375
2430
  end
2376
2431
 
@@ -2415,6 +2470,7 @@ module Aws::S3
2415
2470
  :bucket,
2416
2471
  :key,
2417
2472
  :version_id)
2473
+ SENSITIVE = []
2418
2474
  include Aws::Structure
2419
2475
  end
2420
2476
 
@@ -2439,6 +2495,7 @@ module Aws::S3
2439
2495
  :deleted,
2440
2496
  :request_charged,
2441
2497
  :errors)
2498
+ SENSITIVE = []
2442
2499
  include Aws::Structure
2443
2500
  end
2444
2501
 
@@ -2515,6 +2572,7 @@ module Aws::S3
2515
2572
  :mfa,
2516
2573
  :request_payer,
2517
2574
  :bypass_governance_retention)
2575
+ SENSITIVE = []
2518
2576
  include Aws::Structure
2519
2577
  end
2520
2578
 
@@ -2534,6 +2592,7 @@ module Aws::S3
2534
2592
  #
2535
2593
  class DeletePublicAccessBlockRequest < Struct.new(
2536
2594
  :bucket)
2595
+ SENSITIVE = []
2537
2596
  include Aws::Structure
2538
2597
  end
2539
2598
 
@@ -2568,6 +2627,7 @@ module Aws::S3
2568
2627
  :version_id,
2569
2628
  :delete_marker,
2570
2629
  :delete_marker_version_id)
2630
+ SENSITIVE = []
2571
2631
  include Aws::Structure
2572
2632
  end
2573
2633
 
@@ -2673,6 +2733,7 @@ module Aws::S3
2673
2733
  :encryption_configuration,
2674
2734
  :replication_time,
2675
2735
  :metrics)
2736
+ SENSITIVE = []
2676
2737
  include Aws::Structure
2677
2738
  end
2678
2739
 
@@ -2715,6 +2776,7 @@ module Aws::S3
2715
2776
  :encryption_type,
2716
2777
  :kms_key_id,
2717
2778
  :kms_context)
2779
+ SENSITIVE = [:kms_key_id]
2718
2780
  include Aws::Structure
2719
2781
  end
2720
2782
 
@@ -2745,6 +2807,7 @@ module Aws::S3
2745
2807
  #
2746
2808
  class EncryptionConfiguration < Struct.new(
2747
2809
  :replica_kms_key_id)
2810
+ SENSITIVE = []
2748
2811
  include Aws::Structure
2749
2812
  end
2750
2813
 
@@ -2756,6 +2819,7 @@ module Aws::S3
2756
2819
  #
2757
2820
  class EndEvent < Struct.new(
2758
2821
  :event_type)
2822
+ SENSITIVE = []
2759
2823
  include Aws::Structure
2760
2824
  end
2761
2825
 
@@ -3585,6 +3649,7 @@ module Aws::S3
3585
3649
  :version_id,
3586
3650
  :code,
3587
3651
  :message)
3652
+ SENSITIVE = []
3588
3653
  include Aws::Structure
3589
3654
  end
3590
3655
 
@@ -3605,6 +3670,7 @@ module Aws::S3
3605
3670
  #
3606
3671
  class ErrorDocument < Struct.new(
3607
3672
  :key)
3673
+ SENSITIVE = []
3608
3674
  include Aws::Structure
3609
3675
  end
3610
3676
 
@@ -3627,6 +3693,7 @@ module Aws::S3
3627
3693
  #
3628
3694
  class ExistingObjectReplication < Struct.new(
3629
3695
  :status)
3696
+ SENSITIVE = []
3630
3697
  include Aws::Structure
3631
3698
  end
3632
3699
 
@@ -3662,6 +3729,7 @@ module Aws::S3
3662
3729
  class FilterRule < Struct.new(
3663
3730
  :name,
3664
3731
  :value)
3732
+ SENSITIVE = []
3665
3733
  include Aws::Structure
3666
3734
  end
3667
3735
 
@@ -3673,6 +3741,7 @@ module Aws::S3
3673
3741
  #
3674
3742
  class GetBucketAccelerateConfigurationOutput < Struct.new(
3675
3743
  :status)
3744
+ SENSITIVE = []
3676
3745
  include Aws::Structure
3677
3746
  end
3678
3747
 
@@ -3692,6 +3761,7 @@ module Aws::S3
3692
3761
  #
3693
3762
  class GetBucketAccelerateConfigurationRequest < Struct.new(
3694
3763
  :bucket)
3764
+ SENSITIVE = []
3695
3765
  include Aws::Structure
3696
3766
  end
3697
3767
 
@@ -3708,6 +3778,7 @@ module Aws::S3
3708
3778
  class GetBucketAclOutput < Struct.new(
3709
3779
  :owner,
3710
3780
  :grants)
3781
+ SENSITIVE = []
3711
3782
  include Aws::Structure
3712
3783
  end
3713
3784
 
@@ -3726,6 +3797,7 @@ module Aws::S3
3726
3797
  #
3727
3798
  class GetBucketAclRequest < Struct.new(
3728
3799
  :bucket)
3800
+ SENSITIVE = []
3729
3801
  include Aws::Structure
3730
3802
  end
3731
3803
 
@@ -3737,6 +3809,7 @@ module Aws::S3
3737
3809
  #
3738
3810
  class GetBucketAnalyticsConfigurationOutput < Struct.new(
3739
3811
  :analytics_configuration)
3812
+ SENSITIVE = []
3740
3813
  include Aws::Structure
3741
3814
  end
3742
3815
 
@@ -3762,6 +3835,7 @@ module Aws::S3
3762
3835
  class GetBucketAnalyticsConfigurationRequest < Struct.new(
3763
3836
  :bucket,
3764
3837
  :id)
3838
+ SENSITIVE = []
3765
3839
  include Aws::Structure
3766
3840
  end
3767
3841
 
@@ -3774,6 +3848,7 @@ module Aws::S3
3774
3848
  #
3775
3849
  class GetBucketCorsOutput < Struct.new(
3776
3850
  :cors_rules)
3851
+ SENSITIVE = []
3777
3852
  include Aws::Structure
3778
3853
  end
3779
3854
 
@@ -3792,6 +3867,7 @@ module Aws::S3
3792
3867
  #
3793
3868
  class GetBucketCorsRequest < Struct.new(
3794
3869
  :bucket)
3870
+ SENSITIVE = []
3795
3871
  include Aws::Structure
3796
3872
  end
3797
3873
 
@@ -3803,6 +3879,7 @@ module Aws::S3
3803
3879
  #
3804
3880
  class GetBucketEncryptionOutput < Struct.new(
3805
3881
  :server_side_encryption_configuration)
3882
+ SENSITIVE = []
3806
3883
  include Aws::Structure
3807
3884
  end
3808
3885
 
@@ -3822,6 +3899,7 @@ module Aws::S3
3822
3899
  #
3823
3900
  class GetBucketEncryptionRequest < Struct.new(
3824
3901
  :bucket)
3902
+ SENSITIVE = []
3825
3903
  include Aws::Structure
3826
3904
  end
3827
3905
 
@@ -3833,6 +3911,7 @@ module Aws::S3
3833
3911
  #
3834
3912
  class GetBucketInventoryConfigurationOutput < Struct.new(
3835
3913
  :inventory_configuration)
3914
+ SENSITIVE = []
3836
3915
  include Aws::Structure
3837
3916
  end
3838
3917
 
@@ -3858,6 +3937,7 @@ module Aws::S3
3858
3937
  class GetBucketInventoryConfigurationRequest < Struct.new(
3859
3938
  :bucket,
3860
3939
  :id)
3940
+ SENSITIVE = []
3861
3941
  include Aws::Structure
3862
3942
  end
3863
3943
 
@@ -3869,6 +3949,7 @@ module Aws::S3
3869
3949
  #
3870
3950
  class GetBucketLifecycleConfigurationOutput < Struct.new(
3871
3951
  :rules)
3952
+ SENSITIVE = []
3872
3953
  include Aws::Structure
3873
3954
  end
3874
3955
 
@@ -3887,6 +3968,7 @@ module Aws::S3
3887
3968
  #
3888
3969
  class GetBucketLifecycleConfigurationRequest < Struct.new(
3889
3970
  :bucket)
3971
+ SENSITIVE = []
3890
3972
  include Aws::Structure
3891
3973
  end
3892
3974
 
@@ -3898,6 +3980,7 @@ module Aws::S3
3898
3980
  #
3899
3981
  class GetBucketLifecycleOutput < Struct.new(
3900
3982
  :rules)
3983
+ SENSITIVE = []
3901
3984
  include Aws::Structure
3902
3985
  end
3903
3986
 
@@ -3916,6 +3999,7 @@ module Aws::S3
3916
3999
  #
3917
4000
  class GetBucketLifecycleRequest < Struct.new(
3918
4001
  :bucket)
4002
+ SENSITIVE = []
3919
4003
  include Aws::Structure
3920
4004
  end
3921
4005
 
@@ -3934,6 +4018,7 @@ module Aws::S3
3934
4018
  #
3935
4019
  class GetBucketLocationOutput < Struct.new(
3936
4020
  :location_constraint)
4021
+ SENSITIVE = []
3937
4022
  include Aws::Structure
3938
4023
  end
3939
4024
 
@@ -3952,6 +4037,7 @@ module Aws::S3
3952
4037
  #
3953
4038
  class GetBucketLocationRequest < Struct.new(
3954
4039
  :bucket)
4040
+ SENSITIVE = []
3955
4041
  include Aws::Structure
3956
4042
  end
3957
4043
 
@@ -3970,6 +4056,7 @@ module Aws::S3
3970
4056
  #
3971
4057
  class GetBucketLoggingOutput < Struct.new(
3972
4058
  :logging_enabled)
4059
+ SENSITIVE = []
3973
4060
  include Aws::Structure
3974
4061
  end
3975
4062
 
@@ -3988,6 +4075,7 @@ module Aws::S3
3988
4075
  #
3989
4076
  class GetBucketLoggingRequest < Struct.new(
3990
4077
  :bucket)
4078
+ SENSITIVE = []
3991
4079
  include Aws::Structure
3992
4080
  end
3993
4081
 
@@ -3999,6 +4087,7 @@ module Aws::S3
3999
4087
  #
4000
4088
  class GetBucketMetricsConfigurationOutput < Struct.new(
4001
4089
  :metrics_configuration)
4090
+ SENSITIVE = []
4002
4091
  include Aws::Structure
4003
4092
  end
4004
4093
 
@@ -4024,6 +4113,7 @@ module Aws::S3
4024
4113
  class GetBucketMetricsConfigurationRequest < Struct.new(
4025
4114
  :bucket,
4026
4115
  :id)
4116
+ SENSITIVE = []
4027
4117
  include Aws::Structure
4028
4118
  end
4029
4119
 
@@ -4042,6 +4132,7 @@ module Aws::S3
4042
4132
  #
4043
4133
  class GetBucketNotificationConfigurationRequest < Struct.new(
4044
4134
  :bucket)
4135
+ SENSITIVE = []
4045
4136
  include Aws::Structure
4046
4137
  end
4047
4138
 
@@ -4053,6 +4144,7 @@ module Aws::S3
4053
4144
  #
4054
4145
  class GetBucketPolicyOutput < Struct.new(
4055
4146
  :policy)
4147
+ SENSITIVE = []
4056
4148
  include Aws::Structure
4057
4149
  end
4058
4150
 
@@ -4071,6 +4163,7 @@ module Aws::S3
4071
4163
  #
4072
4164
  class GetBucketPolicyRequest < Struct.new(
4073
4165
  :bucket)
4166
+ SENSITIVE = []
4074
4167
  include Aws::Structure
4075
4168
  end
4076
4169
 
@@ -4082,6 +4175,7 @@ module Aws::S3
4082
4175
  #
4083
4176
  class GetBucketPolicyStatusOutput < Struct.new(
4084
4177
  :policy_status)
4178
+ SENSITIVE = []
4085
4179
  include Aws::Structure
4086
4180
  end
4087
4181
 
@@ -4101,6 +4195,7 @@ module Aws::S3
4101
4195
  #
4102
4196
  class GetBucketPolicyStatusRequest < Struct.new(
4103
4197
  :bucket)
4198
+ SENSITIVE = []
4104
4199
  include Aws::Structure
4105
4200
  end
4106
4201
 
@@ -4113,6 +4208,7 @@ module Aws::S3
4113
4208
  #
4114
4209
  class GetBucketReplicationOutput < Struct.new(
4115
4210
  :replication_configuration)
4211
+ SENSITIVE = []
4116
4212
  include Aws::Structure
4117
4213
  end
4118
4214
 
@@ -4131,6 +4227,7 @@ module Aws::S3
4131
4227
  #
4132
4228
  class GetBucketReplicationRequest < Struct.new(
4133
4229
  :bucket)
4230
+ SENSITIVE = []
4134
4231
  include Aws::Structure
4135
4232
  end
4136
4233
 
@@ -4142,6 +4239,7 @@ module Aws::S3
4142
4239
  #
4143
4240
  class GetBucketRequestPaymentOutput < Struct.new(
4144
4241
  :payer)
4242
+ SENSITIVE = []
4145
4243
  include Aws::Structure
4146
4244
  end
4147
4245
 
@@ -4161,6 +4259,7 @@ module Aws::S3
4161
4259
  #
4162
4260
  class GetBucketRequestPaymentRequest < Struct.new(
4163
4261
  :bucket)
4262
+ SENSITIVE = []
4164
4263
  include Aws::Structure
4165
4264
  end
4166
4265
 
@@ -4172,6 +4271,7 @@ module Aws::S3
4172
4271
  #
4173
4272
  class GetBucketTaggingOutput < Struct.new(
4174
4273
  :tag_set)
4274
+ SENSITIVE = []
4175
4275
  include Aws::Structure
4176
4276
  end
4177
4277
 
@@ -4190,6 +4290,7 @@ module Aws::S3
4190
4290
  #
4191
4291
  class GetBucketTaggingRequest < Struct.new(
4192
4292
  :bucket)
4293
+ SENSITIVE = []
4193
4294
  include Aws::Structure
4194
4295
  end
4195
4296
 
@@ -4209,6 +4310,7 @@ module Aws::S3
4209
4310
  class GetBucketVersioningOutput < Struct.new(
4210
4311
  :status,
4211
4312
  :mfa_delete)
4313
+ SENSITIVE = []
4212
4314
  include Aws::Structure
4213
4315
  end
4214
4316
 
@@ -4227,6 +4329,7 @@ module Aws::S3
4227
4329
  #
4228
4330
  class GetBucketVersioningRequest < Struct.new(
4229
4331
  :bucket)
4332
+ SENSITIVE = []
4230
4333
  include Aws::Structure
4231
4334
  end
4232
4335
 
@@ -4257,6 +4360,7 @@ module Aws::S3
4257
4360
  :index_document,
4258
4361
  :error_document,
4259
4362
  :routing_rules)
4363
+ SENSITIVE = []
4260
4364
  include Aws::Structure
4261
4365
  end
4262
4366
 
@@ -4275,6 +4379,7 @@ module Aws::S3
4275
4379
  #
4276
4380
  class GetBucketWebsiteRequest < Struct.new(
4277
4381
  :bucket)
4382
+ SENSITIVE = []
4278
4383
  include Aws::Structure
4279
4384
  end
4280
4385
 
@@ -4297,6 +4402,7 @@ module Aws::S3
4297
4402
  :owner,
4298
4403
  :grants,
4299
4404
  :request_charged)
4405
+ SENSITIVE = []
4300
4406
  include Aws::Structure
4301
4407
  end
4302
4408
 
@@ -4355,6 +4461,7 @@ module Aws::S3
4355
4461
  :key,
4356
4462
  :version_id,
4357
4463
  :request_payer)
4464
+ SENSITIVE = []
4358
4465
  include Aws::Structure
4359
4466
  end
4360
4467
 
@@ -4366,6 +4473,7 @@ module Aws::S3
4366
4473
  #
4367
4474
  class GetObjectLegalHoldOutput < Struct.new(
4368
4475
  :legal_hold)
4476
+ SENSITIVE = []
4369
4477
  include Aws::Structure
4370
4478
  end
4371
4479
 
@@ -4426,6 +4534,7 @@ module Aws::S3
4426
4534
  :key,
4427
4535
  :version_id,
4428
4536
  :request_payer)
4537
+ SENSITIVE = []
4429
4538
  include Aws::Structure
4430
4539
  end
4431
4540
 
@@ -4437,6 +4546,7 @@ module Aws::S3
4437
4546
  #
4438
4547
  class GetObjectLockConfigurationOutput < Struct.new(
4439
4548
  :object_lock_configuration)
4549
+ SENSITIVE = []
4440
4550
  include Aws::Structure
4441
4551
  end
4442
4552
 
@@ -4455,6 +4565,7 @@ module Aws::S3
4455
4565
  #
4456
4566
  class GetObjectLockConfigurationRequest < Struct.new(
4457
4567
  :bucket)
4568
+ SENSITIVE = []
4458
4569
  include Aws::Structure
4459
4570
  end
4460
4571
 
@@ -4650,6 +4761,7 @@ module Aws::S3
4650
4761
  :object_lock_mode,
4651
4762
  :object_lock_retain_until_date,
4652
4763
  :object_lock_legal_hold_status)
4764
+ SENSITIVE = [:ssekms_key_id]
4653
4765
  include Aws::Structure
4654
4766
  end
4655
4767
 
@@ -4822,6 +4934,7 @@ module Aws::S3
4822
4934
  :sse_customer_key_md5,
4823
4935
  :request_payer,
4824
4936
  :part_number)
4937
+ SENSITIVE = [:sse_customer_key]
4825
4938
  include Aws::Structure
4826
4939
  end
4827
4940
 
@@ -4833,6 +4946,7 @@ module Aws::S3
4833
4946
  #
4834
4947
  class GetObjectRetentionOutput < Struct.new(
4835
4948
  :retention)
4949
+ SENSITIVE = []
4836
4950
  include Aws::Structure
4837
4951
  end
4838
4952
 
@@ -4893,6 +5007,7 @@ module Aws::S3
4893
5007
  :key,
4894
5008
  :version_id,
4895
5009
  :request_payer)
5010
+ SENSITIVE = []
4896
5011
  include Aws::Structure
4897
5012
  end
4898
5013
 
@@ -4910,6 +5025,7 @@ module Aws::S3
4910
5025
  class GetObjectTaggingOutput < Struct.new(
4911
5026
  :version_id,
4912
5027
  :tag_set)
5028
+ SENSITIVE = []
4913
5029
  include Aws::Structure
4914
5030
  end
4915
5031
 
@@ -4955,6 +5071,7 @@ module Aws::S3
4955
5071
  :bucket,
4956
5072
  :key,
4957
5073
  :version_id)
5074
+ SENSITIVE = []
4958
5075
  include Aws::Structure
4959
5076
  end
4960
5077
 
@@ -4972,6 +5089,7 @@ module Aws::S3
4972
5089
  class GetObjectTorrentOutput < Struct.new(
4973
5090
  :body,
4974
5091
  :request_charged)
5092
+ SENSITIVE = []
4975
5093
  include Aws::Structure
4976
5094
  end
4977
5095
 
@@ -5011,6 +5129,7 @@ module Aws::S3
5011
5129
  :bucket,
5012
5130
  :key,
5013
5131
  :request_payer)
5132
+ SENSITIVE = []
5014
5133
  include Aws::Structure
5015
5134
  end
5016
5135
 
@@ -5023,6 +5142,7 @@ module Aws::S3
5023
5142
  #
5024
5143
  class GetPublicAccessBlockOutput < Struct.new(
5025
5144
  :public_access_block_configuration)
5145
+ SENSITIVE = []
5026
5146
  include Aws::Structure
5027
5147
  end
5028
5148
 
@@ -5042,6 +5162,7 @@ module Aws::S3
5042
5162
  #
5043
5163
  class GetPublicAccessBlockRequest < Struct.new(
5044
5164
  :bucket)
5165
+ SENSITIVE = []
5045
5166
  include Aws::Structure
5046
5167
  end
5047
5168
 
@@ -5062,6 +5183,7 @@ module Aws::S3
5062
5183
  #
5063
5184
  class GlacierJobParameters < Struct.new(
5064
5185
  :tier)
5186
+ SENSITIVE = []
5065
5187
  include Aws::Structure
5066
5188
  end
5067
5189
 
@@ -5094,6 +5216,7 @@ module Aws::S3
5094
5216
  class Grant < Struct.new(
5095
5217
  :grantee,
5096
5218
  :permission)
5219
+ SENSITIVE = []
5097
5220
  include Aws::Structure
5098
5221
  end
5099
5222
 
@@ -5166,6 +5289,7 @@ module Aws::S3
5166
5289
  :id,
5167
5290
  :type,
5168
5291
  :uri)
5292
+ SENSITIVE = []
5169
5293
  include Aws::Structure
5170
5294
  end
5171
5295
 
@@ -5184,6 +5308,7 @@ module Aws::S3
5184
5308
  #
5185
5309
  class HeadBucketRequest < Struct.new(
5186
5310
  :bucket)
5311
+ SENSITIVE = []
5187
5312
  include Aws::Structure
5188
5313
  end
5189
5314
 
@@ -5437,6 +5562,7 @@ module Aws::S3
5437
5562
  :object_lock_mode,
5438
5563
  :object_lock_retain_until_date,
5439
5564
  :object_lock_legal_hold_status)
5565
+ SENSITIVE = [:ssekms_key_id]
5440
5566
  include Aws::Structure
5441
5567
  end
5442
5568
 
@@ -5556,6 +5682,7 @@ module Aws::S3
5556
5682
  :sse_customer_key_md5,
5557
5683
  :request_payer,
5558
5684
  :part_number)
5685
+ SENSITIVE = [:sse_customer_key]
5559
5686
  include Aws::Structure
5560
5687
  end
5561
5688
 
@@ -5580,6 +5707,7 @@ module Aws::S3
5580
5707
  #
5581
5708
  class IndexDocument < Struct.new(
5582
5709
  :suffix)
5710
+ SENSITIVE = []
5583
5711
  include Aws::Structure
5584
5712
  end
5585
5713
 
@@ -5599,6 +5727,7 @@ module Aws::S3
5599
5727
  class Initiator < Struct.new(
5600
5728
  :id,
5601
5729
  :display_name)
5730
+ SENSITIVE = []
5602
5731
  include Aws::Structure
5603
5732
  end
5604
5733
 
@@ -5649,6 +5778,7 @@ module Aws::S3
5649
5778
  :compression_type,
5650
5779
  :json,
5651
5780
  :parquet)
5781
+ SENSITIVE = []
5652
5782
  include Aws::Structure
5653
5783
  end
5654
5784
 
@@ -5737,6 +5867,7 @@ module Aws::S3
5737
5867
  :included_object_versions,
5738
5868
  :optional_fields,
5739
5869
  :schedule)
5870
+ SENSITIVE = []
5740
5871
  include Aws::Structure
5741
5872
  end
5742
5873
 
@@ -5770,6 +5901,7 @@ module Aws::S3
5770
5901
  #
5771
5902
  class InventoryDestination < Struct.new(
5772
5903
  :s3_bucket_destination)
5904
+ SENSITIVE = []
5773
5905
  include Aws::Structure
5774
5906
  end
5775
5907
 
@@ -5800,6 +5932,7 @@ module Aws::S3
5800
5932
  class InventoryEncryption < Struct.new(
5801
5933
  :sses3,
5802
5934
  :ssekms)
5935
+ SENSITIVE = []
5803
5936
  include Aws::Structure
5804
5937
  end
5805
5938
 
@@ -5822,6 +5955,7 @@ module Aws::S3
5822
5955
  #
5823
5956
  class InventoryFilter < Struct.new(
5824
5957
  :prefix)
5958
+ SENSITIVE = []
5825
5959
  include Aws::Structure
5826
5960
  end
5827
5961
 
@@ -5882,6 +6016,7 @@ module Aws::S3
5882
6016
  :format,
5883
6017
  :prefix,
5884
6018
  :encryption)
6019
+ SENSITIVE = []
5885
6020
  include Aws::Structure
5886
6021
  end
5887
6022
 
@@ -5902,6 +6037,7 @@ module Aws::S3
5902
6037
  #
5903
6038
  class InventorySchedule < Struct.new(
5904
6039
  :frequency)
6040
+ SENSITIVE = []
5905
6041
  include Aws::Structure
5906
6042
  end
5907
6043
 
@@ -5922,6 +6058,7 @@ module Aws::S3
5922
6058
  #
5923
6059
  class JSONInput < Struct.new(
5924
6060
  :type)
6061
+ SENSITIVE = []
5925
6062
  include Aws::Structure
5926
6063
  end
5927
6064
 
@@ -5943,6 +6080,7 @@ module Aws::S3
5943
6080
  #
5944
6081
  class JSONOutput < Struct.new(
5945
6082
  :record_delimiter)
6083
+ SENSITIVE = []
5946
6084
  include Aws::Structure
5947
6085
  end
5948
6086
 
@@ -6006,6 +6144,7 @@ module Aws::S3
6006
6144
  :lambda_function_arn,
6007
6145
  :events,
6008
6146
  :filter)
6147
+ SENSITIVE = []
6009
6148
  include Aws::Structure
6010
6149
  end
6011
6150
 
@@ -6052,6 +6191,7 @@ module Aws::S3
6052
6191
  #
6053
6192
  class LifecycleConfiguration < Struct.new(
6054
6193
  :rules)
6194
+ SENSITIVE = []
6055
6195
  include Aws::Structure
6056
6196
  end
6057
6197
 
@@ -6089,6 +6229,7 @@ module Aws::S3
6089
6229
  :date,
6090
6230
  :days,
6091
6231
  :expired_object_delete_marker)
6232
+ SENSITIVE = []
6092
6233
  include Aws::Structure
6093
6234
  end
6094
6235
 
@@ -6216,6 +6357,7 @@ module Aws::S3
6216
6357
  :noncurrent_version_transitions,
6217
6358
  :noncurrent_version_expiration,
6218
6359
  :abort_incomplete_multipart_upload)
6360
+ SENSITIVE = []
6219
6361
  include Aws::Structure
6220
6362
  end
6221
6363
 
@@ -6250,6 +6392,7 @@ module Aws::S3
6250
6392
  class LifecycleRuleAndOperator < Struct.new(
6251
6393
  :prefix,
6252
6394
  :tags)
6395
+ SENSITIVE = []
6253
6396
  include Aws::Structure
6254
6397
  end
6255
6398
 
@@ -6298,6 +6441,7 @@ module Aws::S3
6298
6441
  :prefix,
6299
6442
  :tag,
6300
6443
  :and)
6444
+ SENSITIVE = []
6301
6445
  include Aws::Structure
6302
6446
  end
6303
6447
 
@@ -6332,6 +6476,7 @@ module Aws::S3
6332
6476
  :continuation_token,
6333
6477
  :next_continuation_token,
6334
6478
  :analytics_configuration_list)
6479
+ SENSITIVE = []
6335
6480
  include Aws::Structure
6336
6481
  end
6337
6482
 
@@ -6358,6 +6503,7 @@ module Aws::S3
6358
6503
  class ListBucketAnalyticsConfigurationsRequest < Struct.new(
6359
6504
  :bucket,
6360
6505
  :continuation_token)
6506
+ SENSITIVE = []
6361
6507
  include Aws::Structure
6362
6508
  end
6363
6509
 
@@ -6390,6 +6536,7 @@ module Aws::S3
6390
6536
  :inventory_configuration_list,
6391
6537
  :is_truncated,
6392
6538
  :next_continuation_token)
6539
+ SENSITIVE = []
6393
6540
  include Aws::Structure
6394
6541
  end
6395
6542
 
@@ -6418,6 +6565,7 @@ module Aws::S3
6418
6565
  class ListBucketInventoryConfigurationsRequest < Struct.new(
6419
6566
  :bucket,
6420
6567
  :continuation_token)
6568
+ SENSITIVE = []
6421
6569
  include Aws::Structure
6422
6570
  end
6423
6571
 
@@ -6452,6 +6600,7 @@ module Aws::S3
6452
6600
  :continuation_token,
6453
6601
  :next_continuation_token,
6454
6602
  :metrics_configuration_list)
6603
+ SENSITIVE = []
6455
6604
  include Aws::Structure
6456
6605
  end
6457
6606
 
@@ -6480,6 +6629,7 @@ module Aws::S3
6480
6629
  class ListBucketMetricsConfigurationsRequest < Struct.new(
6481
6630
  :bucket,
6482
6631
  :continuation_token)
6632
+ SENSITIVE = []
6483
6633
  include Aws::Structure
6484
6634
  end
6485
6635
 
@@ -6496,6 +6646,7 @@ module Aws::S3
6496
6646
  class ListBucketsOutput < Struct.new(
6497
6647
  :buckets,
6498
6648
  :owner)
6649
+ SENSITIVE = []
6499
6650
  include Aws::Structure
6500
6651
  end
6501
6652
 
@@ -6585,6 +6736,7 @@ module Aws::S3
6585
6736
  :uploads,
6586
6737
  :common_prefixes,
6587
6738
  :encoding_type)
6739
+ SENSITIVE = []
6588
6740
  include Aws::Structure
6589
6741
  end
6590
6742
 
@@ -6685,6 +6837,7 @@ module Aws::S3
6685
6837
  :max_uploads,
6686
6838
  :prefix,
6687
6839
  :upload_id_marker)
6840
+ SENSITIVE = []
6688
6841
  include Aws::Structure
6689
6842
  end
6690
6843
 
@@ -6780,6 +6933,7 @@ module Aws::S3
6780
6933
  :max_keys,
6781
6934
  :common_prefixes,
6782
6935
  :encoding_type)
6936
+ SENSITIVE = []
6783
6937
  include Aws::Structure
6784
6938
  end
6785
6939
 
@@ -6868,6 +7022,7 @@ module Aws::S3
6868
7022
  :max_keys,
6869
7023
  :prefix,
6870
7024
  :version_id_marker)
7025
+ SENSITIVE = []
6871
7026
  include Aws::Structure
6872
7027
  end
6873
7028
 
@@ -6953,6 +7108,7 @@ module Aws::S3
6953
7108
  :max_keys,
6954
7109
  :common_prefixes,
6955
7110
  :encoding_type)
7111
+ SENSITIVE = []
6956
7112
  include Aws::Structure
6957
7113
  end
6958
7114
 
@@ -7016,6 +7172,7 @@ module Aws::S3
7016
7172
  :max_keys,
7017
7173
  :prefix,
7018
7174
  :request_payer)
7175
+ SENSITIVE = []
7019
7176
  include Aws::Structure
7020
7177
  end
7021
7178
 
@@ -7134,6 +7291,7 @@ module Aws::S3
7134
7291
  :continuation_token,
7135
7292
  :next_continuation_token,
7136
7293
  :start_after)
7294
+ SENSITIVE = []
7137
7295
  include Aws::Structure
7138
7296
  end
7139
7297
 
@@ -7224,6 +7382,7 @@ module Aws::S3
7224
7382
  :fetch_owner,
7225
7383
  :start_after,
7226
7384
  :request_payer)
7385
+ SENSITIVE = []
7227
7386
  include Aws::Structure
7228
7387
  end
7229
7388
 
@@ -7332,6 +7491,7 @@ module Aws::S3
7332
7491
  :owner,
7333
7492
  :storage_class,
7334
7493
  :request_charged)
7494
+ SENSITIVE = []
7335
7495
  include Aws::Structure
7336
7496
  end
7337
7497
 
@@ -7403,6 +7563,7 @@ module Aws::S3
7403
7563
  :part_number_marker,
7404
7564
  :upload_id,
7405
7565
  :request_payer)
7566
+ SENSITIVE = []
7406
7567
  include Aws::Structure
7407
7568
  end
7408
7569
 
@@ -7461,6 +7622,7 @@ module Aws::S3
7461
7622
  :target_bucket,
7462
7623
  :target_grants,
7463
7624
  :target_prefix)
7625
+ SENSITIVE = []
7464
7626
  include Aws::Structure
7465
7627
  end
7466
7628
 
@@ -7487,6 +7649,7 @@ module Aws::S3
7487
7649
  class MetadataEntry < Struct.new(
7488
7650
  :name,
7489
7651
  :value)
7652
+ SENSITIVE = []
7490
7653
  include Aws::Structure
7491
7654
  end
7492
7655
 
@@ -7518,6 +7681,7 @@ module Aws::S3
7518
7681
  class Metrics < Struct.new(
7519
7682
  :status,
7520
7683
  :event_threshold)
7684
+ SENSITIVE = []
7521
7685
  include Aws::Structure
7522
7686
  end
7523
7687
 
@@ -7552,6 +7716,7 @@ module Aws::S3
7552
7716
  class MetricsAndOperator < Struct.new(
7553
7717
  :prefix,
7554
7718
  :tags)
7719
+ SENSITIVE = []
7555
7720
  include Aws::Structure
7556
7721
  end
7557
7722
 
@@ -7605,6 +7770,7 @@ module Aws::S3
7605
7770
  class MetricsConfiguration < Struct.new(
7606
7771
  :id,
7607
7772
  :filter)
7773
+ SENSITIVE = []
7608
7774
  include Aws::Structure
7609
7775
  end
7610
7776
 
@@ -7653,6 +7819,7 @@ module Aws::S3
7653
7819
  :prefix,
7654
7820
  :tag,
7655
7821
  :and)
7822
+ SENSITIVE = []
7656
7823
  include Aws::Structure
7657
7824
  end
7658
7825
 
@@ -7692,6 +7859,7 @@ module Aws::S3
7692
7859
  :storage_class,
7693
7860
  :owner,
7694
7861
  :initiator)
7862
+ SENSITIVE = []
7695
7863
  include Aws::Structure
7696
7864
  end
7697
7865
 
@@ -7742,6 +7910,7 @@ module Aws::S3
7742
7910
  #
7743
7911
  class NoncurrentVersionExpiration < Struct.new(
7744
7912
  :noncurrent_days)
7913
+ SENSITIVE = []
7745
7914
  include Aws::Structure
7746
7915
  end
7747
7916
 
@@ -7783,6 +7952,7 @@ module Aws::S3
7783
7952
  class NoncurrentVersionTransition < Struct.new(
7784
7953
  :noncurrent_days,
7785
7954
  :storage_class)
7955
+ SENSITIVE = []
7786
7956
  include Aws::Structure
7787
7957
  end
7788
7958
 
@@ -7868,6 +8038,7 @@ module Aws::S3
7868
8038
  :topic_configurations,
7869
8039
  :queue_configurations,
7870
8040
  :lambda_function_configurations)
8041
+ SENSITIVE = []
7871
8042
  include Aws::Structure
7872
8043
  end
7873
8044
 
@@ -7919,6 +8090,7 @@ module Aws::S3
7919
8090
  :topic_configuration,
7920
8091
  :queue_configuration,
7921
8092
  :cloud_function_configuration)
8093
+ SENSITIVE = []
7922
8094
  include Aws::Structure
7923
8095
  end
7924
8096
 
@@ -7952,6 +8124,7 @@ module Aws::S3
7952
8124
  #
7953
8125
  class NotificationConfigurationFilter < Struct.new(
7954
8126
  :key)
8127
+ SENSITIVE = []
7955
8128
  include Aws::Structure
7956
8129
  end
7957
8130
 
@@ -7992,6 +8165,7 @@ module Aws::S3
7992
8165
  :size,
7993
8166
  :storage_class,
7994
8167
  :owner)
8168
+ SENSITIVE = []
7995
8169
  include Aws::Structure
7996
8170
  end
7997
8171
 
@@ -8024,6 +8198,7 @@ module Aws::S3
8024
8198
  class ObjectIdentifier < Struct.new(
8025
8199
  :key,
8026
8200
  :version_id)
8201
+ SENSITIVE = []
8027
8202
  include Aws::Structure
8028
8203
  end
8029
8204
 
@@ -8057,6 +8232,7 @@ module Aws::S3
8057
8232
  class ObjectLockConfiguration < Struct.new(
8058
8233
  :object_lock_enabled,
8059
8234
  :rule)
8235
+ SENSITIVE = []
8060
8236
  include Aws::Structure
8061
8237
  end
8062
8238
 
@@ -8077,6 +8253,7 @@ module Aws::S3
8077
8253
  #
8078
8254
  class ObjectLockLegalHold < Struct.new(
8079
8255
  :status)
8256
+ SENSITIVE = []
8080
8257
  include Aws::Structure
8081
8258
  end
8082
8259
 
@@ -8103,6 +8280,7 @@ module Aws::S3
8103
8280
  class ObjectLockRetention < Struct.new(
8104
8281
  :mode,
8105
8282
  :retain_until_date)
8283
+ SENSITIVE = []
8106
8284
  include Aws::Structure
8107
8285
  end
8108
8286
 
@@ -8128,6 +8306,7 @@ module Aws::S3
8128
8306
  #
8129
8307
  class ObjectLockRule < Struct.new(
8130
8308
  :default_retention)
8309
+ SENSITIVE = []
8131
8310
  include Aws::Structure
8132
8311
  end
8133
8312
 
@@ -8184,6 +8363,7 @@ module Aws::S3
8184
8363
  :is_latest,
8185
8364
  :last_modified,
8186
8365
  :owner)
8366
+ SENSITIVE = []
8187
8367
  include Aws::Structure
8188
8368
  end
8189
8369
 
@@ -8241,6 +8421,7 @@ module Aws::S3
8241
8421
  #
8242
8422
  class OutputLocation < Struct.new(
8243
8423
  :s3)
8424
+ SENSITIVE = []
8244
8425
  include Aws::Structure
8245
8426
  end
8246
8427
 
@@ -8275,6 +8456,7 @@ module Aws::S3
8275
8456
  class OutputSerialization < Struct.new(
8276
8457
  :csv,
8277
8458
  :json)
8459
+ SENSITIVE = []
8278
8460
  include Aws::Structure
8279
8461
  end
8280
8462
 
@@ -8301,6 +8483,7 @@ module Aws::S3
8301
8483
  class Owner < Struct.new(
8302
8484
  :display_name,
8303
8485
  :id)
8486
+ SENSITIVE = []
8304
8487
  include Aws::Structure
8305
8488
  end
8306
8489
 
@@ -8338,6 +8521,7 @@ module Aws::S3
8338
8521
  :last_modified,
8339
8522
  :etag,
8340
8523
  :size)
8524
+ SENSITIVE = []
8341
8525
  include Aws::Structure
8342
8526
  end
8343
8527
 
@@ -8352,6 +8536,7 @@ module Aws::S3
8352
8536
  #
8353
8537
  class PolicyStatus < Struct.new(
8354
8538
  :is_public)
8539
+ SENSITIVE = []
8355
8540
  include Aws::Structure
8356
8541
  end
8357
8542
 
@@ -8375,6 +8560,7 @@ module Aws::S3
8375
8560
  :bytes_scanned,
8376
8561
  :bytes_processed,
8377
8562
  :bytes_returned)
8563
+ SENSITIVE = []
8378
8564
  include Aws::Structure
8379
8565
  end
8380
8566
 
@@ -8390,6 +8576,7 @@ module Aws::S3
8390
8576
  class ProgressEvent < Struct.new(
8391
8577
  :details,
8392
8578
  :event_type)
8579
+ SENSITIVE = []
8393
8580
  include Aws::Structure
8394
8581
  end
8395
8582
 
@@ -8466,6 +8653,7 @@ module Aws::S3
8466
8653
  :ignore_public_acls,
8467
8654
  :block_public_policy,
8468
8655
  :restrict_public_buckets)
8656
+ SENSITIVE = []
8469
8657
  include Aws::Structure
8470
8658
  end
8471
8659
 
@@ -8492,6 +8680,7 @@ module Aws::S3
8492
8680
  class PutBucketAccelerateConfigurationRequest < Struct.new(
8493
8681
  :bucket,
8494
8682
  :accelerate_configuration)
8683
+ SENSITIVE = []
8495
8684
  include Aws::Structure
8496
8685
  end
8497
8686
 
@@ -8585,6 +8774,7 @@ module Aws::S3
8585
8774
  :grant_read_acp,
8586
8775
  :grant_write,
8587
8776
  :grant_write_acp)
8777
+ SENSITIVE = []
8588
8778
  include Aws::Structure
8589
8779
  end
8590
8780
 
@@ -8647,6 +8837,7 @@ module Aws::S3
8647
8837
  :bucket,
8648
8838
  :id,
8649
8839
  :analytics_configuration)
8840
+ SENSITIVE = []
8650
8841
  include Aws::Structure
8651
8842
  end
8652
8843
 
@@ -8701,6 +8892,7 @@ module Aws::S3
8701
8892
  :bucket,
8702
8893
  :cors_configuration,
8703
8894
  :content_md5)
8895
+ SENSITIVE = []
8704
8896
  include Aws::Structure
8705
8897
  end
8706
8898
 
@@ -8751,6 +8943,7 @@ module Aws::S3
8751
8943
  :bucket,
8752
8944
  :content_md5,
8753
8945
  :server_side_encryption_configuration)
8946
+ SENSITIVE = []
8754
8947
  include Aws::Structure
8755
8948
  end
8756
8949
 
@@ -8808,6 +9001,7 @@ module Aws::S3
8808
9001
  :bucket,
8809
9002
  :id,
8810
9003
  :inventory_configuration)
9004
+ SENSITIVE = []
8811
9005
  include Aws::Structure
8812
9006
  end
8813
9007
 
@@ -8880,6 +9074,7 @@ module Aws::S3
8880
9074
  class PutBucketLifecycleConfigurationRequest < Struct.new(
8881
9075
  :bucket,
8882
9076
  :lifecycle_configuration)
9077
+ SENSITIVE = []
8883
9078
  include Aws::Structure
8884
9079
  end
8885
9080
 
@@ -8935,6 +9130,7 @@ module Aws::S3
8935
9130
  :bucket,
8936
9131
  :content_md5,
8937
9132
  :lifecycle_configuration)
9133
+ SENSITIVE = []
8938
9134
  include Aws::Structure
8939
9135
  end
8940
9136
 
@@ -8982,6 +9178,7 @@ module Aws::S3
8982
9178
  :bucket,
8983
9179
  :bucket_logging_status,
8984
9180
  :content_md5)
9181
+ SENSITIVE = []
8985
9182
  include Aws::Structure
8986
9183
  end
8987
9184
 
@@ -9030,6 +9227,7 @@ module Aws::S3
9030
9227
  :bucket,
9031
9228
  :id,
9032
9229
  :metrics_configuration)
9230
+ SENSITIVE = []
9033
9231
  include Aws::Structure
9034
9232
  end
9035
9233
 
@@ -9108,6 +9306,7 @@ module Aws::S3
9108
9306
  class PutBucketNotificationConfigurationRequest < Struct.new(
9109
9307
  :bucket,
9110
9308
  :notification_configuration)
9309
+ SENSITIVE = []
9111
9310
  include Aws::Structure
9112
9311
  end
9113
9312
 
@@ -9158,6 +9357,7 @@ module Aws::S3
9158
9357
  :bucket,
9159
9358
  :content_md5,
9160
9359
  :notification_configuration)
9360
+ SENSITIVE = []
9161
9361
  include Aws::Structure
9162
9362
  end
9163
9363
 
@@ -9195,6 +9395,7 @@ module Aws::S3
9195
9395
  :content_md5,
9196
9396
  :confirm_remove_self_bucket_access,
9197
9397
  :policy)
9398
+ SENSITIVE = []
9198
9399
  include Aws::Structure
9199
9400
  end
9200
9401
 
@@ -9298,6 +9499,7 @@ module Aws::S3
9298
9499
  :content_md5,
9299
9500
  :replication_configuration,
9300
9501
  :token)
9502
+ SENSITIVE = []
9301
9503
  include Aws::Structure
9302
9504
  end
9303
9505
 
@@ -9337,6 +9539,7 @@ module Aws::S3
9337
9539
  :bucket,
9338
9540
  :content_md5,
9339
9541
  :request_payment_configuration)
9542
+ SENSITIVE = []
9340
9543
  include Aws::Structure
9341
9544
  end
9342
9545
 
@@ -9381,6 +9584,7 @@ module Aws::S3
9381
9584
  :bucket,
9382
9585
  :content_md5,
9383
9586
  :tagging)
9587
+ SENSITIVE = []
9384
9588
  include Aws::Structure
9385
9589
  end
9386
9590
 
@@ -9429,6 +9633,7 @@ module Aws::S3
9429
9633
  :content_md5,
9430
9634
  :mfa,
9431
9635
  :versioning_configuration)
9636
+ SENSITIVE = []
9432
9637
  include Aws::Structure
9433
9638
  end
9434
9639
 
@@ -9492,6 +9697,7 @@ module Aws::S3
9492
9697
  :bucket,
9493
9698
  :content_md5,
9494
9699
  :website_configuration)
9700
+ SENSITIVE = []
9495
9701
  include Aws::Structure
9496
9702
  end
9497
9703
 
@@ -9504,6 +9710,7 @@ module Aws::S3
9504
9710
  #
9505
9711
  class PutObjectAclOutput < Struct.new(
9506
9712
  :request_charged)
9713
+ SENSITIVE = []
9507
9714
  include Aws::Structure
9508
9715
  end
9509
9716
 
@@ -9642,6 +9849,7 @@ module Aws::S3
9642
9849
  :key,
9643
9850
  :request_payer,
9644
9851
  :version_id)
9852
+ SENSITIVE = []
9645
9853
  include Aws::Structure
9646
9854
  end
9647
9855
 
@@ -9654,6 +9862,7 @@ module Aws::S3
9654
9862
  #
9655
9863
  class PutObjectLegalHoldOutput < Struct.new(
9656
9864
  :request_charged)
9865
+ SENSITIVE = []
9657
9866
  include Aws::Structure
9658
9867
  end
9659
9868
 
@@ -9727,6 +9936,7 @@ module Aws::S3
9727
9936
  :request_payer,
9728
9937
  :version_id,
9729
9938
  :content_md5)
9939
+ SENSITIVE = []
9730
9940
  include Aws::Structure
9731
9941
  end
9732
9942
 
@@ -9739,6 +9949,7 @@ module Aws::S3
9739
9949
  #
9740
9950
  class PutObjectLockConfigurationOutput < Struct.new(
9741
9951
  :request_charged)
9952
+ SENSITIVE = []
9742
9953
  include Aws::Structure
9743
9954
  end
9744
9955
 
@@ -9800,6 +10011,7 @@ module Aws::S3
9800
10011
  :request_payer,
9801
10012
  :token,
9802
10013
  :content_md5)
10014
+ SENSITIVE = []
9803
10015
  include Aws::Structure
9804
10016
  end
9805
10017
 
@@ -9870,6 +10082,7 @@ module Aws::S3
9870
10082
  :ssekms_key_id,
9871
10083
  :ssekms_encryption_context,
9872
10084
  :request_charged)
10085
+ SENSITIVE = [:ssekms_key_id, :ssekms_encryption_context]
9873
10086
  include Aws::Structure
9874
10087
  end
9875
10088
 
@@ -10192,6 +10405,7 @@ module Aws::S3
10192
10405
  :object_lock_mode,
10193
10406
  :object_lock_retain_until_date,
10194
10407
  :object_lock_legal_hold_status)
10408
+ SENSITIVE = [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
10195
10409
  include Aws::Structure
10196
10410
  end
10197
10411
 
@@ -10204,6 +10418,7 @@ module Aws::S3
10204
10418
  #
10205
10419
  class PutObjectRetentionOutput < Struct.new(
10206
10420
  :request_charged)
10421
+ SENSITIVE = []
10207
10422
  include Aws::Structure
10208
10423
  end
10209
10424
 
@@ -10286,6 +10501,7 @@ module Aws::S3
10286
10501
  :version_id,
10287
10502
  :bypass_governance_retention,
10288
10503
  :content_md5)
10504
+ SENSITIVE = []
10289
10505
  include Aws::Structure
10290
10506
  end
10291
10507
 
@@ -10297,6 +10513,7 @@ module Aws::S3
10297
10513
  #
10298
10514
  class PutObjectTaggingOutput < Struct.new(
10299
10515
  :version_id)
10516
+ SENSITIVE = []
10300
10517
  include Aws::Structure
10301
10518
  end
10302
10519
 
@@ -10359,6 +10576,7 @@ module Aws::S3
10359
10576
  :version_id,
10360
10577
  :content_md5,
10361
10578
  :tagging)
10579
+ SENSITIVE = []
10362
10580
  include Aws::Structure
10363
10581
  end
10364
10582
 
@@ -10403,6 +10621,7 @@ module Aws::S3
10403
10621
  :bucket,
10404
10622
  :content_md5,
10405
10623
  :public_access_block_configuration)
10624
+ SENSITIVE = []
10406
10625
  include Aws::Structure
10407
10626
  end
10408
10627
 
@@ -10462,6 +10681,7 @@ module Aws::S3
10462
10681
  :queue_arn,
10463
10682
  :events,
10464
10683
  :filter)
10684
+ SENSITIVE = []
10465
10685
  include Aws::Structure
10466
10686
  end
10467
10687
 
@@ -10507,6 +10727,7 @@ module Aws::S3
10507
10727
  :event,
10508
10728
  :events,
10509
10729
  :queue)
10730
+ SENSITIVE = []
10510
10731
  include Aws::Structure
10511
10732
  end
10512
10733
 
@@ -10521,6 +10742,7 @@ module Aws::S3
10521
10742
  class RecordsEvent < Struct.new(
10522
10743
  :payload,
10523
10744
  :event_type)
10745
+ SENSITIVE = []
10524
10746
  include Aws::Structure
10525
10747
  end
10526
10748
 
@@ -10577,6 +10799,7 @@ module Aws::S3
10577
10799
  :protocol,
10578
10800
  :replace_key_prefix_with,
10579
10801
  :replace_key_with)
10802
+ SENSITIVE = []
10580
10803
  include Aws::Structure
10581
10804
  end
10582
10805
 
@@ -10605,6 +10828,7 @@ module Aws::S3
10605
10828
  class RedirectAllRequestsTo < Struct.new(
10606
10829
  :host_name,
10607
10830
  :protocol)
10831
+ SENSITIVE = []
10608
10832
  include Aws::Structure
10609
10833
  end
10610
10834
 
@@ -10698,6 +10922,7 @@ module Aws::S3
10698
10922
  class ReplicationConfiguration < Struct.new(
10699
10923
  :role,
10700
10924
  :rules)
10925
+ SENSITIVE = []
10701
10926
  include Aws::Structure
10702
10927
  end
10703
10928
 
@@ -10856,6 +11081,7 @@ module Aws::S3
10856
11081
  :existing_object_replication,
10857
11082
  :destination,
10858
11083
  :delete_marker_replication)
11084
+ SENSITIVE = []
10859
11085
  include Aws::Structure
10860
11086
  end
10861
11087
 
@@ -10898,6 +11124,7 @@ module Aws::S3
10898
11124
  class ReplicationRuleAndOperator < Struct.new(
10899
11125
  :prefix,
10900
11126
  :tags)
11127
+ SENSITIVE = []
10901
11128
  include Aws::Structure
10902
11129
  end
10903
11130
 
@@ -10954,6 +11181,7 @@ module Aws::S3
10954
11181
  :prefix,
10955
11182
  :tag,
10956
11183
  :and)
11184
+ SENSITIVE = []
10957
11185
  include Aws::Structure
10958
11186
  end
10959
11187
 
@@ -10986,6 +11214,7 @@ module Aws::S3
10986
11214
  class ReplicationTime < Struct.new(
10987
11215
  :status,
10988
11216
  :time)
11217
+ SENSITIVE = []
10989
11218
  include Aws::Structure
10990
11219
  end
10991
11220
 
@@ -11009,6 +11238,7 @@ module Aws::S3
11009
11238
  #
11010
11239
  class ReplicationTimeValue < Struct.new(
11011
11240
  :minutes)
11241
+ SENSITIVE = []
11012
11242
  include Aws::Structure
11013
11243
  end
11014
11244
 
@@ -11029,6 +11259,7 @@ module Aws::S3
11029
11259
  #
11030
11260
  class RequestPaymentConfiguration < Struct.new(
11031
11261
  :payer)
11262
+ SENSITIVE = []
11032
11263
  include Aws::Structure
11033
11264
  end
11034
11265
 
@@ -11051,6 +11282,7 @@ module Aws::S3
11051
11282
  #
11052
11283
  class RequestProgress < Struct.new(
11053
11284
  :enabled)
11285
+ SENSITIVE = []
11054
11286
  include Aws::Structure
11055
11287
  end
11056
11288
 
@@ -11069,6 +11301,7 @@ module Aws::S3
11069
11301
  class RestoreObjectOutput < Struct.new(
11070
11302
  :request_charged,
11071
11303
  :restore_output_path)
11304
+ SENSITIVE = []
11072
11305
  include Aws::Structure
11073
11306
  end
11074
11307
 
@@ -11212,6 +11445,7 @@ module Aws::S3
11212
11445
  :version_id,
11213
11446
  :restore_request,
11214
11447
  :request_payer)
11448
+ SENSITIVE = []
11215
11449
  include Aws::Structure
11216
11450
  end
11217
11451
 
@@ -11342,6 +11576,7 @@ module Aws::S3
11342
11576
  :description,
11343
11577
  :select_parameters,
11344
11578
  :output_location)
11579
+ SENSITIVE = []
11345
11580
  include Aws::Structure
11346
11581
  end
11347
11582
 
@@ -11383,6 +11618,7 @@ module Aws::S3
11383
11618
  class RoutingRule < Struct.new(
11384
11619
  :condition,
11385
11620
  :redirect)
11621
+ SENSITIVE = []
11386
11622
  include Aws::Structure
11387
11623
  end
11388
11624
 
@@ -11498,6 +11734,7 @@ module Aws::S3
11498
11734
  :noncurrent_version_transition,
11499
11735
  :noncurrent_version_expiration,
11500
11736
  :abort_incomplete_multipart_upload)
11737
+ SENSITIVE = []
11501
11738
  include Aws::Structure
11502
11739
  end
11503
11740
 
@@ -11524,6 +11761,7 @@ module Aws::S3
11524
11761
  #
11525
11762
  class S3KeyFilter < Struct.new(
11526
11763
  :filter_rules)
11764
+ SENSITIVE = []
11527
11765
  include Aws::Structure
11528
11766
  end
11529
11767
 
@@ -11615,6 +11853,7 @@ module Aws::S3
11615
11853
  :tagging,
11616
11854
  :user_metadata,
11617
11855
  :storage_class)
11856
+ SENSITIVE = []
11618
11857
  include Aws::Structure
11619
11858
  end
11620
11859
 
@@ -11637,6 +11876,7 @@ module Aws::S3
11637
11876
  #
11638
11877
  class SSEKMS < Struct.new(
11639
11878
  :key_id)
11879
+ SENSITIVE = [:key_id]
11640
11880
  include Aws::Structure
11641
11881
  end
11642
11882
 
@@ -11684,6 +11924,7 @@ module Aws::S3
11684
11924
  class ScanRange < Struct.new(
11685
11925
  :start,
11686
11926
  :end)
11927
+ SENSITIVE = []
11687
11928
  include Aws::Structure
11688
11929
  end
11689
11930
 
@@ -11695,6 +11936,7 @@ module Aws::S3
11695
11936
  #
11696
11937
  class SelectObjectContentOutput < Struct.new(
11697
11938
  :payload)
11939
+ SENSITIVE = []
11698
11940
  include Aws::Structure
11699
11941
  end
11700
11942
 
@@ -11853,6 +12095,7 @@ module Aws::S3
11853
12095
  :input_serialization,
11854
12096
  :output_serialization,
11855
12097
  :scan_range)
12098
+ SENSITIVE = [:sse_customer_key]
11856
12099
  include Aws::Structure
11857
12100
  end
11858
12101
 
@@ -11918,6 +12161,7 @@ module Aws::S3
11918
12161
  :expression_type,
11919
12162
  :expression,
11920
12163
  :output_serialization)
12164
+ SENSITIVE = []
11921
12165
  include Aws::Structure
11922
12166
  end
11923
12167
 
@@ -11975,6 +12219,7 @@ module Aws::S3
11975
12219
  class ServerSideEncryptionByDefault < Struct.new(
11976
12220
  :sse_algorithm,
11977
12221
  :kms_master_key_id)
12222
+ SENSITIVE = [:kms_master_key_id]
11978
12223
  include Aws::Structure
11979
12224
  end
11980
12225
 
@@ -12003,6 +12248,7 @@ module Aws::S3
12003
12248
  #
12004
12249
  class ServerSideEncryptionConfiguration < Struct.new(
12005
12250
  :rules)
12251
+ SENSITIVE = []
12006
12252
  include Aws::Structure
12007
12253
  end
12008
12254
 
@@ -12028,6 +12274,7 @@ module Aws::S3
12028
12274
  #
12029
12275
  class ServerSideEncryptionRule < Struct.new(
12030
12276
  :apply_server_side_encryption_by_default)
12277
+ SENSITIVE = []
12031
12278
  include Aws::Structure
12032
12279
  end
12033
12280
 
@@ -12058,6 +12305,7 @@ module Aws::S3
12058
12305
  #
12059
12306
  class SourceSelectionCriteria < Struct.new(
12060
12307
  :sse_kms_encrypted_objects)
12308
+ SENSITIVE = []
12061
12309
  include Aws::Structure
12062
12310
  end
12063
12311
 
@@ -12081,6 +12329,7 @@ module Aws::S3
12081
12329
  #
12082
12330
  class SseKmsEncryptedObjects < Struct.new(
12083
12331
  :status)
12332
+ SENSITIVE = []
12084
12333
  include Aws::Structure
12085
12334
  end
12086
12335
 
@@ -12104,6 +12353,7 @@ module Aws::S3
12104
12353
  :bytes_scanned,
12105
12354
  :bytes_processed,
12106
12355
  :bytes_returned)
12356
+ SENSITIVE = []
12107
12357
  include Aws::Structure
12108
12358
  end
12109
12359
 
@@ -12118,6 +12368,7 @@ module Aws::S3
12118
12368
  class StatsEvent < Struct.new(
12119
12369
  :details,
12120
12370
  :event_type)
12371
+ SENSITIVE = []
12121
12372
  include Aws::Structure
12122
12373
  end
12123
12374
 
@@ -12151,6 +12402,7 @@ module Aws::S3
12151
12402
  #
12152
12403
  class StorageClassAnalysis < Struct.new(
12153
12404
  :data_export)
12405
+ SENSITIVE = []
12154
12406
  include Aws::Structure
12155
12407
  end
12156
12408
 
@@ -12186,6 +12438,7 @@ module Aws::S3
12186
12438
  class StorageClassAnalysisDataExport < Struct.new(
12187
12439
  :output_schema_version,
12188
12440
  :destination)
12441
+ SENSITIVE = []
12189
12442
  include Aws::Structure
12190
12443
  end
12191
12444
 
@@ -12212,6 +12465,7 @@ module Aws::S3
12212
12465
  class Tag < Struct.new(
12213
12466
  :key,
12214
12467
  :value)
12468
+ SENSITIVE = []
12215
12469
  include Aws::Structure
12216
12470
  end
12217
12471
 
@@ -12237,6 +12491,7 @@ module Aws::S3
12237
12491
  #
12238
12492
  class Tagging < Struct.new(
12239
12493
  :tag_set)
12494
+ SENSITIVE = []
12240
12495
  include Aws::Structure
12241
12496
  end
12242
12497
 
@@ -12269,6 +12524,7 @@ module Aws::S3
12269
12524
  class TargetGrant < Struct.new(
12270
12525
  :grantee,
12271
12526
  :permission)
12527
+ SENSITIVE = []
12272
12528
  include Aws::Structure
12273
12529
  end
12274
12530
 
@@ -12334,6 +12590,7 @@ module Aws::S3
12334
12590
  :topic_arn,
12335
12591
  :events,
12336
12592
  :filter)
12593
+ SENSITIVE = []
12337
12594
  include Aws::Structure
12338
12595
  end
12339
12596
 
@@ -12378,6 +12635,7 @@ module Aws::S3
12378
12635
  :events,
12379
12636
  :event,
12380
12637
  :topic)
12638
+ SENSITIVE = []
12381
12639
  include Aws::Structure
12382
12640
  end
12383
12641
 
@@ -12421,6 +12679,7 @@ module Aws::S3
12421
12679
  :date,
12422
12680
  :days,
12423
12681
  :storage_class)
12682
+ SENSITIVE = []
12424
12683
  include Aws::Structure
12425
12684
  end
12426
12685
 
@@ -12472,6 +12731,7 @@ module Aws::S3
12472
12731
  :sse_customer_key_md5,
12473
12732
  :ssekms_key_id,
12474
12733
  :request_charged)
12734
+ SENSITIVE = [:ssekms_key_id]
12475
12735
  include Aws::Structure
12476
12736
  end
12477
12737
 
@@ -12618,6 +12878,7 @@ module Aws::S3
12618
12878
  :copy_source_sse_customer_key,
12619
12879
  :copy_source_sse_customer_key_md5,
12620
12880
  :request_payer)
12881
+ SENSITIVE = [:sse_customer_key, :copy_source_sse_customer_key]
12621
12882
  include Aws::Structure
12622
12883
  end
12623
12884
 
@@ -12663,6 +12924,7 @@ module Aws::S3
12663
12924
  :sse_customer_key_md5,
12664
12925
  :ssekms_key_id,
12665
12926
  :request_charged)
12927
+ SENSITIVE = [:ssekms_key_id]
12666
12928
  include Aws::Structure
12667
12929
  end
12668
12930
 
@@ -12763,6 +13025,7 @@ module Aws::S3
12763
13025
  :sse_customer_key,
12764
13026
  :sse_customer_key_md5,
12765
13027
  :request_payer)
13028
+ SENSITIVE = [:sse_customer_key]
12766
13029
  include Aws::Structure
12767
13030
  end
12768
13031
 
@@ -12798,6 +13061,7 @@ module Aws::S3
12798
13061
  class VersioningConfiguration < Struct.new(
12799
13062
  :mfa_delete,
12800
13063
  :status)
13064
+ SENSITIVE = []
12801
13065
  include Aws::Structure
12802
13066
  end
12803
13067
 
@@ -12861,6 +13125,7 @@ module Aws::S3
12861
13125
  :index_document,
12862
13126
  :redirect_all_requests_to,
12863
13127
  :routing_rules)
13128
+ SENSITIVE = []
12864
13129
  include Aws::Structure
12865
13130
  end
12866
13131