aws-sdk-macie 1.39.0 → 1.41.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 04d88bd5d66fb45a3fd487f8183af0bb2a1acaaf80ae1e8b83c832245737d59a
4
- data.tar.gz: 23097538bf5a42f2666c4093e1aa779ff9eeec8bdf4e3a38a6d8380170f34263
3
+ metadata.gz: 471b23df2f69ca4394f195b56821e651448448112b146bcb23bafd9f04c6789c
4
+ data.tar.gz: 1e1ae41d7198e06a598842d78e1c5cd7a7d0e31a6000a34d1ecbe10829658aff
5
5
  SHA512:
6
- metadata.gz: 055773d45f818942c0a7fe696e6ca0ebe1a18dbe505488ca2c75609bd6ea448fa59fc23bd943c5af25327a9b03a749d74c9589f255943dcefcb9fce1d70ce428
7
- data.tar.gz: 1df165faf0e7109da0631ec9bbe453b78f11da0b249a3c4a7e4153547e548307ad5f81f02de5c172b662bfc0dc52d0396f908d04aa9da80db877f05eab3289b3
6
+ metadata.gz: 249dffaf3763f54add71573ecc6a0bd8e7c35eb5cb8826675afcfcce5a052876760d2cd08c26a044f139e9913c0d0eea6958b63edd022965f218baa8abfb6073
7
+ data.tar.gz: 8fabbf22d25269d29b8e568c3acf1bb5a473e77238ba17e51c02388f7bf72807951791427bb075dcdb36ef146b854c0f452377a8f8402d56028de515ac529213
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.40.0 (2023-01-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
15
+
4
16
  1.39.0 (2022-10-25)
5
17
  ------------------
6
18
 
@@ -205,4 +217,4 @@ Unreleased Changes
205
217
  1.0.0 (2018-06-21)
206
218
  ------------------
207
219
 
208
- * Feature - Initial release of `aws-sdk-macie`.
220
+ * Feature - Initial release of `aws-sdk-macie`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.41.0
@@ -275,6 +275,11 @@ module Aws::Macie
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -691,7 +696,7 @@ module Aws::Macie
691
696
  params: params,
692
697
  config: config)
693
698
  context[:gem_name] = 'aws-sdk-macie'
694
- context[:gem_version] = '1.39.0'
699
+ context[:gem_version] = '1.41.0'
695
700
  Seahorse::Client::Request.new(handlers, context)
696
701
  end
697
702
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::Macie
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://macie-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://macie-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://macie.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://macie.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL21hY2llLWZpcHMue1JlZ2lvbn0ue1BhcnRp
77
- dGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6
78
- e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRp
79
- dGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUgZW5h
80
- YmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgb25l
81
- IG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3si
82
- Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9
83
- LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
84
- Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJn
85
- ZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1
86
- cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
87
- ZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
88
- bnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL21hY2llLWZpcHMu
89
- e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVy
90
- dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
91
- LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1
92
- dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBl
93
- IjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1
94
- YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwi
95
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJi
96
- b29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJh
97
- cmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFs
98
- U3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
99
- bnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL21hY2llLntSZWdp
100
- b259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInBy
101
- b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
102
- XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5h
103
- YmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFs
104
- U3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVu
105
- ZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vbWFjaWUue1JlZ2lvbn0ue1BhcnRp
106
- dGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRl
107
- cnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -29,13 +29,6 @@ module Aws::Macie
29
29
  include Aws::Structure
30
30
  end
31
31
 
32
- # @note When making an API call, you may pass AssociateMemberAccountRequest
33
- # data as a hash:
34
- #
35
- # {
36
- # member_account_id: "AWSAccountId", # required
37
- # }
38
- #
39
32
  # @!attribute [rw] member_account_id
40
33
  # (Discontinued) The ID of the Amazon Web Services account that you
41
34
  # want to associate with Amazon Macie Classic as a member account.
@@ -49,23 +42,6 @@ module Aws::Macie
49
42
  include Aws::Structure
50
43
  end
51
44
 
52
- # @note When making an API call, you may pass AssociateS3ResourcesRequest
53
- # data as a hash:
54
- #
55
- # {
56
- # member_account_id: "AWSAccountId",
57
- # s3_resources: [ # required
58
- # {
59
- # bucket_name: "BucketName", # required
60
- # prefix: "Prefix",
61
- # classification_type: { # required
62
- # one_time: "FULL", # required, accepts FULL, NONE
63
- # continuous: "FULL", # required, accepts FULL
64
- # },
65
- # },
66
- # ],
67
- # }
68
- #
69
45
  # @!attribute [rw] member_account_id
70
46
  # (Discontinued) The ID of the Amazon Macie Classic member account
71
47
  # whose resources you want to associate with Macie Classic.
@@ -102,14 +78,6 @@ module Aws::Macie
102
78
  # (Discontinued) The classification type that Amazon Macie Classic
103
79
  # applies to the associated S3 resources.
104
80
  #
105
- # @note When making an API call, you may pass ClassificationType
106
- # data as a hash:
107
- #
108
- # {
109
- # one_time: "FULL", # required, accepts FULL, NONE
110
- # continuous: "FULL", # required, accepts FULL
111
- # }
112
- #
113
81
  # @!attribute [rw] one_time
114
82
  # (Discontinued) A one-time classification of all of the existing
115
83
  # objects in a specified S3 bucket.
@@ -135,14 +103,6 @@ module Aws::Macie
135
103
  # applies to the associated S3 resources. At least one of the
136
104
  # classification types (`oneTime` or `continuous`) must be specified.
137
105
  #
138
- # @note When making an API call, you may pass ClassificationTypeUpdate
139
- # data as a hash:
140
- #
141
- # {
142
- # one_time: "FULL", # accepts FULL, NONE
143
- # continuous: "FULL", # accepts FULL
144
- # }
145
- #
146
106
  # @!attribute [rw] one_time
147
107
  # (Discontinued) A one-time classification of all of the existing
148
108
  # objects in a specified S3 bucket.
@@ -164,13 +124,6 @@ module Aws::Macie
164
124
  include Aws::Structure
165
125
  end
166
126
 
167
- # @note When making an API call, you may pass DisassociateMemberAccountRequest
168
- # data as a hash:
169
- #
170
- # {
171
- # member_account_id: "AWSAccountId", # required
172
- # }
173
- #
174
127
  # @!attribute [rw] member_account_id
175
128
  # (Discontinued) The ID of the member account that you want to remove
176
129
  # from Amazon Macie Classic.
@@ -184,19 +137,6 @@ module Aws::Macie
184
137
  include Aws::Structure
185
138
  end
186
139
 
187
- # @note When making an API call, you may pass DisassociateS3ResourcesRequest
188
- # data as a hash:
189
- #
190
- # {
191
- # member_account_id: "AWSAccountId",
192
- # associated_s3_resources: [ # required
193
- # {
194
- # bucket_name: "BucketName", # required
195
- # prefix: "Prefix",
196
- # },
197
- # ],
198
- # }
199
- #
200
140
  # @!attribute [rw] member_account_id
201
141
  # (Discontinued) The ID of the Amazon Macie Classic member account
202
142
  # whose resources you want to remove from being monitored by Macie
@@ -323,14 +263,6 @@ module Aws::Macie
323
263
  include Aws::Structure
324
264
  end
325
265
 
326
- # @note When making an API call, you may pass ListMemberAccountsRequest
327
- # data as a hash:
328
- #
329
- # {
330
- # next_token: "NextToken",
331
- # max_results: 1,
332
- # }
333
- #
334
266
  # @!attribute [rw] next_token
335
267
  # (Discontinued) Use this parameter when paginating results. Set the
336
268
  # value of this parameter to null on your first call to the
@@ -376,15 +308,6 @@ module Aws::Macie
376
308
  include Aws::Structure
377
309
  end
378
310
 
379
- # @note When making an API call, you may pass ListS3ResourcesRequest
380
- # data as a hash:
381
- #
382
- # {
383
- # member_account_id: "AWSAccountId",
384
- # next_token: "NextToken",
385
- # max_results: 1,
386
- # }
387
- #
388
311
  # @!attribute [rw] member_account_id
389
312
  # (Discontinued) The Amazon Macie Classic member account ID whose
390
313
  # associated S3 resources you want to list.
@@ -456,14 +379,6 @@ module Aws::Macie
456
379
  # action and can be used as a response parameter in the
457
380
  # `AssociateS3Resources` and `UpdateS3Resources` actions.
458
381
  #
459
- # @note When making an API call, you may pass S3Resource
460
- # data as a hash:
461
- #
462
- # {
463
- # bucket_name: "BucketName", # required
464
- # prefix: "Prefix",
465
- # }
466
- #
467
382
  # @!attribute [rw] bucket_name
468
383
  # (Discontinued) The name of the S3 bucket.
469
384
  # @return [String]
@@ -486,18 +401,6 @@ module Aws::Macie
486
401
  # is used as a request parameter in the `AssociateS3Resources` action
487
402
  # and a response parameter in the `ListS3Resources` action.
488
403
  #
489
- # @note When making an API call, you may pass S3ResourceClassification
490
- # data as a hash:
491
- #
492
- # {
493
- # bucket_name: "BucketName", # required
494
- # prefix: "Prefix",
495
- # classification_type: { # required
496
- # one_time: "FULL", # required, accepts FULL, NONE
497
- # continuous: "FULL", # required, accepts FULL
498
- # },
499
- # }
500
- #
501
404
  # @!attribute [rw] bucket_name
502
405
  # (Discontinued) The name of the S3 bucket that you want to associate
503
406
  # with Amazon Macie Classic.
@@ -527,18 +430,6 @@ module Aws::Macie
527
430
  # update. This data type is used as a request parameter in the
528
431
  # `UpdateS3Resources` action.
529
432
  #
530
- # @note When making an API call, you may pass S3ResourceClassificationUpdate
531
- # data as a hash:
532
- #
533
- # {
534
- # bucket_name: "BucketName", # required
535
- # prefix: "Prefix",
536
- # classification_type_update: { # required
537
- # one_time: "FULL", # accepts FULL, NONE
538
- # continuous: "FULL", # accepts FULL
539
- # },
540
- # }
541
- #
542
433
  # @!attribute [rw] bucket_name
543
434
  # (Discontinued) The name of the S3 bucket whose classification types
544
435
  # you want to update.
@@ -564,23 +455,6 @@ module Aws::Macie
564
455
  include Aws::Structure
565
456
  end
566
457
 
567
- # @note When making an API call, you may pass UpdateS3ResourcesRequest
568
- # data as a hash:
569
- #
570
- # {
571
- # member_account_id: "AWSAccountId",
572
- # s3_resources_update: [ # required
573
- # {
574
- # bucket_name: "BucketName", # required
575
- # prefix: "Prefix",
576
- # classification_type_update: { # required
577
- # one_time: "FULL", # accepts FULL, NONE
578
- # continuous: "FULL", # accepts FULL
579
- # },
580
- # },
581
- # ],
582
- # }
583
- #
584
458
  # @!attribute [rw] member_account_id
585
459
  # (Discontinued) The Amazon Web Services account ID of the Amazon
586
460
  # Macie Classic member account whose S3 resources' classification
data/lib/aws-sdk-macie.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-macie/customizations'
52
52
  # @!group service
53
53
  module Aws::Macie
54
54
 
55
- GEM_VERSION = '1.39.0'
55
+ GEM_VERSION = '1.41.0'
56
56
 
57
57
  end
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.39.0
4
+ version: 1.41.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-05-31 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement