aws-sdk-s3 1.69.0 → 1.73.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-s3.rb +1 -1
- data/lib/aws-sdk-s3/client.rb +3 -1
- data/lib/aws-sdk-s3/encryptionV2/client.rb +10 -0
- data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +6 -2
- data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +3 -4
- data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +4 -1
- data/lib/aws-sdk-s3/encryptionV2/io_decrypter.rb +7 -2
- data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +6 -2
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +25 -10
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +2 -1
- data/lib/aws-sdk-s3/plugins/streaming_retry.rb +118 -0
- data/lib/aws-sdk-s3/types.rb +263 -0
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c1a392b274571b427b52d5546c1f75e0d4917bc3b0c781b41401f28011ff8f8
|
4
|
+
data.tar.gz: eead948301ba2238400318c5cc7f29ea3a059977c1198e7556fe73aafbe2ce01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebd3b711ed8d618367fc99f8536778379cde6ecc4b5ca6d92178f9cd89b3c9023906fb4535b62b133c143b0223b70382b5069a254dac80245e15777ad32867dd
|
7
|
+
data.tar.gz: 2188bf53ea2a5b094674172a84b6e46de6e7fddc234ea427074671bbb2b91fc0c81ca56ab86fd103719961072dddb670d0d50b93f70c86bd66bf29c96f77e7a2
|
data/lib/aws-sdk-s3.rb
CHANGED
data/lib/aws-sdk-s3/client.rb
CHANGED
@@ -44,6 +44,7 @@ require 'aws-sdk-s3/plugins/sse_cpk.rb'
|
|
44
44
|
require 'aws-sdk-s3/plugins/url_encoded_keys.rb'
|
45
45
|
require 'aws-sdk-s3/plugins/s3_signer.rb'
|
46
46
|
require 'aws-sdk-s3/plugins/bucket_name_restrictions.rb'
|
47
|
+
require 'aws-sdk-s3/plugins/streaming_retry.rb'
|
47
48
|
require 'aws-sdk-core/plugins/event_stream_configuration.rb'
|
48
49
|
|
49
50
|
Aws::Plugins::GlobalConfiguration.add_identifier(:s3)
|
@@ -106,6 +107,7 @@ module Aws::S3
|
|
106
107
|
add_plugin(Aws::S3::Plugins::UrlEncodedKeys)
|
107
108
|
add_plugin(Aws::S3::Plugins::S3Signer)
|
108
109
|
add_plugin(Aws::S3::Plugins::BucketNameRestrictions)
|
110
|
+
add_plugin(Aws::S3::Plugins::StreamingRetry)
|
109
111
|
add_plugin(Aws::Plugins::EventStreamConfiguration)
|
110
112
|
|
111
113
|
# @overload initialize(options)
|
@@ -11670,7 +11672,7 @@ module Aws::S3
|
|
11670
11672
|
params: params,
|
11671
11673
|
config: config)
|
11672
11674
|
context[:gem_name] = 'aws-sdk-s3'
|
11673
|
-
context[:gem_version] = '1.
|
11675
|
+
context[:gem_version] = '1.73.0'
|
11674
11676
|
Seahorse::Client::Request.new(handlers, context)
|
11675
11677
|
end
|
11676
11678
|
|
@@ -252,16 +252,22 @@ module Aws
|
|
252
252
|
# Uploads an object to Amazon S3, encrypting data client-side.
|
253
253
|
# See {S3::Client#put_object} for documentation on accepted
|
254
254
|
# request parameters.
|
255
|
+
# @option params [Hash] :kms_encryption_context Additional encryption
|
256
|
+
# context to use with KMS. Applies only when KMS is used. In order
|
257
|
+
# to decrypt the object you will need to provide the identical
|
258
|
+
# :kms_encryption_context to `get_object`.
|
255
259
|
# @option (see S3::Client#put_object)
|
256
260
|
# @return (see S3::Client#put_object)
|
257
261
|
# @see S3::Client#put_object
|
258
262
|
def put_object(params = {})
|
263
|
+
kms_encryption_context = params.delete(:kms_encryption_context)
|
259
264
|
req = @client.build_request(:put_object, params)
|
260
265
|
req.handlers.add(EncryptHandler, priority: 95)
|
261
266
|
req.context[:encryption] = {
|
262
267
|
cipher_provider: @cipher_provider,
|
263
268
|
envelope_location: @envelope_location,
|
264
269
|
instruction_file_suffix: @instruction_file_suffix,
|
270
|
+
kms_encryption_context: kms_encryption_context
|
265
271
|
}
|
266
272
|
req.send_request
|
267
273
|
end
|
@@ -274,6 +280,8 @@ module Aws
|
|
274
280
|
# envelope. You should not set this option when the envelope
|
275
281
|
# is stored in the object metadata. Defaults to
|
276
282
|
# {#instruction_file_suffix}.
|
283
|
+
# @option params [Hash] :kms_encryption_context Additional encryption
|
284
|
+
# context to use with KMS. Applies only when KMS is used.
|
277
285
|
# @option params [String] :instruction_file_suffix
|
278
286
|
# @option (see S3::Client#get_object)
|
279
287
|
# @return (see S3::Client#get_object)
|
@@ -284,12 +292,14 @@ module Aws
|
|
284
292
|
raise NotImplementedError, '#get_object with :range not supported'
|
285
293
|
end
|
286
294
|
envelope_location, instruction_file_suffix = envelope_options(params)
|
295
|
+
kms_encryption_context = params.delete(:kms_encryption_context)
|
287
296
|
req = @client.build_request(:get_object, params)
|
288
297
|
req.handlers.add(DecryptHandler)
|
289
298
|
req.context[:encryption] = {
|
290
299
|
cipher_provider: @cipher_provider,
|
291
300
|
envelope_location: envelope_location,
|
292
301
|
instruction_file_suffix: instruction_file_suffix,
|
302
|
+
kms_encryption_context: kms_encryption_context
|
293
303
|
}
|
294
304
|
req.send_request(target: block)
|
295
305
|
end
|
@@ -72,8 +72,12 @@ module Aws
|
|
72
72
|
|
73
73
|
def decryption_cipher(context)
|
74
74
|
if envelope = get_encryption_envelope(context)
|
75
|
-
|
76
|
-
|
75
|
+
cipher = context[:encryption][:cipher_provider]
|
76
|
+
.decryption_cipher(
|
77
|
+
envelope,
|
78
|
+
kms_encryption_context: context[:encryption][:kms_encryption_context]
|
79
|
+
)
|
80
|
+
[cipher, envelope]
|
77
81
|
else
|
78
82
|
raise Errors::DecryptionError, "unable to locate encryption envelope"
|
79
83
|
end
|
@@ -12,7 +12,7 @@ module Aws
|
|
12
12
|
|
13
13
|
# @return [Array<Hash,Cipher>] Creates an returns a new encryption
|
14
14
|
# envelope and encryption cipher.
|
15
|
-
def encryption_cipher
|
15
|
+
def encryption_cipher(options = {})
|
16
16
|
cipher = Utils.aes_encryption_cipher(:GCM)
|
17
17
|
cek_alg = 'AES/GCM/NoPadding'
|
18
18
|
if @key_provider.encryption_materials.key.is_a? OpenSSL::PKey::RSA
|
@@ -36,15 +36,14 @@ module Aws
|
|
36
36
|
|
37
37
|
# @return [Cipher] Given an encryption envelope, returns a
|
38
38
|
# decryption cipher.
|
39
|
-
def decryption_cipher(envelope)
|
39
|
+
def decryption_cipher(envelope, options = {})
|
40
|
+
master_key = @key_provider.key_for(envelope['x-amz-matdesc'])
|
40
41
|
if envelope.key? 'x-amz-key'
|
41
42
|
# Support for decryption of legacy objects
|
42
|
-
master_key = @key_provider.key_for(envelope['x-amz-matdesc'])
|
43
43
|
key = Utils.decrypt(master_key, decode64(envelope['x-amz-key']))
|
44
44
|
iv = decode64(envelope['x-amz-iv'])
|
45
45
|
Utils.aes_decryption_cipher(:CBC, key, iv)
|
46
46
|
else
|
47
|
-
master_key = @key_provider.key_for(envelope['x-amz-matdesc'])
|
48
47
|
if envelope['x-amz-cek-alg'] != 'AES/GCM/NoPadding'
|
49
48
|
raise ArgumentError, 'Unsupported cek-alg: ' \
|
50
49
|
"#{envelope['x-amz-cek-alg']}"
|
@@ -11,7 +11,10 @@ module Aws
|
|
11
11
|
raise "authenticated encryption not supported by OpenSSL in Ruby version ~> 1.9"
|
12
12
|
raise Aws::Errors::NonSupportedRubyVersionError, msg
|
13
13
|
end
|
14
|
-
envelope, cipher = context[:encryption][:cipher_provider]
|
14
|
+
envelope, cipher = context[:encryption][:cipher_provider]
|
15
|
+
.encryption_cipher(
|
16
|
+
kms_encryption_context: context[:encryption][:kms_encryption_context]
|
17
|
+
)
|
15
18
|
context[:encryption][:cipher] = cipher
|
16
19
|
apply_encryption_envelope(context, envelope)
|
17
20
|
apply_encryption_cipher(context, cipher)
|
@@ -7,9 +7,10 @@ module Aws
|
|
7
7
|
# @param [OpenSSL::Cipher] cipher
|
8
8
|
# @param [IO#write] io An IO-like object that responds to `#write`.
|
9
9
|
def initialize(cipher, io)
|
10
|
-
@cipher = cipher
|
10
|
+
@cipher = cipher
|
11
11
|
# Ensure that IO is reset between retries
|
12
12
|
@io = io.tap { |io| io.truncate(0) if io.respond_to?(:truncate) }
|
13
|
+
@cipher_buffer = String.new
|
13
14
|
end
|
14
15
|
|
15
16
|
# @return [#write]
|
@@ -17,7 +18,11 @@ module Aws
|
|
17
18
|
|
18
19
|
def write(chunk)
|
19
20
|
# decrypt and write
|
20
|
-
@
|
21
|
+
if @cipher.method(:update).arity == 1
|
22
|
+
@io.write(@cipher.update(chunk))
|
23
|
+
else
|
24
|
+
@io.write(@cipher.update(chunk, @cipher_buffer))
|
25
|
+
end
|
21
26
|
end
|
22
27
|
|
23
28
|
def finalize
|
@@ -52,8 +52,12 @@ module Aws
|
|
52
52
|
def encrypt_to_tempfile(cipher, io)
|
53
53
|
encrypted = Tempfile.new(self.object_id.to_s)
|
54
54
|
encrypted.binmode
|
55
|
-
while chunk = io.read(ONE_MEGABYTE)
|
56
|
-
|
55
|
+
while chunk = io.read(ONE_MEGABYTE, read_buffer ||= String.new)
|
56
|
+
if cipher.method(:update).arity == 1
|
57
|
+
encrypted.write(cipher.update(chunk))
|
58
|
+
else
|
59
|
+
encrypted.write(cipher.update(chunk, cipher_buffer ||= String.new))
|
60
|
+
end
|
57
61
|
end
|
58
62
|
encrypted.write(cipher.final)
|
59
63
|
encrypted.write(cipher.auth_tag)
|
@@ -13,15 +13,13 @@ module Aws
|
|
13
13
|
|
14
14
|
# @return [Array<Hash,Cipher>] Creates and returns a new encryption
|
15
15
|
# envelope and encryption cipher.
|
16
|
-
def encryption_cipher
|
16
|
+
def encryption_cipher(options = {})
|
17
17
|
cek_alg = 'AES/GCM/NoPadding'
|
18
|
-
encryption_context =
|
19
|
-
'aws:x-amz-cek-alg' => cek_alg
|
20
|
-
}
|
18
|
+
encryption_context = build_encryption_context(cek_alg, options)
|
21
19
|
key_data = @kms_client.generate_data_key(
|
22
20
|
key_id: @kms_key_id,
|
23
21
|
encryption_context: encryption_context,
|
24
|
-
key_spec: 'AES_256'
|
22
|
+
key_spec: 'AES_256'
|
25
23
|
)
|
26
24
|
cipher = Utils.aes_encryption_cipher(:GCM)
|
27
25
|
cipher.key = key_data.plaintext
|
@@ -39,18 +37,27 @@ module Aws
|
|
39
37
|
|
40
38
|
# @return [Cipher] Given an encryption envelope, returns a
|
41
39
|
# decryption cipher.
|
42
|
-
def decryption_cipher(envelope)
|
40
|
+
def decryption_cipher(envelope, options={})
|
43
41
|
encryption_context = Json.load(envelope['x-amz-matdesc'])
|
44
|
-
key = @kms_client.decrypt(
|
45
|
-
ciphertext_blob: decode64(envelope['x-amz-key-v2']),
|
46
|
-
encryption_context: encryption_context
|
47
|
-
).plaintext
|
48
42
|
cek_alg = envelope['x-amz-wrap-alg'] == 'kms+context' ?
|
49
43
|
encryption_context['aws:x-amz-cek-alg'] : envelope['x-amz-cek-alg']
|
50
44
|
if cek_alg != envelope['x-amz-cek-alg']
|
51
45
|
raise Errors::DecryptionError, 'Value of cek-alg from envelope'\
|
52
46
|
' does not match the value in the encryption context'
|
53
47
|
end
|
48
|
+
|
49
|
+
if envelope['x-amz-wrap-alg'] == 'kms+context' &&
|
50
|
+
encryption_context != build_encryption_context(cek_alg, options)
|
51
|
+
raise Errors::DecryptionError, 'Value of encryption context from'\
|
52
|
+
' envelope does not match the provided encryption context'
|
53
|
+
end
|
54
|
+
|
55
|
+
key = @kms_client.decrypt(
|
56
|
+
ciphertext_blob: decode64(envelope['x-amz-key-v2']),
|
57
|
+
encryption_context: encryption_context
|
58
|
+
).plaintext
|
59
|
+
|
60
|
+
|
54
61
|
iv = decode64(envelope['x-amz-iv'])
|
55
62
|
block_mode =
|
56
63
|
case cek_alg
|
@@ -70,6 +77,14 @@ module Aws
|
|
70
77
|
|
71
78
|
private
|
72
79
|
|
80
|
+
def build_encryption_context(cek_alg, options = {})
|
81
|
+
kms_context = (options[:kms_encryption_context] || {})
|
82
|
+
.each_with_object({}) { |(k, v), h| h[k.to_s] = v }
|
83
|
+
{
|
84
|
+
'aws:x-amz-cek-alg' => cek_alg
|
85
|
+
}.merge(kms_context)
|
86
|
+
end
|
87
|
+
|
73
88
|
def encode64(str)
|
74
89
|
Base64.encode64(str).split("\n") * ""
|
75
90
|
end
|
@@ -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
|
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -36,6 +36,7 @@ module Aws::S3
|
|
36
36
|
#
|
37
37
|
class AbortIncompleteMultipartUpload < Struct.new(
|
38
38
|
:days_after_initiation)
|
39
|
+
SENSITIVE = []
|
39
40
|
include Aws::Structure
|
40
41
|
end
|
41
42
|
|
@@ -48,6 +49,7 @@ module Aws::S3
|
|
48
49
|
#
|
49
50
|
class AbortMultipartUploadOutput < Struct.new(
|
50
51
|
:request_charged)
|
52
|
+
SENSITIVE = []
|
51
53
|
include Aws::Structure
|
52
54
|
end
|
53
55
|
|
@@ -105,6 +107,7 @@ module Aws::S3
|
|
105
107
|
:key,
|
106
108
|
:upload_id,
|
107
109
|
:request_payer)
|
110
|
+
SENSITIVE = []
|
108
111
|
include Aws::Structure
|
109
112
|
end
|
110
113
|
|
@@ -131,6 +134,7 @@ module Aws::S3
|
|
131
134
|
#
|
132
135
|
class AccelerateConfiguration < Struct.new(
|
133
136
|
:status)
|
137
|
+
SENSITIVE = []
|
134
138
|
include Aws::Structure
|
135
139
|
end
|
136
140
|
|
@@ -172,6 +176,7 @@ module Aws::S3
|
|
172
176
|
class AccessControlPolicy < Struct.new(
|
173
177
|
:grants,
|
174
178
|
:owner)
|
179
|
+
SENSITIVE = []
|
175
180
|
include Aws::Structure
|
176
181
|
end
|
177
182
|
|
@@ -198,6 +203,7 @@ module Aws::S3
|
|
198
203
|
#
|
199
204
|
class AccessControlTranslation < Struct.new(
|
200
205
|
:owner)
|
206
|
+
SENSITIVE = []
|
201
207
|
include Aws::Structure
|
202
208
|
end
|
203
209
|
|
@@ -233,6 +239,7 @@ module Aws::S3
|
|
233
239
|
class AnalyticsAndOperator < Struct.new(
|
234
240
|
:prefix,
|
235
241
|
:tags)
|
242
|
+
SENSITIVE = []
|
236
243
|
include Aws::Structure
|
237
244
|
end
|
238
245
|
|
@@ -298,6 +305,7 @@ module Aws::S3
|
|
298
305
|
:id,
|
299
306
|
:filter,
|
300
307
|
:storage_class_analysis)
|
308
|
+
SENSITIVE = []
|
301
309
|
include Aws::Structure
|
302
310
|
end
|
303
311
|
|
@@ -323,6 +331,7 @@ module Aws::S3
|
|
323
331
|
#
|
324
332
|
class AnalyticsExportDestination < Struct.new(
|
325
333
|
:s3_bucket_destination)
|
334
|
+
SENSITIVE = []
|
326
335
|
include Aws::Structure
|
327
336
|
end
|
328
337
|
|
@@ -371,6 +380,7 @@ module Aws::S3
|
|
371
380
|
:prefix,
|
372
381
|
:tag,
|
373
382
|
:and)
|
383
|
+
SENSITIVE = []
|
374
384
|
include Aws::Structure
|
375
385
|
end
|
376
386
|
|
@@ -418,6 +428,7 @@ module Aws::S3
|
|
418
428
|
:bucket_account_id,
|
419
429
|
:bucket,
|
420
430
|
:prefix)
|
431
|
+
SENSITIVE = []
|
421
432
|
include Aws::Structure
|
422
433
|
end
|
423
434
|
|
@@ -438,6 +449,7 @@ module Aws::S3
|
|
438
449
|
class Bucket < Struct.new(
|
439
450
|
:name,
|
440
451
|
:creation_date)
|
452
|
+
SENSITIVE = []
|
441
453
|
include Aws::Structure
|
442
454
|
end
|
443
455
|
|
@@ -528,6 +540,7 @@ module Aws::S3
|
|
528
540
|
#
|
529
541
|
class BucketLifecycleConfiguration < Struct.new(
|
530
542
|
:rules)
|
543
|
+
SENSITIVE = []
|
531
544
|
include Aws::Structure
|
532
545
|
end
|
533
546
|
|
@@ -570,6 +583,7 @@ module Aws::S3
|
|
570
583
|
#
|
571
584
|
class BucketLoggingStatus < Struct.new(
|
572
585
|
:logging_enabled)
|
586
|
+
SENSITIVE = []
|
573
587
|
include Aws::Structure
|
574
588
|
end
|
575
589
|
|
@@ -606,6 +620,7 @@ module Aws::S3
|
|
606
620
|
#
|
607
621
|
class CORSConfiguration < Struct.new(
|
608
622
|
:cors_rules)
|
623
|
+
SENSITIVE = []
|
609
624
|
include Aws::Structure
|
610
625
|
end
|
611
626
|
|
@@ -658,6 +673,7 @@ module Aws::S3
|
|
658
673
|
:allowed_origins,
|
659
674
|
:expose_headers,
|
660
675
|
:max_age_seconds)
|
676
|
+
SENSITIVE = []
|
661
677
|
include Aws::Structure
|
662
678
|
end
|
663
679
|
|
@@ -743,6 +759,7 @@ module Aws::S3
|
|
743
759
|
:field_delimiter,
|
744
760
|
:quote_character,
|
745
761
|
:allow_quoted_record_delimiter)
|
762
|
+
SENSITIVE = []
|
746
763
|
include Aws::Structure
|
747
764
|
end
|
748
765
|
|
@@ -798,6 +815,7 @@ module Aws::S3
|
|
798
815
|
:record_delimiter,
|
799
816
|
:field_delimiter,
|
800
817
|
:quote_character)
|
818
|
+
SENSITIVE = []
|
801
819
|
include Aws::Structure
|
802
820
|
end
|
803
821
|
|
@@ -845,6 +863,7 @@ module Aws::S3
|
|
845
863
|
:events,
|
846
864
|
:cloud_function,
|
847
865
|
:invocation_role)
|
866
|
+
SENSITIVE = []
|
848
867
|
include Aws::Structure
|
849
868
|
end
|
850
869
|
|
@@ -862,6 +881,7 @@ module Aws::S3
|
|
862
881
|
#
|
863
882
|
class CommonPrefix < Struct.new(
|
864
883
|
:prefix)
|
884
|
+
SENSITIVE = []
|
865
885
|
include Aws::Structure
|
866
886
|
end
|
867
887
|
|
@@ -929,6 +949,7 @@ module Aws::S3
|
|
929
949
|
:version_id,
|
930
950
|
:ssekms_key_id,
|
931
951
|
:request_charged)
|
952
|
+
SENSITIVE = [:ssekms_key_id]
|
932
953
|
include Aws::Structure
|
933
954
|
end
|
934
955
|
|
@@ -986,6 +1007,7 @@ module Aws::S3
|
|
986
1007
|
:multipart_upload,
|
987
1008
|
:upload_id,
|
988
1009
|
:request_payer)
|
1010
|
+
SENSITIVE = []
|
989
1011
|
include Aws::Structure
|
990
1012
|
end
|
991
1013
|
|
@@ -1011,6 +1033,7 @@ module Aws::S3
|
|
1011
1033
|
#
|
1012
1034
|
class CompletedMultipartUpload < Struct.new(
|
1013
1035
|
:parts)
|
1036
|
+
SENSITIVE = []
|
1014
1037
|
include Aws::Structure
|
1015
1038
|
end
|
1016
1039
|
|
@@ -1038,6 +1061,7 @@ module Aws::S3
|
|
1038
1061
|
class CompletedPart < Struct.new(
|
1039
1062
|
:etag,
|
1040
1063
|
:part_number)
|
1064
|
+
SENSITIVE = []
|
1041
1065
|
include Aws::Structure
|
1042
1066
|
end
|
1043
1067
|
|
@@ -1080,6 +1104,7 @@ module Aws::S3
|
|
1080
1104
|
class Condition < Struct.new(
|
1081
1105
|
:http_error_code_returned_equals,
|
1082
1106
|
:key_prefix_equals)
|
1107
|
+
SENSITIVE = []
|
1083
1108
|
include Aws::Structure
|
1084
1109
|
end
|
1085
1110
|
|
@@ -1087,6 +1112,7 @@ module Aws::S3
|
|
1087
1112
|
#
|
1088
1113
|
class ContinuationEvent < Struct.new(
|
1089
1114
|
:event_type)
|
1115
|
+
SENSITIVE = []
|
1090
1116
|
include Aws::Structure
|
1091
1117
|
end
|
1092
1118
|
|
@@ -1156,6 +1182,7 @@ module Aws::S3
|
|
1156
1182
|
:ssekms_key_id,
|
1157
1183
|
:ssekms_encryption_context,
|
1158
1184
|
:request_charged)
|
1185
|
+
SENSITIVE = [:ssekms_key_id, :ssekms_encryption_context]
|
1159
1186
|
include Aws::Structure
|
1160
1187
|
end
|
1161
1188
|
|
@@ -1440,6 +1467,7 @@ module Aws::S3
|
|
1440
1467
|
:object_lock_mode,
|
1441
1468
|
:object_lock_retain_until_date,
|
1442
1469
|
:object_lock_legal_hold_status)
|
1470
|
+
SENSITIVE = [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context, :copy_source_sse_customer_key]
|
1443
1471
|
include Aws::Structure
|
1444
1472
|
end
|
1445
1473
|
|
@@ -1460,6 +1488,7 @@ module Aws::S3
|
|
1460
1488
|
class CopyObjectResult < Struct.new(
|
1461
1489
|
:etag,
|
1462
1490
|
:last_modified)
|
1491
|
+
SENSITIVE = []
|
1463
1492
|
include Aws::Structure
|
1464
1493
|
end
|
1465
1494
|
|
@@ -1478,6 +1507,7 @@ module Aws::S3
|
|
1478
1507
|
class CopyPartResult < Struct.new(
|
1479
1508
|
:etag,
|
1480
1509
|
:last_modified)
|
1510
|
+
SENSITIVE = []
|
1481
1511
|
include Aws::Structure
|
1482
1512
|
end
|
1483
1513
|
|
@@ -1500,6 +1530,7 @@ module Aws::S3
|
|
1500
1530
|
#
|
1501
1531
|
class CreateBucketConfiguration < Struct.new(
|
1502
1532
|
:location_constraint)
|
1533
|
+
SENSITIVE = []
|
1503
1534
|
include Aws::Structure
|
1504
1535
|
end
|
1505
1536
|
|
@@ -1513,6 +1544,7 @@ module Aws::S3
|
|
1513
1544
|
#
|
1514
1545
|
class CreateBucketOutput < Struct.new(
|
1515
1546
|
:location)
|
1547
|
+
SENSITIVE = []
|
1516
1548
|
include Aws::Structure
|
1517
1549
|
end
|
1518
1550
|
|
@@ -1584,6 +1616,7 @@ module Aws::S3
|
|
1584
1616
|
:grant_write,
|
1585
1617
|
:grant_write_acp,
|
1586
1618
|
:object_lock_enabled_for_bucket)
|
1619
|
+
SENSITIVE = []
|
1587
1620
|
include Aws::Structure
|
1588
1621
|
end
|
1589
1622
|
|
@@ -1686,6 +1719,7 @@ module Aws::S3
|
|
1686
1719
|
:ssekms_key_id,
|
1687
1720
|
:ssekms_encryption_context,
|
1688
1721
|
:request_charged)
|
1722
|
+
SENSITIVE = [:ssekms_key_id, :ssekms_encryption_context]
|
1689
1723
|
include Aws::Structure
|
1690
1724
|
end
|
1691
1725
|
|
@@ -1899,6 +1933,7 @@ module Aws::S3
|
|
1899
1933
|
:object_lock_mode,
|
1900
1934
|
:object_lock_retain_until_date,
|
1901
1935
|
:object_lock_legal_hold_status)
|
1936
|
+
SENSITIVE = [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
|
1902
1937
|
include Aws::Structure
|
1903
1938
|
end
|
1904
1939
|
|
@@ -1935,6 +1970,7 @@ module Aws::S3
|
|
1935
1970
|
:mode,
|
1936
1971
|
:days,
|
1937
1972
|
:years)
|
1973
|
+
SENSITIVE = []
|
1938
1974
|
include Aws::Structure
|
1939
1975
|
end
|
1940
1976
|
|
@@ -1967,6 +2003,7 @@ module Aws::S3
|
|
1967
2003
|
class Delete < Struct.new(
|
1968
2004
|
:objects,
|
1969
2005
|
:quiet)
|
2006
|
+
SENSITIVE = []
|
1970
2007
|
include Aws::Structure
|
1971
2008
|
end
|
1972
2009
|
|
@@ -1992,6 +2029,7 @@ module Aws::S3
|
|
1992
2029
|
class DeleteBucketAnalyticsConfigurationRequest < Struct.new(
|
1993
2030
|
:bucket,
|
1994
2031
|
:id)
|
2032
|
+
SENSITIVE = []
|
1995
2033
|
include Aws::Structure
|
1996
2034
|
end
|
1997
2035
|
|
@@ -2010,6 +2048,7 @@ module Aws::S3
|
|
2010
2048
|
#
|
2011
2049
|
class DeleteBucketCorsRequest < Struct.new(
|
2012
2050
|
:bucket)
|
2051
|
+
SENSITIVE = []
|
2013
2052
|
include Aws::Structure
|
2014
2053
|
end
|
2015
2054
|
|
@@ -2029,6 +2068,7 @@ module Aws::S3
|
|
2029
2068
|
#
|
2030
2069
|
class DeleteBucketEncryptionRequest < Struct.new(
|
2031
2070
|
:bucket)
|
2071
|
+
SENSITIVE = []
|
2032
2072
|
include Aws::Structure
|
2033
2073
|
end
|
2034
2074
|
|
@@ -2054,6 +2094,7 @@ module Aws::S3
|
|
2054
2094
|
class DeleteBucketInventoryConfigurationRequest < Struct.new(
|
2055
2095
|
:bucket,
|
2056
2096
|
:id)
|
2097
|
+
SENSITIVE = []
|
2057
2098
|
include Aws::Structure
|
2058
2099
|
end
|
2059
2100
|
|
@@ -2072,6 +2113,7 @@ module Aws::S3
|
|
2072
2113
|
#
|
2073
2114
|
class DeleteBucketLifecycleRequest < Struct.new(
|
2074
2115
|
:bucket)
|
2116
|
+
SENSITIVE = []
|
2075
2117
|
include Aws::Structure
|
2076
2118
|
end
|
2077
2119
|
|
@@ -2097,6 +2139,7 @@ module Aws::S3
|
|
2097
2139
|
class DeleteBucketMetricsConfigurationRequest < Struct.new(
|
2098
2140
|
:bucket,
|
2099
2141
|
:id)
|
2142
|
+
SENSITIVE = []
|
2100
2143
|
include Aws::Structure
|
2101
2144
|
end
|
2102
2145
|
|
@@ -2115,6 +2158,7 @@ module Aws::S3
|
|
2115
2158
|
#
|
2116
2159
|
class DeleteBucketPolicyRequest < Struct.new(
|
2117
2160
|
:bucket)
|
2161
|
+
SENSITIVE = []
|
2118
2162
|
include Aws::Structure
|
2119
2163
|
end
|
2120
2164
|
|
@@ -2133,6 +2177,7 @@ module Aws::S3
|
|
2133
2177
|
#
|
2134
2178
|
class DeleteBucketReplicationRequest < Struct.new(
|
2135
2179
|
:bucket)
|
2180
|
+
SENSITIVE = []
|
2136
2181
|
include Aws::Structure
|
2137
2182
|
end
|
2138
2183
|
|
@@ -2151,6 +2196,7 @@ module Aws::S3
|
|
2151
2196
|
#
|
2152
2197
|
class DeleteBucketRequest < Struct.new(
|
2153
2198
|
:bucket)
|
2199
|
+
SENSITIVE = []
|
2154
2200
|
include Aws::Structure
|
2155
2201
|
end
|
2156
2202
|
|
@@ -2169,6 +2215,7 @@ module Aws::S3
|
|
2169
2215
|
#
|
2170
2216
|
class DeleteBucketTaggingRequest < Struct.new(
|
2171
2217
|
:bucket)
|
2218
|
+
SENSITIVE = []
|
2172
2219
|
include Aws::Structure
|
2173
2220
|
end
|
2174
2221
|
|
@@ -2188,6 +2235,7 @@ module Aws::S3
|
|
2188
2235
|
#
|
2189
2236
|
class DeleteBucketWebsiteRequest < Struct.new(
|
2190
2237
|
:bucket)
|
2238
|
+
SENSITIVE = []
|
2191
2239
|
include Aws::Structure
|
2192
2240
|
end
|
2193
2241
|
|
@@ -2222,6 +2270,7 @@ module Aws::S3
|
|
2222
2270
|
:version_id,
|
2223
2271
|
:is_latest,
|
2224
2272
|
:last_modified)
|
2273
|
+
SENSITIVE = []
|
2225
2274
|
include Aws::Structure
|
2226
2275
|
end
|
2227
2276
|
|
@@ -2265,6 +2314,7 @@ module Aws::S3
|
|
2265
2314
|
#
|
2266
2315
|
class DeleteMarkerReplication < Struct.new(
|
2267
2316
|
:status)
|
2317
|
+
SENSITIVE = []
|
2268
2318
|
include Aws::Structure
|
2269
2319
|
end
|
2270
2320
|
|
@@ -2289,6 +2339,7 @@ module Aws::S3
|
|
2289
2339
|
:delete_marker,
|
2290
2340
|
:version_id,
|
2291
2341
|
:request_charged)
|
2342
|
+
SENSITIVE = []
|
2292
2343
|
include Aws::Structure
|
2293
2344
|
end
|
2294
2345
|
|
@@ -2362,6 +2413,7 @@ module Aws::S3
|
|
2362
2413
|
:version_id,
|
2363
2414
|
:request_payer,
|
2364
2415
|
:bypass_governance_retention)
|
2416
|
+
SENSITIVE = []
|
2365
2417
|
include Aws::Structure
|
2366
2418
|
end
|
2367
2419
|
|
@@ -2373,6 +2425,7 @@ module Aws::S3
|
|
2373
2425
|
#
|
2374
2426
|
class DeleteObjectTaggingOutput < Struct.new(
|
2375
2427
|
:version_id)
|
2428
|
+
SENSITIVE = []
|
2376
2429
|
include Aws::Structure
|
2377
2430
|
end
|
2378
2431
|
|
@@ -2417,6 +2470,7 @@ module Aws::S3
|
|
2417
2470
|
:bucket,
|
2418
2471
|
:key,
|
2419
2472
|
:version_id)
|
2473
|
+
SENSITIVE = []
|
2420
2474
|
include Aws::Structure
|
2421
2475
|
end
|
2422
2476
|
|
@@ -2441,6 +2495,7 @@ module Aws::S3
|
|
2441
2495
|
:deleted,
|
2442
2496
|
:request_charged,
|
2443
2497
|
:errors)
|
2498
|
+
SENSITIVE = []
|
2444
2499
|
include Aws::Structure
|
2445
2500
|
end
|
2446
2501
|
|
@@ -2517,6 +2572,7 @@ module Aws::S3
|
|
2517
2572
|
:mfa,
|
2518
2573
|
:request_payer,
|
2519
2574
|
:bypass_governance_retention)
|
2575
|
+
SENSITIVE = []
|
2520
2576
|
include Aws::Structure
|
2521
2577
|
end
|
2522
2578
|
|
@@ -2536,6 +2592,7 @@ module Aws::S3
|
|
2536
2592
|
#
|
2537
2593
|
class DeletePublicAccessBlockRequest < Struct.new(
|
2538
2594
|
:bucket)
|
2595
|
+
SENSITIVE = []
|
2539
2596
|
include Aws::Structure
|
2540
2597
|
end
|
2541
2598
|
|
@@ -2570,6 +2627,7 @@ module Aws::S3
|
|
2570
2627
|
:version_id,
|
2571
2628
|
:delete_marker,
|
2572
2629
|
:delete_marker_version_id)
|
2630
|
+
SENSITIVE = []
|
2573
2631
|
include Aws::Structure
|
2574
2632
|
end
|
2575
2633
|
|
@@ -2675,6 +2733,7 @@ module Aws::S3
|
|
2675
2733
|
:encryption_configuration,
|
2676
2734
|
:replication_time,
|
2677
2735
|
:metrics)
|
2736
|
+
SENSITIVE = []
|
2678
2737
|
include Aws::Structure
|
2679
2738
|
end
|
2680
2739
|
|
@@ -2717,6 +2776,7 @@ module Aws::S3
|
|
2717
2776
|
:encryption_type,
|
2718
2777
|
:kms_key_id,
|
2719
2778
|
:kms_context)
|
2779
|
+
SENSITIVE = [:kms_key_id]
|
2720
2780
|
include Aws::Structure
|
2721
2781
|
end
|
2722
2782
|
|
@@ -2747,6 +2807,7 @@ module Aws::S3
|
|
2747
2807
|
#
|
2748
2808
|
class EncryptionConfiguration < Struct.new(
|
2749
2809
|
:replica_kms_key_id)
|
2810
|
+
SENSITIVE = []
|
2750
2811
|
include Aws::Structure
|
2751
2812
|
end
|
2752
2813
|
|
@@ -2758,6 +2819,7 @@ module Aws::S3
|
|
2758
2819
|
#
|
2759
2820
|
class EndEvent < Struct.new(
|
2760
2821
|
:event_type)
|
2822
|
+
SENSITIVE = []
|
2761
2823
|
include Aws::Structure
|
2762
2824
|
end
|
2763
2825
|
|
@@ -3587,6 +3649,7 @@ module Aws::S3
|
|
3587
3649
|
:version_id,
|
3588
3650
|
:code,
|
3589
3651
|
:message)
|
3652
|
+
SENSITIVE = []
|
3590
3653
|
include Aws::Structure
|
3591
3654
|
end
|
3592
3655
|
|
@@ -3607,6 +3670,7 @@ module Aws::S3
|
|
3607
3670
|
#
|
3608
3671
|
class ErrorDocument < Struct.new(
|
3609
3672
|
:key)
|
3673
|
+
SENSITIVE = []
|
3610
3674
|
include Aws::Structure
|
3611
3675
|
end
|
3612
3676
|
|
@@ -3629,6 +3693,7 @@ module Aws::S3
|
|
3629
3693
|
#
|
3630
3694
|
class ExistingObjectReplication < Struct.new(
|
3631
3695
|
:status)
|
3696
|
+
SENSITIVE = []
|
3632
3697
|
include Aws::Structure
|
3633
3698
|
end
|
3634
3699
|
|
@@ -3664,6 +3729,7 @@ module Aws::S3
|
|
3664
3729
|
class FilterRule < Struct.new(
|
3665
3730
|
:name,
|
3666
3731
|
:value)
|
3732
|
+
SENSITIVE = []
|
3667
3733
|
include Aws::Structure
|
3668
3734
|
end
|
3669
3735
|
|
@@ -3675,6 +3741,7 @@ module Aws::S3
|
|
3675
3741
|
#
|
3676
3742
|
class GetBucketAccelerateConfigurationOutput < Struct.new(
|
3677
3743
|
:status)
|
3744
|
+
SENSITIVE = []
|
3678
3745
|
include Aws::Structure
|
3679
3746
|
end
|
3680
3747
|
|
@@ -3694,6 +3761,7 @@ module Aws::S3
|
|
3694
3761
|
#
|
3695
3762
|
class GetBucketAccelerateConfigurationRequest < Struct.new(
|
3696
3763
|
:bucket)
|
3764
|
+
SENSITIVE = []
|
3697
3765
|
include Aws::Structure
|
3698
3766
|
end
|
3699
3767
|
|
@@ -3710,6 +3778,7 @@ module Aws::S3
|
|
3710
3778
|
class GetBucketAclOutput < Struct.new(
|
3711
3779
|
:owner,
|
3712
3780
|
:grants)
|
3781
|
+
SENSITIVE = []
|
3713
3782
|
include Aws::Structure
|
3714
3783
|
end
|
3715
3784
|
|
@@ -3728,6 +3797,7 @@ module Aws::S3
|
|
3728
3797
|
#
|
3729
3798
|
class GetBucketAclRequest < Struct.new(
|
3730
3799
|
:bucket)
|
3800
|
+
SENSITIVE = []
|
3731
3801
|
include Aws::Structure
|
3732
3802
|
end
|
3733
3803
|
|
@@ -3739,6 +3809,7 @@ module Aws::S3
|
|
3739
3809
|
#
|
3740
3810
|
class GetBucketAnalyticsConfigurationOutput < Struct.new(
|
3741
3811
|
:analytics_configuration)
|
3812
|
+
SENSITIVE = []
|
3742
3813
|
include Aws::Structure
|
3743
3814
|
end
|
3744
3815
|
|
@@ -3764,6 +3835,7 @@ module Aws::S3
|
|
3764
3835
|
class GetBucketAnalyticsConfigurationRequest < Struct.new(
|
3765
3836
|
:bucket,
|
3766
3837
|
:id)
|
3838
|
+
SENSITIVE = []
|
3767
3839
|
include Aws::Structure
|
3768
3840
|
end
|
3769
3841
|
|
@@ -3776,6 +3848,7 @@ module Aws::S3
|
|
3776
3848
|
#
|
3777
3849
|
class GetBucketCorsOutput < Struct.new(
|
3778
3850
|
:cors_rules)
|
3851
|
+
SENSITIVE = []
|
3779
3852
|
include Aws::Structure
|
3780
3853
|
end
|
3781
3854
|
|
@@ -3794,6 +3867,7 @@ module Aws::S3
|
|
3794
3867
|
#
|
3795
3868
|
class GetBucketCorsRequest < Struct.new(
|
3796
3869
|
:bucket)
|
3870
|
+
SENSITIVE = []
|
3797
3871
|
include Aws::Structure
|
3798
3872
|
end
|
3799
3873
|
|
@@ -3805,6 +3879,7 @@ module Aws::S3
|
|
3805
3879
|
#
|
3806
3880
|
class GetBucketEncryptionOutput < Struct.new(
|
3807
3881
|
:server_side_encryption_configuration)
|
3882
|
+
SENSITIVE = []
|
3808
3883
|
include Aws::Structure
|
3809
3884
|
end
|
3810
3885
|
|
@@ -3824,6 +3899,7 @@ module Aws::S3
|
|
3824
3899
|
#
|
3825
3900
|
class GetBucketEncryptionRequest < Struct.new(
|
3826
3901
|
:bucket)
|
3902
|
+
SENSITIVE = []
|
3827
3903
|
include Aws::Structure
|
3828
3904
|
end
|
3829
3905
|
|
@@ -3835,6 +3911,7 @@ module Aws::S3
|
|
3835
3911
|
#
|
3836
3912
|
class GetBucketInventoryConfigurationOutput < Struct.new(
|
3837
3913
|
:inventory_configuration)
|
3914
|
+
SENSITIVE = []
|
3838
3915
|
include Aws::Structure
|
3839
3916
|
end
|
3840
3917
|
|
@@ -3860,6 +3937,7 @@ module Aws::S3
|
|
3860
3937
|
class GetBucketInventoryConfigurationRequest < Struct.new(
|
3861
3938
|
:bucket,
|
3862
3939
|
:id)
|
3940
|
+
SENSITIVE = []
|
3863
3941
|
include Aws::Structure
|
3864
3942
|
end
|
3865
3943
|
|
@@ -3871,6 +3949,7 @@ module Aws::S3
|
|
3871
3949
|
#
|
3872
3950
|
class GetBucketLifecycleConfigurationOutput < Struct.new(
|
3873
3951
|
:rules)
|
3952
|
+
SENSITIVE = []
|
3874
3953
|
include Aws::Structure
|
3875
3954
|
end
|
3876
3955
|
|
@@ -3889,6 +3968,7 @@ module Aws::S3
|
|
3889
3968
|
#
|
3890
3969
|
class GetBucketLifecycleConfigurationRequest < Struct.new(
|
3891
3970
|
:bucket)
|
3971
|
+
SENSITIVE = []
|
3892
3972
|
include Aws::Structure
|
3893
3973
|
end
|
3894
3974
|
|
@@ -3900,6 +3980,7 @@ module Aws::S3
|
|
3900
3980
|
#
|
3901
3981
|
class GetBucketLifecycleOutput < Struct.new(
|
3902
3982
|
:rules)
|
3983
|
+
SENSITIVE = []
|
3903
3984
|
include Aws::Structure
|
3904
3985
|
end
|
3905
3986
|
|
@@ -3918,6 +3999,7 @@ module Aws::S3
|
|
3918
3999
|
#
|
3919
4000
|
class GetBucketLifecycleRequest < Struct.new(
|
3920
4001
|
:bucket)
|
4002
|
+
SENSITIVE = []
|
3921
4003
|
include Aws::Structure
|
3922
4004
|
end
|
3923
4005
|
|
@@ -3936,6 +4018,7 @@ module Aws::S3
|
|
3936
4018
|
#
|
3937
4019
|
class GetBucketLocationOutput < Struct.new(
|
3938
4020
|
:location_constraint)
|
4021
|
+
SENSITIVE = []
|
3939
4022
|
include Aws::Structure
|
3940
4023
|
end
|
3941
4024
|
|
@@ -3954,6 +4037,7 @@ module Aws::S3
|
|
3954
4037
|
#
|
3955
4038
|
class GetBucketLocationRequest < Struct.new(
|
3956
4039
|
:bucket)
|
4040
|
+
SENSITIVE = []
|
3957
4041
|
include Aws::Structure
|
3958
4042
|
end
|
3959
4043
|
|
@@ -3972,6 +4056,7 @@ module Aws::S3
|
|
3972
4056
|
#
|
3973
4057
|
class GetBucketLoggingOutput < Struct.new(
|
3974
4058
|
:logging_enabled)
|
4059
|
+
SENSITIVE = []
|
3975
4060
|
include Aws::Structure
|
3976
4061
|
end
|
3977
4062
|
|
@@ -3990,6 +4075,7 @@ module Aws::S3
|
|
3990
4075
|
#
|
3991
4076
|
class GetBucketLoggingRequest < Struct.new(
|
3992
4077
|
:bucket)
|
4078
|
+
SENSITIVE = []
|
3993
4079
|
include Aws::Structure
|
3994
4080
|
end
|
3995
4081
|
|
@@ -4001,6 +4087,7 @@ module Aws::S3
|
|
4001
4087
|
#
|
4002
4088
|
class GetBucketMetricsConfigurationOutput < Struct.new(
|
4003
4089
|
:metrics_configuration)
|
4090
|
+
SENSITIVE = []
|
4004
4091
|
include Aws::Structure
|
4005
4092
|
end
|
4006
4093
|
|
@@ -4026,6 +4113,7 @@ module Aws::S3
|
|
4026
4113
|
class GetBucketMetricsConfigurationRequest < Struct.new(
|
4027
4114
|
:bucket,
|
4028
4115
|
:id)
|
4116
|
+
SENSITIVE = []
|
4029
4117
|
include Aws::Structure
|
4030
4118
|
end
|
4031
4119
|
|
@@ -4044,6 +4132,7 @@ module Aws::S3
|
|
4044
4132
|
#
|
4045
4133
|
class GetBucketNotificationConfigurationRequest < Struct.new(
|
4046
4134
|
:bucket)
|
4135
|
+
SENSITIVE = []
|
4047
4136
|
include Aws::Structure
|
4048
4137
|
end
|
4049
4138
|
|
@@ -4055,6 +4144,7 @@ module Aws::S3
|
|
4055
4144
|
#
|
4056
4145
|
class GetBucketPolicyOutput < Struct.new(
|
4057
4146
|
:policy)
|
4147
|
+
SENSITIVE = []
|
4058
4148
|
include Aws::Structure
|
4059
4149
|
end
|
4060
4150
|
|
@@ -4073,6 +4163,7 @@ module Aws::S3
|
|
4073
4163
|
#
|
4074
4164
|
class GetBucketPolicyRequest < Struct.new(
|
4075
4165
|
:bucket)
|
4166
|
+
SENSITIVE = []
|
4076
4167
|
include Aws::Structure
|
4077
4168
|
end
|
4078
4169
|
|
@@ -4084,6 +4175,7 @@ module Aws::S3
|
|
4084
4175
|
#
|
4085
4176
|
class GetBucketPolicyStatusOutput < Struct.new(
|
4086
4177
|
:policy_status)
|
4178
|
+
SENSITIVE = []
|
4087
4179
|
include Aws::Structure
|
4088
4180
|
end
|
4089
4181
|
|
@@ -4103,6 +4195,7 @@ module Aws::S3
|
|
4103
4195
|
#
|
4104
4196
|
class GetBucketPolicyStatusRequest < Struct.new(
|
4105
4197
|
:bucket)
|
4198
|
+
SENSITIVE = []
|
4106
4199
|
include Aws::Structure
|
4107
4200
|
end
|
4108
4201
|
|
@@ -4115,6 +4208,7 @@ module Aws::S3
|
|
4115
4208
|
#
|
4116
4209
|
class GetBucketReplicationOutput < Struct.new(
|
4117
4210
|
:replication_configuration)
|
4211
|
+
SENSITIVE = []
|
4118
4212
|
include Aws::Structure
|
4119
4213
|
end
|
4120
4214
|
|
@@ -4133,6 +4227,7 @@ module Aws::S3
|
|
4133
4227
|
#
|
4134
4228
|
class GetBucketReplicationRequest < Struct.new(
|
4135
4229
|
:bucket)
|
4230
|
+
SENSITIVE = []
|
4136
4231
|
include Aws::Structure
|
4137
4232
|
end
|
4138
4233
|
|
@@ -4144,6 +4239,7 @@ module Aws::S3
|
|
4144
4239
|
#
|
4145
4240
|
class GetBucketRequestPaymentOutput < Struct.new(
|
4146
4241
|
:payer)
|
4242
|
+
SENSITIVE = []
|
4147
4243
|
include Aws::Structure
|
4148
4244
|
end
|
4149
4245
|
|
@@ -4163,6 +4259,7 @@ module Aws::S3
|
|
4163
4259
|
#
|
4164
4260
|
class GetBucketRequestPaymentRequest < Struct.new(
|
4165
4261
|
:bucket)
|
4262
|
+
SENSITIVE = []
|
4166
4263
|
include Aws::Structure
|
4167
4264
|
end
|
4168
4265
|
|
@@ -4174,6 +4271,7 @@ module Aws::S3
|
|
4174
4271
|
#
|
4175
4272
|
class GetBucketTaggingOutput < Struct.new(
|
4176
4273
|
:tag_set)
|
4274
|
+
SENSITIVE = []
|
4177
4275
|
include Aws::Structure
|
4178
4276
|
end
|
4179
4277
|
|
@@ -4192,6 +4290,7 @@ module Aws::S3
|
|
4192
4290
|
#
|
4193
4291
|
class GetBucketTaggingRequest < Struct.new(
|
4194
4292
|
:bucket)
|
4293
|
+
SENSITIVE = []
|
4195
4294
|
include Aws::Structure
|
4196
4295
|
end
|
4197
4296
|
|
@@ -4211,6 +4310,7 @@ module Aws::S3
|
|
4211
4310
|
class GetBucketVersioningOutput < Struct.new(
|
4212
4311
|
:status,
|
4213
4312
|
:mfa_delete)
|
4313
|
+
SENSITIVE = []
|
4214
4314
|
include Aws::Structure
|
4215
4315
|
end
|
4216
4316
|
|
@@ -4229,6 +4329,7 @@ module Aws::S3
|
|
4229
4329
|
#
|
4230
4330
|
class GetBucketVersioningRequest < Struct.new(
|
4231
4331
|
:bucket)
|
4332
|
+
SENSITIVE = []
|
4232
4333
|
include Aws::Structure
|
4233
4334
|
end
|
4234
4335
|
|
@@ -4259,6 +4360,7 @@ module Aws::S3
|
|
4259
4360
|
:index_document,
|
4260
4361
|
:error_document,
|
4261
4362
|
:routing_rules)
|
4363
|
+
SENSITIVE = []
|
4262
4364
|
include Aws::Structure
|
4263
4365
|
end
|
4264
4366
|
|
@@ -4277,6 +4379,7 @@ module Aws::S3
|
|
4277
4379
|
#
|
4278
4380
|
class GetBucketWebsiteRequest < Struct.new(
|
4279
4381
|
:bucket)
|
4382
|
+
SENSITIVE = []
|
4280
4383
|
include Aws::Structure
|
4281
4384
|
end
|
4282
4385
|
|
@@ -4299,6 +4402,7 @@ module Aws::S3
|
|
4299
4402
|
:owner,
|
4300
4403
|
:grants,
|
4301
4404
|
:request_charged)
|
4405
|
+
SENSITIVE = []
|
4302
4406
|
include Aws::Structure
|
4303
4407
|
end
|
4304
4408
|
|
@@ -4357,6 +4461,7 @@ module Aws::S3
|
|
4357
4461
|
:key,
|
4358
4462
|
:version_id,
|
4359
4463
|
:request_payer)
|
4464
|
+
SENSITIVE = []
|
4360
4465
|
include Aws::Structure
|
4361
4466
|
end
|
4362
4467
|
|
@@ -4368,6 +4473,7 @@ module Aws::S3
|
|
4368
4473
|
#
|
4369
4474
|
class GetObjectLegalHoldOutput < Struct.new(
|
4370
4475
|
:legal_hold)
|
4476
|
+
SENSITIVE = []
|
4371
4477
|
include Aws::Structure
|
4372
4478
|
end
|
4373
4479
|
|
@@ -4428,6 +4534,7 @@ module Aws::S3
|
|
4428
4534
|
:key,
|
4429
4535
|
:version_id,
|
4430
4536
|
:request_payer)
|
4537
|
+
SENSITIVE = []
|
4431
4538
|
include Aws::Structure
|
4432
4539
|
end
|
4433
4540
|
|
@@ -4439,6 +4546,7 @@ module Aws::S3
|
|
4439
4546
|
#
|
4440
4547
|
class GetObjectLockConfigurationOutput < Struct.new(
|
4441
4548
|
:object_lock_configuration)
|
4549
|
+
SENSITIVE = []
|
4442
4550
|
include Aws::Structure
|
4443
4551
|
end
|
4444
4552
|
|
@@ -4457,6 +4565,7 @@ module Aws::S3
|
|
4457
4565
|
#
|
4458
4566
|
class GetObjectLockConfigurationRequest < Struct.new(
|
4459
4567
|
:bucket)
|
4568
|
+
SENSITIVE = []
|
4460
4569
|
include Aws::Structure
|
4461
4570
|
end
|
4462
4571
|
|
@@ -4652,6 +4761,7 @@ module Aws::S3
|
|
4652
4761
|
:object_lock_mode,
|
4653
4762
|
:object_lock_retain_until_date,
|
4654
4763
|
:object_lock_legal_hold_status)
|
4764
|
+
SENSITIVE = [:ssekms_key_id]
|
4655
4765
|
include Aws::Structure
|
4656
4766
|
end
|
4657
4767
|
|
@@ -4824,6 +4934,7 @@ module Aws::S3
|
|
4824
4934
|
:sse_customer_key_md5,
|
4825
4935
|
:request_payer,
|
4826
4936
|
:part_number)
|
4937
|
+
SENSITIVE = [:sse_customer_key]
|
4827
4938
|
include Aws::Structure
|
4828
4939
|
end
|
4829
4940
|
|
@@ -4835,6 +4946,7 @@ module Aws::S3
|
|
4835
4946
|
#
|
4836
4947
|
class GetObjectRetentionOutput < Struct.new(
|
4837
4948
|
:retention)
|
4949
|
+
SENSITIVE = []
|
4838
4950
|
include Aws::Structure
|
4839
4951
|
end
|
4840
4952
|
|
@@ -4895,6 +5007,7 @@ module Aws::S3
|
|
4895
5007
|
:key,
|
4896
5008
|
:version_id,
|
4897
5009
|
:request_payer)
|
5010
|
+
SENSITIVE = []
|
4898
5011
|
include Aws::Structure
|
4899
5012
|
end
|
4900
5013
|
|
@@ -4912,6 +5025,7 @@ module Aws::S3
|
|
4912
5025
|
class GetObjectTaggingOutput < Struct.new(
|
4913
5026
|
:version_id,
|
4914
5027
|
:tag_set)
|
5028
|
+
SENSITIVE = []
|
4915
5029
|
include Aws::Structure
|
4916
5030
|
end
|
4917
5031
|
|
@@ -4957,6 +5071,7 @@ module Aws::S3
|
|
4957
5071
|
:bucket,
|
4958
5072
|
:key,
|
4959
5073
|
:version_id)
|
5074
|
+
SENSITIVE = []
|
4960
5075
|
include Aws::Structure
|
4961
5076
|
end
|
4962
5077
|
|
@@ -4974,6 +5089,7 @@ module Aws::S3
|
|
4974
5089
|
class GetObjectTorrentOutput < Struct.new(
|
4975
5090
|
:body,
|
4976
5091
|
:request_charged)
|
5092
|
+
SENSITIVE = []
|
4977
5093
|
include Aws::Structure
|
4978
5094
|
end
|
4979
5095
|
|
@@ -5013,6 +5129,7 @@ module Aws::S3
|
|
5013
5129
|
:bucket,
|
5014
5130
|
:key,
|
5015
5131
|
:request_payer)
|
5132
|
+
SENSITIVE = []
|
5016
5133
|
include Aws::Structure
|
5017
5134
|
end
|
5018
5135
|
|
@@ -5025,6 +5142,7 @@ module Aws::S3
|
|
5025
5142
|
#
|
5026
5143
|
class GetPublicAccessBlockOutput < Struct.new(
|
5027
5144
|
:public_access_block_configuration)
|
5145
|
+
SENSITIVE = []
|
5028
5146
|
include Aws::Structure
|
5029
5147
|
end
|
5030
5148
|
|
@@ -5044,6 +5162,7 @@ module Aws::S3
|
|
5044
5162
|
#
|
5045
5163
|
class GetPublicAccessBlockRequest < Struct.new(
|
5046
5164
|
:bucket)
|
5165
|
+
SENSITIVE = []
|
5047
5166
|
include Aws::Structure
|
5048
5167
|
end
|
5049
5168
|
|
@@ -5064,6 +5183,7 @@ module Aws::S3
|
|
5064
5183
|
#
|
5065
5184
|
class GlacierJobParameters < Struct.new(
|
5066
5185
|
:tier)
|
5186
|
+
SENSITIVE = []
|
5067
5187
|
include Aws::Structure
|
5068
5188
|
end
|
5069
5189
|
|
@@ -5096,6 +5216,7 @@ module Aws::S3
|
|
5096
5216
|
class Grant < Struct.new(
|
5097
5217
|
:grantee,
|
5098
5218
|
:permission)
|
5219
|
+
SENSITIVE = []
|
5099
5220
|
include Aws::Structure
|
5100
5221
|
end
|
5101
5222
|
|
@@ -5168,6 +5289,7 @@ module Aws::S3
|
|
5168
5289
|
:id,
|
5169
5290
|
:type,
|
5170
5291
|
:uri)
|
5292
|
+
SENSITIVE = []
|
5171
5293
|
include Aws::Structure
|
5172
5294
|
end
|
5173
5295
|
|
@@ -5186,6 +5308,7 @@ module Aws::S3
|
|
5186
5308
|
#
|
5187
5309
|
class HeadBucketRequest < Struct.new(
|
5188
5310
|
:bucket)
|
5311
|
+
SENSITIVE = []
|
5189
5312
|
include Aws::Structure
|
5190
5313
|
end
|
5191
5314
|
|
@@ -5439,6 +5562,7 @@ module Aws::S3
|
|
5439
5562
|
:object_lock_mode,
|
5440
5563
|
:object_lock_retain_until_date,
|
5441
5564
|
:object_lock_legal_hold_status)
|
5565
|
+
SENSITIVE = [:ssekms_key_id]
|
5442
5566
|
include Aws::Structure
|
5443
5567
|
end
|
5444
5568
|
|
@@ -5558,6 +5682,7 @@ module Aws::S3
|
|
5558
5682
|
:sse_customer_key_md5,
|
5559
5683
|
:request_payer,
|
5560
5684
|
:part_number)
|
5685
|
+
SENSITIVE = [:sse_customer_key]
|
5561
5686
|
include Aws::Structure
|
5562
5687
|
end
|
5563
5688
|
|
@@ -5582,6 +5707,7 @@ module Aws::S3
|
|
5582
5707
|
#
|
5583
5708
|
class IndexDocument < Struct.new(
|
5584
5709
|
:suffix)
|
5710
|
+
SENSITIVE = []
|
5585
5711
|
include Aws::Structure
|
5586
5712
|
end
|
5587
5713
|
|
@@ -5601,6 +5727,7 @@ module Aws::S3
|
|
5601
5727
|
class Initiator < Struct.new(
|
5602
5728
|
:id,
|
5603
5729
|
:display_name)
|
5730
|
+
SENSITIVE = []
|
5604
5731
|
include Aws::Structure
|
5605
5732
|
end
|
5606
5733
|
|
@@ -5651,6 +5778,7 @@ module Aws::S3
|
|
5651
5778
|
:compression_type,
|
5652
5779
|
:json,
|
5653
5780
|
:parquet)
|
5781
|
+
SENSITIVE = []
|
5654
5782
|
include Aws::Structure
|
5655
5783
|
end
|
5656
5784
|
|
@@ -5739,6 +5867,7 @@ module Aws::S3
|
|
5739
5867
|
:included_object_versions,
|
5740
5868
|
:optional_fields,
|
5741
5869
|
:schedule)
|
5870
|
+
SENSITIVE = []
|
5742
5871
|
include Aws::Structure
|
5743
5872
|
end
|
5744
5873
|
|
@@ -5772,6 +5901,7 @@ module Aws::S3
|
|
5772
5901
|
#
|
5773
5902
|
class InventoryDestination < Struct.new(
|
5774
5903
|
:s3_bucket_destination)
|
5904
|
+
SENSITIVE = []
|
5775
5905
|
include Aws::Structure
|
5776
5906
|
end
|
5777
5907
|
|
@@ -5802,6 +5932,7 @@ module Aws::S3
|
|
5802
5932
|
class InventoryEncryption < Struct.new(
|
5803
5933
|
:sses3,
|
5804
5934
|
:ssekms)
|
5935
|
+
SENSITIVE = []
|
5805
5936
|
include Aws::Structure
|
5806
5937
|
end
|
5807
5938
|
|
@@ -5824,6 +5955,7 @@ module Aws::S3
|
|
5824
5955
|
#
|
5825
5956
|
class InventoryFilter < Struct.new(
|
5826
5957
|
:prefix)
|
5958
|
+
SENSITIVE = []
|
5827
5959
|
include Aws::Structure
|
5828
5960
|
end
|
5829
5961
|
|
@@ -5884,6 +6016,7 @@ module Aws::S3
|
|
5884
6016
|
:format,
|
5885
6017
|
:prefix,
|
5886
6018
|
:encryption)
|
6019
|
+
SENSITIVE = []
|
5887
6020
|
include Aws::Structure
|
5888
6021
|
end
|
5889
6022
|
|
@@ -5904,6 +6037,7 @@ module Aws::S3
|
|
5904
6037
|
#
|
5905
6038
|
class InventorySchedule < Struct.new(
|
5906
6039
|
:frequency)
|
6040
|
+
SENSITIVE = []
|
5907
6041
|
include Aws::Structure
|
5908
6042
|
end
|
5909
6043
|
|
@@ -5924,6 +6058,7 @@ module Aws::S3
|
|
5924
6058
|
#
|
5925
6059
|
class JSONInput < Struct.new(
|
5926
6060
|
:type)
|
6061
|
+
SENSITIVE = []
|
5927
6062
|
include Aws::Structure
|
5928
6063
|
end
|
5929
6064
|
|
@@ -5945,6 +6080,7 @@ module Aws::S3
|
|
5945
6080
|
#
|
5946
6081
|
class JSONOutput < Struct.new(
|
5947
6082
|
:record_delimiter)
|
6083
|
+
SENSITIVE = []
|
5948
6084
|
include Aws::Structure
|
5949
6085
|
end
|
5950
6086
|
|
@@ -6008,6 +6144,7 @@ module Aws::S3
|
|
6008
6144
|
:lambda_function_arn,
|
6009
6145
|
:events,
|
6010
6146
|
:filter)
|
6147
|
+
SENSITIVE = []
|
6011
6148
|
include Aws::Structure
|
6012
6149
|
end
|
6013
6150
|
|
@@ -6054,6 +6191,7 @@ module Aws::S3
|
|
6054
6191
|
#
|
6055
6192
|
class LifecycleConfiguration < Struct.new(
|
6056
6193
|
:rules)
|
6194
|
+
SENSITIVE = []
|
6057
6195
|
include Aws::Structure
|
6058
6196
|
end
|
6059
6197
|
|
@@ -6091,6 +6229,7 @@ module Aws::S3
|
|
6091
6229
|
:date,
|
6092
6230
|
:days,
|
6093
6231
|
:expired_object_delete_marker)
|
6232
|
+
SENSITIVE = []
|
6094
6233
|
include Aws::Structure
|
6095
6234
|
end
|
6096
6235
|
|
@@ -6218,6 +6357,7 @@ module Aws::S3
|
|
6218
6357
|
:noncurrent_version_transitions,
|
6219
6358
|
:noncurrent_version_expiration,
|
6220
6359
|
:abort_incomplete_multipart_upload)
|
6360
|
+
SENSITIVE = []
|
6221
6361
|
include Aws::Structure
|
6222
6362
|
end
|
6223
6363
|
|
@@ -6252,6 +6392,7 @@ module Aws::S3
|
|
6252
6392
|
class LifecycleRuleAndOperator < Struct.new(
|
6253
6393
|
:prefix,
|
6254
6394
|
:tags)
|
6395
|
+
SENSITIVE = []
|
6255
6396
|
include Aws::Structure
|
6256
6397
|
end
|
6257
6398
|
|
@@ -6300,6 +6441,7 @@ module Aws::S3
|
|
6300
6441
|
:prefix,
|
6301
6442
|
:tag,
|
6302
6443
|
:and)
|
6444
|
+
SENSITIVE = []
|
6303
6445
|
include Aws::Structure
|
6304
6446
|
end
|
6305
6447
|
|
@@ -6334,6 +6476,7 @@ module Aws::S3
|
|
6334
6476
|
:continuation_token,
|
6335
6477
|
:next_continuation_token,
|
6336
6478
|
:analytics_configuration_list)
|
6479
|
+
SENSITIVE = []
|
6337
6480
|
include Aws::Structure
|
6338
6481
|
end
|
6339
6482
|
|
@@ -6360,6 +6503,7 @@ module Aws::S3
|
|
6360
6503
|
class ListBucketAnalyticsConfigurationsRequest < Struct.new(
|
6361
6504
|
:bucket,
|
6362
6505
|
:continuation_token)
|
6506
|
+
SENSITIVE = []
|
6363
6507
|
include Aws::Structure
|
6364
6508
|
end
|
6365
6509
|
|
@@ -6392,6 +6536,7 @@ module Aws::S3
|
|
6392
6536
|
:inventory_configuration_list,
|
6393
6537
|
:is_truncated,
|
6394
6538
|
:next_continuation_token)
|
6539
|
+
SENSITIVE = []
|
6395
6540
|
include Aws::Structure
|
6396
6541
|
end
|
6397
6542
|
|
@@ -6420,6 +6565,7 @@ module Aws::S3
|
|
6420
6565
|
class ListBucketInventoryConfigurationsRequest < Struct.new(
|
6421
6566
|
:bucket,
|
6422
6567
|
:continuation_token)
|
6568
|
+
SENSITIVE = []
|
6423
6569
|
include Aws::Structure
|
6424
6570
|
end
|
6425
6571
|
|
@@ -6454,6 +6600,7 @@ module Aws::S3
|
|
6454
6600
|
:continuation_token,
|
6455
6601
|
:next_continuation_token,
|
6456
6602
|
:metrics_configuration_list)
|
6603
|
+
SENSITIVE = []
|
6457
6604
|
include Aws::Structure
|
6458
6605
|
end
|
6459
6606
|
|
@@ -6482,6 +6629,7 @@ module Aws::S3
|
|
6482
6629
|
class ListBucketMetricsConfigurationsRequest < Struct.new(
|
6483
6630
|
:bucket,
|
6484
6631
|
:continuation_token)
|
6632
|
+
SENSITIVE = []
|
6485
6633
|
include Aws::Structure
|
6486
6634
|
end
|
6487
6635
|
|
@@ -6498,6 +6646,7 @@ module Aws::S3
|
|
6498
6646
|
class ListBucketsOutput < Struct.new(
|
6499
6647
|
:buckets,
|
6500
6648
|
:owner)
|
6649
|
+
SENSITIVE = []
|
6501
6650
|
include Aws::Structure
|
6502
6651
|
end
|
6503
6652
|
|
@@ -6587,6 +6736,7 @@ module Aws::S3
|
|
6587
6736
|
:uploads,
|
6588
6737
|
:common_prefixes,
|
6589
6738
|
:encoding_type)
|
6739
|
+
SENSITIVE = []
|
6590
6740
|
include Aws::Structure
|
6591
6741
|
end
|
6592
6742
|
|
@@ -6687,6 +6837,7 @@ module Aws::S3
|
|
6687
6837
|
:max_uploads,
|
6688
6838
|
:prefix,
|
6689
6839
|
:upload_id_marker)
|
6840
|
+
SENSITIVE = []
|
6690
6841
|
include Aws::Structure
|
6691
6842
|
end
|
6692
6843
|
|
@@ -6782,6 +6933,7 @@ module Aws::S3
|
|
6782
6933
|
:max_keys,
|
6783
6934
|
:common_prefixes,
|
6784
6935
|
:encoding_type)
|
6936
|
+
SENSITIVE = []
|
6785
6937
|
include Aws::Structure
|
6786
6938
|
end
|
6787
6939
|
|
@@ -6870,6 +7022,7 @@ module Aws::S3
|
|
6870
7022
|
:max_keys,
|
6871
7023
|
:prefix,
|
6872
7024
|
:version_id_marker)
|
7025
|
+
SENSITIVE = []
|
6873
7026
|
include Aws::Structure
|
6874
7027
|
end
|
6875
7028
|
|
@@ -6955,6 +7108,7 @@ module Aws::S3
|
|
6955
7108
|
:max_keys,
|
6956
7109
|
:common_prefixes,
|
6957
7110
|
:encoding_type)
|
7111
|
+
SENSITIVE = []
|
6958
7112
|
include Aws::Structure
|
6959
7113
|
end
|
6960
7114
|
|
@@ -7018,6 +7172,7 @@ module Aws::S3
|
|
7018
7172
|
:max_keys,
|
7019
7173
|
:prefix,
|
7020
7174
|
:request_payer)
|
7175
|
+
SENSITIVE = []
|
7021
7176
|
include Aws::Structure
|
7022
7177
|
end
|
7023
7178
|
|
@@ -7136,6 +7291,7 @@ module Aws::S3
|
|
7136
7291
|
:continuation_token,
|
7137
7292
|
:next_continuation_token,
|
7138
7293
|
:start_after)
|
7294
|
+
SENSITIVE = []
|
7139
7295
|
include Aws::Structure
|
7140
7296
|
end
|
7141
7297
|
|
@@ -7226,6 +7382,7 @@ module Aws::S3
|
|
7226
7382
|
:fetch_owner,
|
7227
7383
|
:start_after,
|
7228
7384
|
:request_payer)
|
7385
|
+
SENSITIVE = []
|
7229
7386
|
include Aws::Structure
|
7230
7387
|
end
|
7231
7388
|
|
@@ -7334,6 +7491,7 @@ module Aws::S3
|
|
7334
7491
|
:owner,
|
7335
7492
|
:storage_class,
|
7336
7493
|
:request_charged)
|
7494
|
+
SENSITIVE = []
|
7337
7495
|
include Aws::Structure
|
7338
7496
|
end
|
7339
7497
|
|
@@ -7405,6 +7563,7 @@ module Aws::S3
|
|
7405
7563
|
:part_number_marker,
|
7406
7564
|
:upload_id,
|
7407
7565
|
:request_payer)
|
7566
|
+
SENSITIVE = []
|
7408
7567
|
include Aws::Structure
|
7409
7568
|
end
|
7410
7569
|
|
@@ -7463,6 +7622,7 @@ module Aws::S3
|
|
7463
7622
|
:target_bucket,
|
7464
7623
|
:target_grants,
|
7465
7624
|
:target_prefix)
|
7625
|
+
SENSITIVE = []
|
7466
7626
|
include Aws::Structure
|
7467
7627
|
end
|
7468
7628
|
|
@@ -7489,6 +7649,7 @@ module Aws::S3
|
|
7489
7649
|
class MetadataEntry < Struct.new(
|
7490
7650
|
:name,
|
7491
7651
|
:value)
|
7652
|
+
SENSITIVE = []
|
7492
7653
|
include Aws::Structure
|
7493
7654
|
end
|
7494
7655
|
|
@@ -7520,6 +7681,7 @@ module Aws::S3
|
|
7520
7681
|
class Metrics < Struct.new(
|
7521
7682
|
:status,
|
7522
7683
|
:event_threshold)
|
7684
|
+
SENSITIVE = []
|
7523
7685
|
include Aws::Structure
|
7524
7686
|
end
|
7525
7687
|
|
@@ -7554,6 +7716,7 @@ module Aws::S3
|
|
7554
7716
|
class MetricsAndOperator < Struct.new(
|
7555
7717
|
:prefix,
|
7556
7718
|
:tags)
|
7719
|
+
SENSITIVE = []
|
7557
7720
|
include Aws::Structure
|
7558
7721
|
end
|
7559
7722
|
|
@@ -7607,6 +7770,7 @@ module Aws::S3
|
|
7607
7770
|
class MetricsConfiguration < Struct.new(
|
7608
7771
|
:id,
|
7609
7772
|
:filter)
|
7773
|
+
SENSITIVE = []
|
7610
7774
|
include Aws::Structure
|
7611
7775
|
end
|
7612
7776
|
|
@@ -7655,6 +7819,7 @@ module Aws::S3
|
|
7655
7819
|
:prefix,
|
7656
7820
|
:tag,
|
7657
7821
|
:and)
|
7822
|
+
SENSITIVE = []
|
7658
7823
|
include Aws::Structure
|
7659
7824
|
end
|
7660
7825
|
|
@@ -7694,6 +7859,7 @@ module Aws::S3
|
|
7694
7859
|
:storage_class,
|
7695
7860
|
:owner,
|
7696
7861
|
:initiator)
|
7862
|
+
SENSITIVE = []
|
7697
7863
|
include Aws::Structure
|
7698
7864
|
end
|
7699
7865
|
|
@@ -7744,6 +7910,7 @@ module Aws::S3
|
|
7744
7910
|
#
|
7745
7911
|
class NoncurrentVersionExpiration < Struct.new(
|
7746
7912
|
:noncurrent_days)
|
7913
|
+
SENSITIVE = []
|
7747
7914
|
include Aws::Structure
|
7748
7915
|
end
|
7749
7916
|
|
@@ -7785,6 +7952,7 @@ module Aws::S3
|
|
7785
7952
|
class NoncurrentVersionTransition < Struct.new(
|
7786
7953
|
:noncurrent_days,
|
7787
7954
|
:storage_class)
|
7955
|
+
SENSITIVE = []
|
7788
7956
|
include Aws::Structure
|
7789
7957
|
end
|
7790
7958
|
|
@@ -7870,6 +8038,7 @@ module Aws::S3
|
|
7870
8038
|
:topic_configurations,
|
7871
8039
|
:queue_configurations,
|
7872
8040
|
:lambda_function_configurations)
|
8041
|
+
SENSITIVE = []
|
7873
8042
|
include Aws::Structure
|
7874
8043
|
end
|
7875
8044
|
|
@@ -7921,6 +8090,7 @@ module Aws::S3
|
|
7921
8090
|
:topic_configuration,
|
7922
8091
|
:queue_configuration,
|
7923
8092
|
:cloud_function_configuration)
|
8093
|
+
SENSITIVE = []
|
7924
8094
|
include Aws::Structure
|
7925
8095
|
end
|
7926
8096
|
|
@@ -7954,6 +8124,7 @@ module Aws::S3
|
|
7954
8124
|
#
|
7955
8125
|
class NotificationConfigurationFilter < Struct.new(
|
7956
8126
|
:key)
|
8127
|
+
SENSITIVE = []
|
7957
8128
|
include Aws::Structure
|
7958
8129
|
end
|
7959
8130
|
|
@@ -7994,6 +8165,7 @@ module Aws::S3
|
|
7994
8165
|
:size,
|
7995
8166
|
:storage_class,
|
7996
8167
|
:owner)
|
8168
|
+
SENSITIVE = []
|
7997
8169
|
include Aws::Structure
|
7998
8170
|
end
|
7999
8171
|
|
@@ -8026,6 +8198,7 @@ module Aws::S3
|
|
8026
8198
|
class ObjectIdentifier < Struct.new(
|
8027
8199
|
:key,
|
8028
8200
|
:version_id)
|
8201
|
+
SENSITIVE = []
|
8029
8202
|
include Aws::Structure
|
8030
8203
|
end
|
8031
8204
|
|
@@ -8059,6 +8232,7 @@ module Aws::S3
|
|
8059
8232
|
class ObjectLockConfiguration < Struct.new(
|
8060
8233
|
:object_lock_enabled,
|
8061
8234
|
:rule)
|
8235
|
+
SENSITIVE = []
|
8062
8236
|
include Aws::Structure
|
8063
8237
|
end
|
8064
8238
|
|
@@ -8079,6 +8253,7 @@ module Aws::S3
|
|
8079
8253
|
#
|
8080
8254
|
class ObjectLockLegalHold < Struct.new(
|
8081
8255
|
:status)
|
8256
|
+
SENSITIVE = []
|
8082
8257
|
include Aws::Structure
|
8083
8258
|
end
|
8084
8259
|
|
@@ -8105,6 +8280,7 @@ module Aws::S3
|
|
8105
8280
|
class ObjectLockRetention < Struct.new(
|
8106
8281
|
:mode,
|
8107
8282
|
:retain_until_date)
|
8283
|
+
SENSITIVE = []
|
8108
8284
|
include Aws::Structure
|
8109
8285
|
end
|
8110
8286
|
|
@@ -8130,6 +8306,7 @@ module Aws::S3
|
|
8130
8306
|
#
|
8131
8307
|
class ObjectLockRule < Struct.new(
|
8132
8308
|
:default_retention)
|
8309
|
+
SENSITIVE = []
|
8133
8310
|
include Aws::Structure
|
8134
8311
|
end
|
8135
8312
|
|
@@ -8186,6 +8363,7 @@ module Aws::S3
|
|
8186
8363
|
:is_latest,
|
8187
8364
|
:last_modified,
|
8188
8365
|
:owner)
|
8366
|
+
SENSITIVE = []
|
8189
8367
|
include Aws::Structure
|
8190
8368
|
end
|
8191
8369
|
|
@@ -8243,6 +8421,7 @@ module Aws::S3
|
|
8243
8421
|
#
|
8244
8422
|
class OutputLocation < Struct.new(
|
8245
8423
|
:s3)
|
8424
|
+
SENSITIVE = []
|
8246
8425
|
include Aws::Structure
|
8247
8426
|
end
|
8248
8427
|
|
@@ -8277,6 +8456,7 @@ module Aws::S3
|
|
8277
8456
|
class OutputSerialization < Struct.new(
|
8278
8457
|
:csv,
|
8279
8458
|
:json)
|
8459
|
+
SENSITIVE = []
|
8280
8460
|
include Aws::Structure
|
8281
8461
|
end
|
8282
8462
|
|
@@ -8303,6 +8483,7 @@ module Aws::S3
|
|
8303
8483
|
class Owner < Struct.new(
|
8304
8484
|
:display_name,
|
8305
8485
|
:id)
|
8486
|
+
SENSITIVE = []
|
8306
8487
|
include Aws::Structure
|
8307
8488
|
end
|
8308
8489
|
|
@@ -8340,6 +8521,7 @@ module Aws::S3
|
|
8340
8521
|
:last_modified,
|
8341
8522
|
:etag,
|
8342
8523
|
:size)
|
8524
|
+
SENSITIVE = []
|
8343
8525
|
include Aws::Structure
|
8344
8526
|
end
|
8345
8527
|
|
@@ -8354,6 +8536,7 @@ module Aws::S3
|
|
8354
8536
|
#
|
8355
8537
|
class PolicyStatus < Struct.new(
|
8356
8538
|
:is_public)
|
8539
|
+
SENSITIVE = []
|
8357
8540
|
include Aws::Structure
|
8358
8541
|
end
|
8359
8542
|
|
@@ -8377,6 +8560,7 @@ module Aws::S3
|
|
8377
8560
|
:bytes_scanned,
|
8378
8561
|
:bytes_processed,
|
8379
8562
|
:bytes_returned)
|
8563
|
+
SENSITIVE = []
|
8380
8564
|
include Aws::Structure
|
8381
8565
|
end
|
8382
8566
|
|
@@ -8392,6 +8576,7 @@ module Aws::S3
|
|
8392
8576
|
class ProgressEvent < Struct.new(
|
8393
8577
|
:details,
|
8394
8578
|
:event_type)
|
8579
|
+
SENSITIVE = []
|
8395
8580
|
include Aws::Structure
|
8396
8581
|
end
|
8397
8582
|
|
@@ -8468,6 +8653,7 @@ module Aws::S3
|
|
8468
8653
|
:ignore_public_acls,
|
8469
8654
|
:block_public_policy,
|
8470
8655
|
:restrict_public_buckets)
|
8656
|
+
SENSITIVE = []
|
8471
8657
|
include Aws::Structure
|
8472
8658
|
end
|
8473
8659
|
|
@@ -8494,6 +8680,7 @@ module Aws::S3
|
|
8494
8680
|
class PutBucketAccelerateConfigurationRequest < Struct.new(
|
8495
8681
|
:bucket,
|
8496
8682
|
:accelerate_configuration)
|
8683
|
+
SENSITIVE = []
|
8497
8684
|
include Aws::Structure
|
8498
8685
|
end
|
8499
8686
|
|
@@ -8587,6 +8774,7 @@ module Aws::S3
|
|
8587
8774
|
:grant_read_acp,
|
8588
8775
|
:grant_write,
|
8589
8776
|
:grant_write_acp)
|
8777
|
+
SENSITIVE = []
|
8590
8778
|
include Aws::Structure
|
8591
8779
|
end
|
8592
8780
|
|
@@ -8649,6 +8837,7 @@ module Aws::S3
|
|
8649
8837
|
:bucket,
|
8650
8838
|
:id,
|
8651
8839
|
:analytics_configuration)
|
8840
|
+
SENSITIVE = []
|
8652
8841
|
include Aws::Structure
|
8653
8842
|
end
|
8654
8843
|
|
@@ -8703,6 +8892,7 @@ module Aws::S3
|
|
8703
8892
|
:bucket,
|
8704
8893
|
:cors_configuration,
|
8705
8894
|
:content_md5)
|
8895
|
+
SENSITIVE = []
|
8706
8896
|
include Aws::Structure
|
8707
8897
|
end
|
8708
8898
|
|
@@ -8753,6 +8943,7 @@ module Aws::S3
|
|
8753
8943
|
:bucket,
|
8754
8944
|
:content_md5,
|
8755
8945
|
:server_side_encryption_configuration)
|
8946
|
+
SENSITIVE = []
|
8756
8947
|
include Aws::Structure
|
8757
8948
|
end
|
8758
8949
|
|
@@ -8810,6 +9001,7 @@ module Aws::S3
|
|
8810
9001
|
:bucket,
|
8811
9002
|
:id,
|
8812
9003
|
:inventory_configuration)
|
9004
|
+
SENSITIVE = []
|
8813
9005
|
include Aws::Structure
|
8814
9006
|
end
|
8815
9007
|
|
@@ -8882,6 +9074,7 @@ module Aws::S3
|
|
8882
9074
|
class PutBucketLifecycleConfigurationRequest < Struct.new(
|
8883
9075
|
:bucket,
|
8884
9076
|
:lifecycle_configuration)
|
9077
|
+
SENSITIVE = []
|
8885
9078
|
include Aws::Structure
|
8886
9079
|
end
|
8887
9080
|
|
@@ -8937,6 +9130,7 @@ module Aws::S3
|
|
8937
9130
|
:bucket,
|
8938
9131
|
:content_md5,
|
8939
9132
|
:lifecycle_configuration)
|
9133
|
+
SENSITIVE = []
|
8940
9134
|
include Aws::Structure
|
8941
9135
|
end
|
8942
9136
|
|
@@ -8984,6 +9178,7 @@ module Aws::S3
|
|
8984
9178
|
:bucket,
|
8985
9179
|
:bucket_logging_status,
|
8986
9180
|
:content_md5)
|
9181
|
+
SENSITIVE = []
|
8987
9182
|
include Aws::Structure
|
8988
9183
|
end
|
8989
9184
|
|
@@ -9032,6 +9227,7 @@ module Aws::S3
|
|
9032
9227
|
:bucket,
|
9033
9228
|
:id,
|
9034
9229
|
:metrics_configuration)
|
9230
|
+
SENSITIVE = []
|
9035
9231
|
include Aws::Structure
|
9036
9232
|
end
|
9037
9233
|
|
@@ -9110,6 +9306,7 @@ module Aws::S3
|
|
9110
9306
|
class PutBucketNotificationConfigurationRequest < Struct.new(
|
9111
9307
|
:bucket,
|
9112
9308
|
:notification_configuration)
|
9309
|
+
SENSITIVE = []
|
9113
9310
|
include Aws::Structure
|
9114
9311
|
end
|
9115
9312
|
|
@@ -9160,6 +9357,7 @@ module Aws::S3
|
|
9160
9357
|
:bucket,
|
9161
9358
|
:content_md5,
|
9162
9359
|
:notification_configuration)
|
9360
|
+
SENSITIVE = []
|
9163
9361
|
include Aws::Structure
|
9164
9362
|
end
|
9165
9363
|
|
@@ -9197,6 +9395,7 @@ module Aws::S3
|
|
9197
9395
|
:content_md5,
|
9198
9396
|
:confirm_remove_self_bucket_access,
|
9199
9397
|
:policy)
|
9398
|
+
SENSITIVE = []
|
9200
9399
|
include Aws::Structure
|
9201
9400
|
end
|
9202
9401
|
|
@@ -9300,6 +9499,7 @@ module Aws::S3
|
|
9300
9499
|
:content_md5,
|
9301
9500
|
:replication_configuration,
|
9302
9501
|
:token)
|
9502
|
+
SENSITIVE = []
|
9303
9503
|
include Aws::Structure
|
9304
9504
|
end
|
9305
9505
|
|
@@ -9339,6 +9539,7 @@ module Aws::S3
|
|
9339
9539
|
:bucket,
|
9340
9540
|
:content_md5,
|
9341
9541
|
:request_payment_configuration)
|
9542
|
+
SENSITIVE = []
|
9342
9543
|
include Aws::Structure
|
9343
9544
|
end
|
9344
9545
|
|
@@ -9383,6 +9584,7 @@ module Aws::S3
|
|
9383
9584
|
:bucket,
|
9384
9585
|
:content_md5,
|
9385
9586
|
:tagging)
|
9587
|
+
SENSITIVE = []
|
9386
9588
|
include Aws::Structure
|
9387
9589
|
end
|
9388
9590
|
|
@@ -9431,6 +9633,7 @@ module Aws::S3
|
|
9431
9633
|
:content_md5,
|
9432
9634
|
:mfa,
|
9433
9635
|
:versioning_configuration)
|
9636
|
+
SENSITIVE = []
|
9434
9637
|
include Aws::Structure
|
9435
9638
|
end
|
9436
9639
|
|
@@ -9494,6 +9697,7 @@ module Aws::S3
|
|
9494
9697
|
:bucket,
|
9495
9698
|
:content_md5,
|
9496
9699
|
:website_configuration)
|
9700
|
+
SENSITIVE = []
|
9497
9701
|
include Aws::Structure
|
9498
9702
|
end
|
9499
9703
|
|
@@ -9506,6 +9710,7 @@ module Aws::S3
|
|
9506
9710
|
#
|
9507
9711
|
class PutObjectAclOutput < Struct.new(
|
9508
9712
|
:request_charged)
|
9713
|
+
SENSITIVE = []
|
9509
9714
|
include Aws::Structure
|
9510
9715
|
end
|
9511
9716
|
|
@@ -9644,6 +9849,7 @@ module Aws::S3
|
|
9644
9849
|
:key,
|
9645
9850
|
:request_payer,
|
9646
9851
|
:version_id)
|
9852
|
+
SENSITIVE = []
|
9647
9853
|
include Aws::Structure
|
9648
9854
|
end
|
9649
9855
|
|
@@ -9656,6 +9862,7 @@ module Aws::S3
|
|
9656
9862
|
#
|
9657
9863
|
class PutObjectLegalHoldOutput < Struct.new(
|
9658
9864
|
:request_charged)
|
9865
|
+
SENSITIVE = []
|
9659
9866
|
include Aws::Structure
|
9660
9867
|
end
|
9661
9868
|
|
@@ -9729,6 +9936,7 @@ module Aws::S3
|
|
9729
9936
|
:request_payer,
|
9730
9937
|
:version_id,
|
9731
9938
|
:content_md5)
|
9939
|
+
SENSITIVE = []
|
9732
9940
|
include Aws::Structure
|
9733
9941
|
end
|
9734
9942
|
|
@@ -9741,6 +9949,7 @@ module Aws::S3
|
|
9741
9949
|
#
|
9742
9950
|
class PutObjectLockConfigurationOutput < Struct.new(
|
9743
9951
|
:request_charged)
|
9952
|
+
SENSITIVE = []
|
9744
9953
|
include Aws::Structure
|
9745
9954
|
end
|
9746
9955
|
|
@@ -9802,6 +10011,7 @@ module Aws::S3
|
|
9802
10011
|
:request_payer,
|
9803
10012
|
:token,
|
9804
10013
|
:content_md5)
|
10014
|
+
SENSITIVE = []
|
9805
10015
|
include Aws::Structure
|
9806
10016
|
end
|
9807
10017
|
|
@@ -9872,6 +10082,7 @@ module Aws::S3
|
|
9872
10082
|
:ssekms_key_id,
|
9873
10083
|
:ssekms_encryption_context,
|
9874
10084
|
:request_charged)
|
10085
|
+
SENSITIVE = [:ssekms_key_id, :ssekms_encryption_context]
|
9875
10086
|
include Aws::Structure
|
9876
10087
|
end
|
9877
10088
|
|
@@ -10194,6 +10405,7 @@ module Aws::S3
|
|
10194
10405
|
:object_lock_mode,
|
10195
10406
|
:object_lock_retain_until_date,
|
10196
10407
|
:object_lock_legal_hold_status)
|
10408
|
+
SENSITIVE = [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
|
10197
10409
|
include Aws::Structure
|
10198
10410
|
end
|
10199
10411
|
|
@@ -10206,6 +10418,7 @@ module Aws::S3
|
|
10206
10418
|
#
|
10207
10419
|
class PutObjectRetentionOutput < Struct.new(
|
10208
10420
|
:request_charged)
|
10421
|
+
SENSITIVE = []
|
10209
10422
|
include Aws::Structure
|
10210
10423
|
end
|
10211
10424
|
|
@@ -10288,6 +10501,7 @@ module Aws::S3
|
|
10288
10501
|
:version_id,
|
10289
10502
|
:bypass_governance_retention,
|
10290
10503
|
:content_md5)
|
10504
|
+
SENSITIVE = []
|
10291
10505
|
include Aws::Structure
|
10292
10506
|
end
|
10293
10507
|
|
@@ -10299,6 +10513,7 @@ module Aws::S3
|
|
10299
10513
|
#
|
10300
10514
|
class PutObjectTaggingOutput < Struct.new(
|
10301
10515
|
:version_id)
|
10516
|
+
SENSITIVE = []
|
10302
10517
|
include Aws::Structure
|
10303
10518
|
end
|
10304
10519
|
|
@@ -10361,6 +10576,7 @@ module Aws::S3
|
|
10361
10576
|
:version_id,
|
10362
10577
|
:content_md5,
|
10363
10578
|
:tagging)
|
10579
|
+
SENSITIVE = []
|
10364
10580
|
include Aws::Structure
|
10365
10581
|
end
|
10366
10582
|
|
@@ -10405,6 +10621,7 @@ module Aws::S3
|
|
10405
10621
|
:bucket,
|
10406
10622
|
:content_md5,
|
10407
10623
|
:public_access_block_configuration)
|
10624
|
+
SENSITIVE = []
|
10408
10625
|
include Aws::Structure
|
10409
10626
|
end
|
10410
10627
|
|
@@ -10464,6 +10681,7 @@ module Aws::S3
|
|
10464
10681
|
:queue_arn,
|
10465
10682
|
:events,
|
10466
10683
|
:filter)
|
10684
|
+
SENSITIVE = []
|
10467
10685
|
include Aws::Structure
|
10468
10686
|
end
|
10469
10687
|
|
@@ -10509,6 +10727,7 @@ module Aws::S3
|
|
10509
10727
|
:event,
|
10510
10728
|
:events,
|
10511
10729
|
:queue)
|
10730
|
+
SENSITIVE = []
|
10512
10731
|
include Aws::Structure
|
10513
10732
|
end
|
10514
10733
|
|
@@ -10523,6 +10742,7 @@ module Aws::S3
|
|
10523
10742
|
class RecordsEvent < Struct.new(
|
10524
10743
|
:payload,
|
10525
10744
|
:event_type)
|
10745
|
+
SENSITIVE = []
|
10526
10746
|
include Aws::Structure
|
10527
10747
|
end
|
10528
10748
|
|
@@ -10579,6 +10799,7 @@ module Aws::S3
|
|
10579
10799
|
:protocol,
|
10580
10800
|
:replace_key_prefix_with,
|
10581
10801
|
:replace_key_with)
|
10802
|
+
SENSITIVE = []
|
10582
10803
|
include Aws::Structure
|
10583
10804
|
end
|
10584
10805
|
|
@@ -10607,6 +10828,7 @@ module Aws::S3
|
|
10607
10828
|
class RedirectAllRequestsTo < Struct.new(
|
10608
10829
|
:host_name,
|
10609
10830
|
:protocol)
|
10831
|
+
SENSITIVE = []
|
10610
10832
|
include Aws::Structure
|
10611
10833
|
end
|
10612
10834
|
|
@@ -10700,6 +10922,7 @@ module Aws::S3
|
|
10700
10922
|
class ReplicationConfiguration < Struct.new(
|
10701
10923
|
:role,
|
10702
10924
|
:rules)
|
10925
|
+
SENSITIVE = []
|
10703
10926
|
include Aws::Structure
|
10704
10927
|
end
|
10705
10928
|
|
@@ -10858,6 +11081,7 @@ module Aws::S3
|
|
10858
11081
|
:existing_object_replication,
|
10859
11082
|
:destination,
|
10860
11083
|
:delete_marker_replication)
|
11084
|
+
SENSITIVE = []
|
10861
11085
|
include Aws::Structure
|
10862
11086
|
end
|
10863
11087
|
|
@@ -10900,6 +11124,7 @@ module Aws::S3
|
|
10900
11124
|
class ReplicationRuleAndOperator < Struct.new(
|
10901
11125
|
:prefix,
|
10902
11126
|
:tags)
|
11127
|
+
SENSITIVE = []
|
10903
11128
|
include Aws::Structure
|
10904
11129
|
end
|
10905
11130
|
|
@@ -10956,6 +11181,7 @@ module Aws::S3
|
|
10956
11181
|
:prefix,
|
10957
11182
|
:tag,
|
10958
11183
|
:and)
|
11184
|
+
SENSITIVE = []
|
10959
11185
|
include Aws::Structure
|
10960
11186
|
end
|
10961
11187
|
|
@@ -10988,6 +11214,7 @@ module Aws::S3
|
|
10988
11214
|
class ReplicationTime < Struct.new(
|
10989
11215
|
:status,
|
10990
11216
|
:time)
|
11217
|
+
SENSITIVE = []
|
10991
11218
|
include Aws::Structure
|
10992
11219
|
end
|
10993
11220
|
|
@@ -11011,6 +11238,7 @@ module Aws::S3
|
|
11011
11238
|
#
|
11012
11239
|
class ReplicationTimeValue < Struct.new(
|
11013
11240
|
:minutes)
|
11241
|
+
SENSITIVE = []
|
11014
11242
|
include Aws::Structure
|
11015
11243
|
end
|
11016
11244
|
|
@@ -11031,6 +11259,7 @@ module Aws::S3
|
|
11031
11259
|
#
|
11032
11260
|
class RequestPaymentConfiguration < Struct.new(
|
11033
11261
|
:payer)
|
11262
|
+
SENSITIVE = []
|
11034
11263
|
include Aws::Structure
|
11035
11264
|
end
|
11036
11265
|
|
@@ -11053,6 +11282,7 @@ module Aws::S3
|
|
11053
11282
|
#
|
11054
11283
|
class RequestProgress < Struct.new(
|
11055
11284
|
:enabled)
|
11285
|
+
SENSITIVE = []
|
11056
11286
|
include Aws::Structure
|
11057
11287
|
end
|
11058
11288
|
|
@@ -11071,6 +11301,7 @@ module Aws::S3
|
|
11071
11301
|
class RestoreObjectOutput < Struct.new(
|
11072
11302
|
:request_charged,
|
11073
11303
|
:restore_output_path)
|
11304
|
+
SENSITIVE = []
|
11074
11305
|
include Aws::Structure
|
11075
11306
|
end
|
11076
11307
|
|
@@ -11214,6 +11445,7 @@ module Aws::S3
|
|
11214
11445
|
:version_id,
|
11215
11446
|
:restore_request,
|
11216
11447
|
:request_payer)
|
11448
|
+
SENSITIVE = []
|
11217
11449
|
include Aws::Structure
|
11218
11450
|
end
|
11219
11451
|
|
@@ -11344,6 +11576,7 @@ module Aws::S3
|
|
11344
11576
|
:description,
|
11345
11577
|
:select_parameters,
|
11346
11578
|
:output_location)
|
11579
|
+
SENSITIVE = []
|
11347
11580
|
include Aws::Structure
|
11348
11581
|
end
|
11349
11582
|
|
@@ -11385,6 +11618,7 @@ module Aws::S3
|
|
11385
11618
|
class RoutingRule < Struct.new(
|
11386
11619
|
:condition,
|
11387
11620
|
:redirect)
|
11621
|
+
SENSITIVE = []
|
11388
11622
|
include Aws::Structure
|
11389
11623
|
end
|
11390
11624
|
|
@@ -11500,6 +11734,7 @@ module Aws::S3
|
|
11500
11734
|
:noncurrent_version_transition,
|
11501
11735
|
:noncurrent_version_expiration,
|
11502
11736
|
:abort_incomplete_multipart_upload)
|
11737
|
+
SENSITIVE = []
|
11503
11738
|
include Aws::Structure
|
11504
11739
|
end
|
11505
11740
|
|
@@ -11526,6 +11761,7 @@ module Aws::S3
|
|
11526
11761
|
#
|
11527
11762
|
class S3KeyFilter < Struct.new(
|
11528
11763
|
:filter_rules)
|
11764
|
+
SENSITIVE = []
|
11529
11765
|
include Aws::Structure
|
11530
11766
|
end
|
11531
11767
|
|
@@ -11617,6 +11853,7 @@ module Aws::S3
|
|
11617
11853
|
:tagging,
|
11618
11854
|
:user_metadata,
|
11619
11855
|
:storage_class)
|
11856
|
+
SENSITIVE = []
|
11620
11857
|
include Aws::Structure
|
11621
11858
|
end
|
11622
11859
|
|
@@ -11639,6 +11876,7 @@ module Aws::S3
|
|
11639
11876
|
#
|
11640
11877
|
class SSEKMS < Struct.new(
|
11641
11878
|
:key_id)
|
11879
|
+
SENSITIVE = [:key_id]
|
11642
11880
|
include Aws::Structure
|
11643
11881
|
end
|
11644
11882
|
|
@@ -11686,6 +11924,7 @@ module Aws::S3
|
|
11686
11924
|
class ScanRange < Struct.new(
|
11687
11925
|
:start,
|
11688
11926
|
:end)
|
11927
|
+
SENSITIVE = []
|
11689
11928
|
include Aws::Structure
|
11690
11929
|
end
|
11691
11930
|
|
@@ -11697,6 +11936,7 @@ module Aws::S3
|
|
11697
11936
|
#
|
11698
11937
|
class SelectObjectContentOutput < Struct.new(
|
11699
11938
|
:payload)
|
11939
|
+
SENSITIVE = []
|
11700
11940
|
include Aws::Structure
|
11701
11941
|
end
|
11702
11942
|
|
@@ -11855,6 +12095,7 @@ module Aws::S3
|
|
11855
12095
|
:input_serialization,
|
11856
12096
|
:output_serialization,
|
11857
12097
|
:scan_range)
|
12098
|
+
SENSITIVE = [:sse_customer_key]
|
11858
12099
|
include Aws::Structure
|
11859
12100
|
end
|
11860
12101
|
|
@@ -11920,6 +12161,7 @@ module Aws::S3
|
|
11920
12161
|
:expression_type,
|
11921
12162
|
:expression,
|
11922
12163
|
:output_serialization)
|
12164
|
+
SENSITIVE = []
|
11923
12165
|
include Aws::Structure
|
11924
12166
|
end
|
11925
12167
|
|
@@ -11977,6 +12219,7 @@ module Aws::S3
|
|
11977
12219
|
class ServerSideEncryptionByDefault < Struct.new(
|
11978
12220
|
:sse_algorithm,
|
11979
12221
|
:kms_master_key_id)
|
12222
|
+
SENSITIVE = [:kms_master_key_id]
|
11980
12223
|
include Aws::Structure
|
11981
12224
|
end
|
11982
12225
|
|
@@ -12005,6 +12248,7 @@ module Aws::S3
|
|
12005
12248
|
#
|
12006
12249
|
class ServerSideEncryptionConfiguration < Struct.new(
|
12007
12250
|
:rules)
|
12251
|
+
SENSITIVE = []
|
12008
12252
|
include Aws::Structure
|
12009
12253
|
end
|
12010
12254
|
|
@@ -12030,6 +12274,7 @@ module Aws::S3
|
|
12030
12274
|
#
|
12031
12275
|
class ServerSideEncryptionRule < Struct.new(
|
12032
12276
|
:apply_server_side_encryption_by_default)
|
12277
|
+
SENSITIVE = []
|
12033
12278
|
include Aws::Structure
|
12034
12279
|
end
|
12035
12280
|
|
@@ -12060,6 +12305,7 @@ module Aws::S3
|
|
12060
12305
|
#
|
12061
12306
|
class SourceSelectionCriteria < Struct.new(
|
12062
12307
|
:sse_kms_encrypted_objects)
|
12308
|
+
SENSITIVE = []
|
12063
12309
|
include Aws::Structure
|
12064
12310
|
end
|
12065
12311
|
|
@@ -12083,6 +12329,7 @@ module Aws::S3
|
|
12083
12329
|
#
|
12084
12330
|
class SseKmsEncryptedObjects < Struct.new(
|
12085
12331
|
:status)
|
12332
|
+
SENSITIVE = []
|
12086
12333
|
include Aws::Structure
|
12087
12334
|
end
|
12088
12335
|
|
@@ -12106,6 +12353,7 @@ module Aws::S3
|
|
12106
12353
|
:bytes_scanned,
|
12107
12354
|
:bytes_processed,
|
12108
12355
|
:bytes_returned)
|
12356
|
+
SENSITIVE = []
|
12109
12357
|
include Aws::Structure
|
12110
12358
|
end
|
12111
12359
|
|
@@ -12120,6 +12368,7 @@ module Aws::S3
|
|
12120
12368
|
class StatsEvent < Struct.new(
|
12121
12369
|
:details,
|
12122
12370
|
:event_type)
|
12371
|
+
SENSITIVE = []
|
12123
12372
|
include Aws::Structure
|
12124
12373
|
end
|
12125
12374
|
|
@@ -12153,6 +12402,7 @@ module Aws::S3
|
|
12153
12402
|
#
|
12154
12403
|
class StorageClassAnalysis < Struct.new(
|
12155
12404
|
:data_export)
|
12405
|
+
SENSITIVE = []
|
12156
12406
|
include Aws::Structure
|
12157
12407
|
end
|
12158
12408
|
|
@@ -12188,6 +12438,7 @@ module Aws::S3
|
|
12188
12438
|
class StorageClassAnalysisDataExport < Struct.new(
|
12189
12439
|
:output_schema_version,
|
12190
12440
|
:destination)
|
12441
|
+
SENSITIVE = []
|
12191
12442
|
include Aws::Structure
|
12192
12443
|
end
|
12193
12444
|
|
@@ -12214,6 +12465,7 @@ module Aws::S3
|
|
12214
12465
|
class Tag < Struct.new(
|
12215
12466
|
:key,
|
12216
12467
|
:value)
|
12468
|
+
SENSITIVE = []
|
12217
12469
|
include Aws::Structure
|
12218
12470
|
end
|
12219
12471
|
|
@@ -12239,6 +12491,7 @@ module Aws::S3
|
|
12239
12491
|
#
|
12240
12492
|
class Tagging < Struct.new(
|
12241
12493
|
:tag_set)
|
12494
|
+
SENSITIVE = []
|
12242
12495
|
include Aws::Structure
|
12243
12496
|
end
|
12244
12497
|
|
@@ -12271,6 +12524,7 @@ module Aws::S3
|
|
12271
12524
|
class TargetGrant < Struct.new(
|
12272
12525
|
:grantee,
|
12273
12526
|
:permission)
|
12527
|
+
SENSITIVE = []
|
12274
12528
|
include Aws::Structure
|
12275
12529
|
end
|
12276
12530
|
|
@@ -12336,6 +12590,7 @@ module Aws::S3
|
|
12336
12590
|
:topic_arn,
|
12337
12591
|
:events,
|
12338
12592
|
:filter)
|
12593
|
+
SENSITIVE = []
|
12339
12594
|
include Aws::Structure
|
12340
12595
|
end
|
12341
12596
|
|
@@ -12380,6 +12635,7 @@ module Aws::S3
|
|
12380
12635
|
:events,
|
12381
12636
|
:event,
|
12382
12637
|
:topic)
|
12638
|
+
SENSITIVE = []
|
12383
12639
|
include Aws::Structure
|
12384
12640
|
end
|
12385
12641
|
|
@@ -12423,6 +12679,7 @@ module Aws::S3
|
|
12423
12679
|
:date,
|
12424
12680
|
:days,
|
12425
12681
|
:storage_class)
|
12682
|
+
SENSITIVE = []
|
12426
12683
|
include Aws::Structure
|
12427
12684
|
end
|
12428
12685
|
|
@@ -12474,6 +12731,7 @@ module Aws::S3
|
|
12474
12731
|
:sse_customer_key_md5,
|
12475
12732
|
:ssekms_key_id,
|
12476
12733
|
:request_charged)
|
12734
|
+
SENSITIVE = [:ssekms_key_id]
|
12477
12735
|
include Aws::Structure
|
12478
12736
|
end
|
12479
12737
|
|
@@ -12620,6 +12878,7 @@ module Aws::S3
|
|
12620
12878
|
:copy_source_sse_customer_key,
|
12621
12879
|
:copy_source_sse_customer_key_md5,
|
12622
12880
|
:request_payer)
|
12881
|
+
SENSITIVE = [:sse_customer_key, :copy_source_sse_customer_key]
|
12623
12882
|
include Aws::Structure
|
12624
12883
|
end
|
12625
12884
|
|
@@ -12665,6 +12924,7 @@ module Aws::S3
|
|
12665
12924
|
:sse_customer_key_md5,
|
12666
12925
|
:ssekms_key_id,
|
12667
12926
|
:request_charged)
|
12927
|
+
SENSITIVE = [:ssekms_key_id]
|
12668
12928
|
include Aws::Structure
|
12669
12929
|
end
|
12670
12930
|
|
@@ -12765,6 +13025,7 @@ module Aws::S3
|
|
12765
13025
|
:sse_customer_key,
|
12766
13026
|
:sse_customer_key_md5,
|
12767
13027
|
:request_payer)
|
13028
|
+
SENSITIVE = [:sse_customer_key]
|
12768
13029
|
include Aws::Structure
|
12769
13030
|
end
|
12770
13031
|
|
@@ -12800,6 +13061,7 @@ module Aws::S3
|
|
12800
13061
|
class VersioningConfiguration < Struct.new(
|
12801
13062
|
:mfa_delete,
|
12802
13063
|
:status)
|
13064
|
+
SENSITIVE = []
|
12803
13065
|
include Aws::Structure
|
12804
13066
|
end
|
12805
13067
|
|
@@ -12863,6 +13125,7 @@ module Aws::S3
|
|
12863
13125
|
:index_document,
|
12864
13126
|
:redirect_all_requests_to,
|
12865
13127
|
:routing_rules)
|
13128
|
+
SENSITIVE = []
|
12866
13129
|
include Aws::Structure
|
12867
13130
|
end
|
12868
13131
|
|