aws-sdk-macie 1.14.0 → 1.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 12c663bcd7f39a42d853db370492ba84e28f04ce
4
- data.tar.gz: 5d882c69cb99a7500b39d5e3187f95b0517ef67e
2
+ SHA256:
3
+ metadata.gz: 49d57b471ae5bfd189fc32491a4e72b4d761a3b05a2c74d17a90642deef3c373
4
+ data.tar.gz: 0a1a5c9c94e4e8c2e0d079e7bdf963ed49af59a6a9e7ce6691bb3b7518d93848
5
5
  SHA512:
6
- metadata.gz: f80f65e400c26d0f5ca364fef18949e29ee9083307f3e576c168c154a74d8cff10738a2aec926e33c6e455f6d3a9955b018a50a6164473554efb0ffdeced23a4
7
- data.tar.gz: '09582f84b1e5f442aab453b9810449b325a356a70282dd412676a0c17a346103ea8202bfced2364700c20bf8e7a04ed55ba13322f852e0aebfd385581946e62b'
6
+ metadata.gz: a32ba1642e78e3981f0bb78f57887ef6788deb9c01613f76e07b4dae321963b28ea30a178fc23d617aa115691d16d8cd90aeb94649850eef8fce0c9894736de6
7
+ data.tar.gz: 92ad872e241fac99beddd444568cc5472e804055a3542edb0a0b85a882d4fa7639623d272dbbe02a94998108c664cf9f6cffec29bb6292aa0c107cedd3b3cfa0
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-macie/customizations'
24
24
  # methods each accept a hash of request parameters and return a response
25
25
  # structure.
26
26
  #
27
+ # macie = Aws::Macie::Client.new
28
+ # resp = macie.associate_member_account(params)
29
+ #
27
30
  # See {Client} for more information.
28
31
  #
29
32
  # # Errors
30
33
  #
31
- # Errors returned from Amazon Macie all
32
- # extend {Errors::ServiceError}.
34
+ # Errors returned from Amazon Macie are defined in the
35
+ # {Errors} module and all extend {Errors::ServiceError}.
33
36
  #
34
37
  # begin
35
38
  # # do stuff
36
39
  # rescue Aws::Macie::Errors::ServiceError
37
- # # rescues all service API errors
40
+ # # rescues all Amazon Macie API errors
38
41
  # end
39
42
  #
40
43
  # See {Errors} for more information.
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-macie/customizations'
42
45
  # @service
43
46
  module Aws::Macie
44
47
 
45
- GEM_VERSION = '1.14.0'
48
+ GEM_VERSION = '1.19.0'
46
49
 
47
50
  end
@@ -30,6 +30,18 @@ require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
30
30
  Aws::Plugins::GlobalConfiguration.add_identifier(:macie)
31
31
 
32
32
  module Aws::Macie
33
+ # An API client for Macie. To construct a client, you need to configure a `:region` and `:credentials`.
34
+ #
35
+ # client = Aws::Macie::Client.new(
36
+ # region: region_name,
37
+ # credentials: credentials,
38
+ # # ...
39
+ # )
40
+ #
41
+ # For details on configuring region and credentials see
42
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
43
+ #
44
+ # See {#initialize} for a full list of supported configuration options.
33
45
  class Client < Seahorse::Client::Base
34
46
 
35
47
  include Aws::ClientStubs
@@ -93,7 +105,7 @@ module Aws::Macie
93
105
  # @option options [required, String] :region
94
106
  # The AWS region to connect to. The configured `:region` is
95
107
  # used to determine the service `:endpoint`. When not passed,
96
- # a default `:region` is search for in the following locations:
108
+ # a default `:region` is searched for in the following locations:
97
109
  #
98
110
  # * `Aws.config[:region]`
99
111
  # * `ENV['AWS_REGION']`
@@ -108,6 +120,12 @@ module Aws::Macie
108
120
  # When set to `true`, a thread polling for endpoints will be running in
109
121
  # the background every 60 secs (default). Defaults to `false`.
110
122
  #
123
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
124
+ # Used only in `adaptive` retry mode. When true, the request will sleep
125
+ # until there is sufficent client side capacity to retry the request.
126
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
127
+ # not retry instead of sleeping.
128
+ #
111
129
  # @option options [Boolean] :client_side_monitoring (false)
112
130
  # When `true`, client-side metrics will be collected for all API requests from
113
131
  # this client.
@@ -132,6 +150,10 @@ module Aws::Macie
132
150
  # When `true`, an attempt is made to coerce request parameters into
133
151
  # the required types.
134
152
  #
153
+ # @option options [Boolean] :correct_clock_skew (true)
154
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
155
+ # a clock skew correction and retry requests with skewed client clocks.
156
+ #
135
157
  # @option options [Boolean] :disable_host_prefix_injection (false)
136
158
  # Set to true to disable SDK automatically adding host prefix
137
159
  # to default service endpoint when available.
@@ -139,7 +161,7 @@ module Aws::Macie
139
161
  # @option options [String] :endpoint
140
162
  # The client endpoint is normally constructed from the `:region`
141
163
  # option. You should only configure an `:endpoint` when connecting
142
- # to test endpoints. This should be avalid HTTP(S) URI.
164
+ # to test endpoints. This should be a valid HTTP(S) URI.
143
165
  #
144
166
  # @option options [Integer] :endpoint_cache_max_entries (1000)
145
167
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -166,15 +188,29 @@ module Aws::Macie
166
188
  # The Logger instance to send log messages to. If this option
167
189
  # is not set, logging will be disabled.
168
190
  #
191
+ # @option options [Integer] :max_attempts (3)
192
+ # An integer representing the maximum number attempts that will be made for
193
+ # a single request, including the initial attempt. For example,
194
+ # setting this value to 5 will result in a request being retried up to
195
+ # 4 times. Used in `standard` and `adaptive` retry modes.
196
+ #
169
197
  # @option options [String] :profile ("default")
170
198
  # Used when loading credentials from the shared credentials file
171
199
  # at HOME/.aws/credentials. When not specified, 'default' is used.
172
200
  #
201
+ # @option options [Proc] :retry_backoff
202
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
203
+ # This option is only used in the `legacy` retry mode.
204
+ #
173
205
  # @option options [Float] :retry_base_delay (0.3)
174
- # The base delay in seconds used by the default backoff function.
206
+ # The base delay in seconds used by the default backoff function. This option
207
+ # is only used in the `legacy` retry mode.
175
208
  #
176
209
  # @option options [Symbol] :retry_jitter (:none)
177
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
210
+ # A delay randomiser function used by the default backoff function.
211
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
212
+ # otherwise a Proc that takes and returns a number. This option is only used
213
+ # in the `legacy` retry mode.
178
214
  #
179
215
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
180
216
  #
@@ -182,11 +218,30 @@ module Aws::Macie
182
218
  # The maximum number of times to retry failed requests. Only
183
219
  # ~ 500 level server errors and certain ~ 400 level client errors
184
220
  # are retried. Generally, these are throttling errors, data
185
- # checksum errors, networking errors, timeout errors and auth
186
- # errors from expired credentials.
221
+ # checksum errors, networking errors, timeout errors, auth errors,
222
+ # endpoint discovery, and errors from expired credentials.
223
+ # This option is only used in the `legacy` retry mode.
187
224
  #
188
225
  # @option options [Integer] :retry_max_delay (0)
189
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
226
+ # The maximum number of seconds to delay between retries (0 for no limit)
227
+ # used by the default backoff function. This option is only used in the
228
+ # `legacy` retry mode.
229
+ #
230
+ # @option options [String] :retry_mode ("legacy")
231
+ # Specifies which retry algorithm to use. Values are:
232
+ #
233
+ # * `legacy` - The pre-existing retry behavior. This is default value if
234
+ # no retry mode is provided.
235
+ #
236
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
237
+ # This includes support for retry quotas, which limit the number of
238
+ # unsuccessful retries a client can make.
239
+ #
240
+ # * `adaptive` - An experimental retry mode that includes all the
241
+ # functionality of `standard` mode along with automatic client side
242
+ # throttling. This is a provisional mode that may change behavior
243
+ # in the future.
244
+ #
190
245
  #
191
246
  # @option options [String] :secret_access_key
192
247
  #
@@ -219,16 +274,15 @@ module Aws::Macie
219
274
  # requests through. Formatted like 'http://proxy.com:123'.
220
275
  #
221
276
  # @option options [Float] :http_open_timeout (15) The number of
222
- # seconds to wait when opening a HTTP session before rasing a
277
+ # seconds to wait when opening a HTTP session before raising a
223
278
  # `Timeout::Error`.
224
279
  #
225
280
  # @option options [Integer] :http_read_timeout (60) The default
226
281
  # number of seconds to wait for response data. This value can
227
- # safely be set
228
- # per-request on the session yeidled by {#session_for}.
282
+ # safely be set per-request on the session.
229
283
  #
230
284
  # @option options [Float] :http_idle_timeout (5) The number of
231
- # seconds a connection is allowed to sit idble before it is
285
+ # seconds a connection is allowed to sit idle before it is
232
286
  # considered stale. Stale connections are closed and removed
233
287
  # from the pool before making a request.
234
288
  #
@@ -237,7 +291,7 @@ module Aws::Macie
237
291
  # request body. This option has no effect unless the request has
238
292
  # "Expect" header set to "100-continue". Defaults to `nil` which
239
293
  # disables this behaviour. This value can safely be set per
240
- # request on the session yeidled by {#session_for}.
294
+ # request on the session.
241
295
  #
242
296
  # @option options [Boolean] :http_wire_trace (false) When `true`,
243
297
  # HTTP debug output will be sent to the `:logger`.
@@ -264,12 +318,12 @@ module Aws::Macie
264
318
 
265
319
  # @!group API Operations
266
320
 
267
- # Associates a specified AWS account with Amazon Macie as a member
268
- # account.
321
+ # Associates a specified AWS account with Amazon Macie Classic as a
322
+ # member account.
269
323
  #
270
324
  # @option params [required, String] :member_account_id
271
325
  # The ID of the AWS account that you want to associate with Amazon Macie
272
- # as a member account.
326
+ # Classic as a member account.
273
327
  #
274
328
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
275
329
  #
@@ -288,19 +342,20 @@ module Aws::Macie
288
342
  req.send_request(options)
289
343
  end
290
344
 
291
- # Associates specified S3 resources with Amazon Macie for monitoring and
292
- # data classification. If memberAccountId isn't specified, the action
293
- # associates specified S3 resources with Macie for the current master
294
- # account. If memberAccountId is specified, the action associates
295
- # specified S3 resources with Macie for the specified member account.
345
+ # Associates specified S3 resources with Amazon Macie Classic for
346
+ # monitoring and data classification. If memberAccountId isn't
347
+ # specified, the action associates specified S3 resources with Macie
348
+ # Classic for the current master account. If memberAccountId is
349
+ # specified, the action associates specified S3 resources with Macie
350
+ # Classic for the specified member account.
296
351
  #
297
352
  # @option params [String] :member_account_id
298
- # The ID of the Amazon Macie member account whose resources you want to
299
- # associate with Macie.
353
+ # The ID of the Amazon Macie Classic member account whose resources you
354
+ # want to associate with Macie Classic.
300
355
  #
301
356
  # @option params [required, Array<Types::S3ResourceClassification>] :s3_resources
302
- # The S3 resources that you want to associate with Amazon Macie for
303
- # monitoring and data classification.
357
+ # The S3 resources that you want to associate with Amazon Macie Classic
358
+ # for monitoring and data classification.
304
359
  #
305
360
  # @return [Types::AssociateS3ResourcesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
306
361
  #
@@ -339,11 +394,11 @@ module Aws::Macie
339
394
  req.send_request(options)
340
395
  end
341
396
 
342
- # Removes the specified member account from Amazon Macie.
397
+ # Removes the specified member account from Amazon Macie Classic.
343
398
  #
344
399
  # @option params [required, String] :member_account_id
345
- # The ID of the member account that you want to remove from Amazon
346
- # Macie.
400
+ # The ID of the member account that you want to remove from Amazon Macie
401
+ # Classic.
347
402
  #
348
403
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
349
404
  #
@@ -362,19 +417,19 @@ module Aws::Macie
362
417
  req.send_request(options)
363
418
  end
364
419
 
365
- # Removes specified S3 resources from being monitored by Amazon Macie.
366
- # If memberAccountId isn't specified, the action removes specified S3
367
- # resources from Macie for the current master account. If
368
- # memberAccountId is specified, the action removes specified S3
369
- # resources from Macie for the specified member account.
420
+ # Removes specified S3 resources from being monitored by Amazon Macie
421
+ # Classic. If memberAccountId isn't specified, the action removes
422
+ # specified S3 resources from Macie Classic for the current master
423
+ # account. If memberAccountId is specified, the action removes specified
424
+ # S3 resources from Macie Classic for the specified member account.
370
425
  #
371
426
  # @option params [String] :member_account_id
372
- # The ID of the Amazon Macie member account whose resources you want to
373
- # remove from being monitored by Amazon Macie.
427
+ # The ID of the Amazon Macie Classic member account whose resources you
428
+ # want to remove from being monitored by Amazon Macie Classic.
374
429
  #
375
430
  # @option params [required, Array<Types::S3Resource>] :associated_s3_resources
376
431
  # The S3 resources (buckets or prefixes) that you want to remove from
377
- # being monitored and classified by Amazon Macie.
432
+ # being monitored and classified by Amazon Macie Classic.
378
433
  #
379
434
  # @return [Types::DisassociateS3ResourcesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
380
435
  #
@@ -409,8 +464,8 @@ module Aws::Macie
409
464
  req.send_request(options)
410
465
  end
411
466
 
412
- # Lists all Amazon Macie member accounts for the current Amazon Macie
413
- # master account.
467
+ # Lists all Amazon Macie Classic member accounts for the current Amazon
468
+ # Macie Classic master account.
414
469
  #
415
470
  # @option params [String] :next_token
416
471
  # Use this parameter when paginating results. Set the value of this
@@ -428,6 +483,8 @@ module Aws::Macie
428
483
  # * {Types::ListMemberAccountsResult#member_accounts #member_accounts} => Array&lt;Types::MemberAccount&gt;
429
484
  # * {Types::ListMemberAccountsResult#next_token #next_token} => String
430
485
  #
486
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
487
+ #
431
488
  # @example Request syntax with placeholder values
432
489
  #
433
490
  # resp = client.list_member_accounts({
@@ -450,15 +507,15 @@ module Aws::Macie
450
507
  req.send_request(options)
451
508
  end
452
509
 
453
- # Lists all the S3 resources associated with Amazon Macie. If
510
+ # Lists all the S3 resources associated with Amazon Macie Classic. If
454
511
  # memberAccountId isn't specified, the action lists the S3 resources
455
- # associated with Amazon Macie for the current master account. If
456
- # memberAccountId is specified, the action lists the S3 resources
457
- # associated with Amazon Macie for the specified member account.
512
+ # associated with Amazon Macie Classic for the current master account.
513
+ # If memberAccountId is specified, the action lists the S3 resources
514
+ # associated with Amazon Macie Classic for the specified member account.
458
515
  #
459
516
  # @option params [String] :member_account_id
460
- # The Amazon Macie member account ID whose associated S3 resources you
461
- # want to list.
517
+ # The Amazon Macie Classic member account ID whose associated S3
518
+ # resources you want to list.
462
519
  #
463
520
  # @option params [String] :next_token
464
521
  # Use this parameter when paginating results. Set its value to null on
@@ -475,6 +532,8 @@ module Aws::Macie
475
532
  # * {Types::ListS3ResourcesResult#s3_resources #s3_resources} => Array&lt;Types::S3ResourceClassification&gt;
476
533
  # * {Types::ListS3ResourcesResult#next_token #next_token} => String
477
534
  #
535
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
536
+ #
478
537
  # @example Request syntax with placeholder values
479
538
  #
480
539
  # resp = client.list_s3_resources({
@@ -504,13 +563,14 @@ module Aws::Macie
504
563
  # Updates the classification types for the specified S3 resources. If
505
564
  # memberAccountId isn't specified, the action updates the
506
565
  # classification types of the S3 resources associated with Amazon Macie
507
- # for the current master account. If memberAccountId is specified, the
508
- # action updates the classification types of the S3 resources associated
509
- # with Amazon Macie for the specified member account.
566
+ # Classic for the current master account. If memberAccountId is
567
+ # specified, the action updates the classification types of the S3
568
+ # resources associated with Amazon Macie Classic for the specified
569
+ # member account.
510
570
  #
511
571
  # @option params [String] :member_account_id
512
- # The AWS ID of the Amazon Macie member account whose S3 resources'
513
- # classification types you want to update.
572
+ # The AWS ID of the Amazon Macie Classic member account whose S3
573
+ # resources' classification types you want to update.
514
574
  #
515
575
  # @option params [required, Array<Types::S3ResourceClassificationUpdate>] :s3_resources_update
516
576
  # The S3 resources whose classification types you want to update.
@@ -565,7 +625,7 @@ module Aws::Macie
565
625
  params: params,
566
626
  config: config)
567
627
  context[:gem_name] = 'aws-sdk-macie'
568
- context[:gem_version] = '1.14.0'
628
+ context[:gem_version] = '1.19.0'
569
629
  Seahorse::Client::Request.new(handlers, context)
570
630
  end
571
631
 
@@ -6,6 +6,32 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::Macie
9
+
10
+ # When Macie returns an error response, the Ruby SDK constructs and raises an error.
11
+ # These errors all extend Aws::Macie::Errors::ServiceError < {Aws::Errors::ServiceError}
12
+ #
13
+ # You can rescue all Macie errors using ServiceError:
14
+ #
15
+ # begin
16
+ # # do stuff
17
+ # rescue Aws::Macie::Errors::ServiceError
18
+ # # rescues all Macie API errors
19
+ # end
20
+ #
21
+ #
22
+ # ## Request Context
23
+ # ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
24
+ # information about the request that generated the error.
25
+ # See {Seahorse::Client::RequestContext} for more information.
26
+ #
27
+ # ## Error Classes
28
+ # * {AccessDeniedException}
29
+ # * {InternalException}
30
+ # * {InvalidInputException}
31
+ # * {LimitExceededException}
32
+ #
33
+ # Additionally, error classes are dynamically generated for service errors based on the error code
34
+ # if they are not defined above.
9
35
  module Errors
10
36
 
11
37
  extend Aws::Errors::DynamicErrors
@@ -28,7 +54,6 @@ module Aws::Macie
28
54
  def resource_type
29
55
  @data[:resource_type]
30
56
  end
31
-
32
57
  end
33
58
 
34
59
  class InternalException < ServiceError
@@ -49,7 +74,6 @@ module Aws::Macie
49
74
  def message
50
75
  @message || @data[:message]
51
76
  end
52
-
53
77
  end
54
78
 
55
79
  class InvalidInputException < ServiceError
@@ -75,7 +99,6 @@ module Aws::Macie
75
99
  def field_name
76
100
  @data[:field_name]
77
101
  end
78
-
79
102
  end
80
103
 
81
104
  class LimitExceededException < ServiceError
@@ -101,7 +124,6 @@ module Aws::Macie
101
124
  def resource_type
102
125
  @data[:resource_type]
103
126
  end
104
-
105
127
  end
106
128
 
107
129
  end
@@ -6,6 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::Macie
9
+
9
10
  class Resource
10
11
 
11
12
  # @param options ({})
@@ -34,7 +34,7 @@ module Aws::Macie
34
34
  #
35
35
  # @!attribute [rw] member_account_id
36
36
  # The ID of the AWS account that you want to associate with Amazon
37
- # Macie as a member account.
37
+ # Macie Classic as a member account.
38
38
  # @return [String]
39
39
  #
40
40
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/AssociateMemberAccountRequest AWS API Documentation
@@ -62,13 +62,13 @@ module Aws::Macie
62
62
  # }
63
63
  #
64
64
  # @!attribute [rw] member_account_id
65
- # The ID of the Amazon Macie member account whose resources you want
66
- # to associate with Macie.
65
+ # The ID of the Amazon Macie Classic member account whose resources
66
+ # you want to associate with Macie Classic.
67
67
  # @return [String]
68
68
  #
69
69
  # @!attribute [rw] s3_resources
70
- # The S3 resources that you want to associate with Amazon Macie for
71
- # monitoring and data classification.
70
+ # The S3 resources that you want to associate with Amazon Macie
71
+ # Classic for monitoring and data classification.
72
72
  # @return [Array<Types::S3ResourceClassification>]
73
73
  #
74
74
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/AssociateS3ResourcesRequest AWS API Documentation
@@ -80,8 +80,9 @@ module Aws::Macie
80
80
  end
81
81
 
82
82
  # @!attribute [rw] failed_s3_resources
83
- # S3 resources that couldn't be associated with Amazon Macie. An
84
- # error code and an error message are provided for each failed item.
83
+ # S3 resources that couldn't be associated with Amazon Macie Classic.
84
+ # An error code and an error message are provided for each failed
85
+ # item.
85
86
  # @return [Array<Types::FailedS3Resource>]
86
87
  #
87
88
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/AssociateS3ResourcesResult AWS API Documentation
@@ -91,8 +92,8 @@ module Aws::Macie
91
92
  include Aws::Structure
92
93
  end
93
94
 
94
- # The classification type that Amazon Macie applies to the associated S3
95
- # resources.
95
+ # The classification type that Amazon Macie Classic applies to the
96
+ # associated S3 resources.
96
97
  #
97
98
  # @note When making an API call, you may pass ClassificationType
98
99
  # data as a hash:
@@ -109,9 +110,9 @@ module Aws::Macie
109
110
  #
110
111
  # @!attribute [rw] continuous
111
112
  # A continuous classification of the objects that are added to a
112
- # specified S3 bucket. Amazon Macie begins performing continuous
113
- # classification after a bucket is successfully associated with Amazon
114
- # Macie.
113
+ # specified S3 bucket. Amazon Macie Classic begins performing
114
+ # continuous classification after a bucket is successfully associated
115
+ # with Amazon Macie Classic.
115
116
  # @return [String]
116
117
  #
117
118
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/ClassificationType AWS API Documentation
@@ -122,9 +123,9 @@ module Aws::Macie
122
123
  include Aws::Structure
123
124
  end
124
125
 
125
- # The classification type that Amazon Macie applies to the associated S3
126
- # resources. At least one of the classification types (oneTime or
127
- # continuous) must be specified.
126
+ # The classification type that Amazon Macie Classic applies to the
127
+ # associated S3 resources. At least one of the classification types
128
+ # (oneTime or continuous) must be specified.
128
129
  #
129
130
  # @note When making an API call, you may pass ClassificationTypeUpdate
130
131
  # data as a hash:
@@ -141,9 +142,9 @@ module Aws::Macie
141
142
  #
142
143
  # @!attribute [rw] continuous
143
144
  # A continuous classification of the objects that are added to a
144
- # specified S3 bucket. Amazon Macie begins performing continuous
145
- # classification after a bucket is successfully associated with Amazon
146
- # Macie.
145
+ # specified S3 bucket. Amazon Macie Classic begins performing
146
+ # continuous classification after a bucket is successfully associated
147
+ # with Amazon Macie Classic.
147
148
  # @return [String]
148
149
  #
149
150
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/ClassificationTypeUpdate AWS API Documentation
@@ -163,7 +164,7 @@ module Aws::Macie
163
164
  #
164
165
  # @!attribute [rw] member_account_id
165
166
  # The ID of the member account that you want to remove from Amazon
166
- # Macie.
167
+ # Macie Classic.
167
168
  # @return [String]
168
169
  #
169
170
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/DisassociateMemberAccountRequest AWS API Documentation
@@ -187,13 +188,13 @@ module Aws::Macie
187
188
  # }
188
189
  #
189
190
  # @!attribute [rw] member_account_id
190
- # The ID of the Amazon Macie member account whose resources you want
191
- # to remove from being monitored by Amazon Macie.
191
+ # The ID of the Amazon Macie Classic member account whose resources
192
+ # you want to remove from being monitored by Amazon Macie Classic.
192
193
  # @return [String]
193
194
  #
194
195
  # @!attribute [rw] associated_s3_resources
195
196
  # The S3 resources (buckets or prefixes) that you want to remove from
196
- # being monitored and classified by Amazon Macie.
197
+ # being monitored and classified by Amazon Macie Classic.
197
198
  # @return [Array<Types::S3Resource>]
198
199
  #
199
200
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/DisassociateS3ResourcesRequest AWS API Documentation
@@ -206,8 +207,8 @@ module Aws::Macie
206
207
 
207
208
  # @!attribute [rw] failed_s3_resources
208
209
  # S3 resources that couldn't be removed from being monitored and
209
- # classified by Amazon Macie. An error code and an error message are
210
- # provided for each failed item.
210
+ # classified by Amazon Macie Classic. An error code and an error
211
+ # message are provided for each failed item.
211
212
  # @return [Array<Types::FailedS3Resource>]
212
213
  #
213
214
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/DisassociateS3ResourcesResult AWS API Documentation
@@ -334,8 +335,8 @@ module Aws::Macie
334
335
  end
335
336
 
336
337
  # @!attribute [rw] member_accounts
337
- # A list of the Amazon Macie member accounts returned by the action.
338
- # The current master account is also included in this list.
338
+ # A list of the Amazon Macie Classic member accounts returned by the
339
+ # action. The current master account is also included in this list.
339
340
  # @return [Array<Types::MemberAccount>]
340
341
  #
341
342
  # @!attribute [rw] next_token
@@ -364,8 +365,8 @@ module Aws::Macie
364
365
  # }
365
366
  #
366
367
  # @!attribute [rw] member_account_id
367
- # The Amazon Macie member account ID whose associated S3 resources you
368
- # want to list.
368
+ # The Amazon Macie Classic member account ID whose associated S3
369
+ # resources you want to list.
369
370
  # @return [String]
370
371
  #
371
372
  # @!attribute [rw] next_token
@@ -409,10 +410,10 @@ module Aws::Macie
409
410
  include Aws::Structure
410
411
  end
411
412
 
412
- # Contains information about the Amazon Macie member account.
413
+ # Contains information about the Amazon Macie Classic member account.
413
414
  #
414
415
  # @!attribute [rw] account_id
415
- # The AWS account ID of the Amazon Macie member account.
416
+ # The AWS account ID of the Amazon Macie Classic member account.
416
417
  # @return [String]
417
418
  #
418
419
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/MemberAccount AWS API Documentation
@@ -451,8 +452,8 @@ module Aws::Macie
451
452
  include Aws::Structure
452
453
  end
453
454
 
454
- # The S3 resources that you want to associate with Amazon Macie for
455
- # monitoring and data classification. This data type is used as a
455
+ # The S3 resources that you want to associate with Amazon Macie Classic
456
+ # for monitoring and data classification. This data type is used as a
456
457
  # request parameter in the AssociateS3Resources action and a response
457
458
  # parameter in the ListS3Resources action.
458
459
  #
@@ -470,17 +471,17 @@ module Aws::Macie
470
471
  #
471
472
  # @!attribute [rw] bucket_name
472
473
  # The name of the S3 bucket that you want to associate with Amazon
473
- # Macie.
474
+ # Macie Classic.
474
475
  # @return [String]
475
476
  #
476
477
  # @!attribute [rw] prefix
477
478
  # The prefix of the S3 bucket that you want to associate with Amazon
478
- # Macie.
479
+ # Macie Classic.
479
480
  # @return [String]
480
481
  #
481
482
  # @!attribute [rw] classification_type
482
483
  # The classification type that you want to specify for the resource
483
- # associated with Amazon Macie.
484
+ # associated with Amazon Macie Classic.
484
485
  # @return [Types::ClassificationType]
485
486
  #
486
487
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/S3ResourceClassification AWS API Documentation
@@ -520,7 +521,7 @@ module Aws::Macie
520
521
  #
521
522
  # @!attribute [rw] classification_type_update
522
523
  # The classification type that you want to update for the resource
523
- # associated with Amazon Macie.
524
+ # associated with Amazon Macie Classic.
524
525
  # @return [Types::ClassificationTypeUpdate]
525
526
  #
526
527
  # @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/S3ResourceClassificationUpdate AWS API Documentation
@@ -550,8 +551,8 @@ module Aws::Macie
550
551
  # }
551
552
  #
552
553
  # @!attribute [rw] member_account_id
553
- # The AWS ID of the Amazon Macie member account whose S3 resources'
554
- # classification types you want to update.
554
+ # The AWS ID of the Amazon Macie Classic member account whose S3
555
+ # resources' classification types you want to update.
555
556
  # @return [String]
556
557
  #
557
558
  # @!attribute [rw] s3_resources_update
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-macie
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-01 00:00:00.000000000 Z
11
+ date: 2020-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.58.0
22
+ version: 3.71.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.58.0
32
+ version: 3.71.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - Amazon Macie