aws-sdk-macie2 1.33.0 → 1.34.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-macie2/client.rb +48 -3
- data/lib/aws-sdk-macie2/client_api.rb +30 -0
- data/lib/aws-sdk-macie2/types.rb +103 -11
- data/lib/aws-sdk-macie2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cff82eacab779eb1a6545659e010b456c06abdc2989b9827a480c7f15c451120
|
4
|
+
data.tar.gz: cadf174b74d815dcadad7e73dcf3f7a8bf5fc690fd13db67099a0dbd26d89aef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84ae0ea49cdc18e1cab933d5c40eca7d1b0760d38bb166d1bf71a731480a50bd707d2f1ad5423065ea3193a981693b65bba9efe005571f769b0440cbd8d0d1c7
|
7
|
+
data.tar.gz: 3178b5f6b434b42fb9bded536cb3865c9a24c35c2ce0d793a8187e5060696680c101a55e558604cc49532fa383b3a575aa8860b7772613933315e4edd2a40e15
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.34.0 (2021-09-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for specifying which managed data identifiers are used by a classification job, and retrieving a list of managed data identifiers that are available.
|
8
|
+
|
4
9
|
1.33.0 (2021-09-01)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.34.0
|
@@ -406,6 +406,12 @@ module Aws::Macie2
|
|
406
406
|
# @option params [required, String] :job_type
|
407
407
|
# The schedule for running a classification job. Valid values are:
|
408
408
|
#
|
409
|
+
# @option params [Array<String>] :managed_data_identifier_ids
|
410
|
+
#
|
411
|
+
# @option params [String] :managed_data_identifier_selector
|
412
|
+
# The selection type that determines which managed data identifiers a
|
413
|
+
# classification job uses to analyze data. Valid values are:
|
414
|
+
#
|
409
415
|
# @option params [required, String] :name
|
410
416
|
#
|
411
417
|
# @option params [required, Types::S3JobDefinition] :s3_job_definition
|
@@ -440,6 +446,8 @@ module Aws::Macie2
|
|
440
446
|
# description: "__string",
|
441
447
|
# initial_run: false,
|
442
448
|
# job_type: "ONE_TIME", # required, accepts ONE_TIME, SCHEDULED
|
449
|
+
# managed_data_identifier_ids: ["__string"],
|
450
|
+
# managed_data_identifier_selector: "ALL", # accepts ALL, EXCLUDE, INCLUDE, NONE
|
443
451
|
# name: "__string", # required
|
444
452
|
# s3_job_definition: { # required
|
445
453
|
# bucket_definitions: [
|
@@ -1044,6 +1052,8 @@ module Aws::Macie2
|
|
1044
1052
|
# * {Types::DescribeClassificationJobResponse#job_type #job_type} => String
|
1045
1053
|
# * {Types::DescribeClassificationJobResponse#last_run_error_status #last_run_error_status} => Types::LastRunErrorStatus
|
1046
1054
|
# * {Types::DescribeClassificationJobResponse#last_run_time #last_run_time} => Time
|
1055
|
+
# * {Types::DescribeClassificationJobResponse#managed_data_identifier_ids #managed_data_identifier_ids} => Array<String>
|
1056
|
+
# * {Types::DescribeClassificationJobResponse#managed_data_identifier_selector #managed_data_identifier_selector} => String
|
1047
1057
|
# * {Types::DescribeClassificationJobResponse#name #name} => String
|
1048
1058
|
# * {Types::DescribeClassificationJobResponse#s3_job_definition #s3_job_definition} => Types::S3JobDefinition
|
1049
1059
|
# * {Types::DescribeClassificationJobResponse#sampling_percentage #sampling_percentage} => Integer
|
@@ -1072,6 +1082,9 @@ module Aws::Macie2
|
|
1072
1082
|
# resp.job_type #=> String, one of "ONE_TIME", "SCHEDULED"
|
1073
1083
|
# resp.last_run_error_status.code #=> String, one of "NONE", "ERROR"
|
1074
1084
|
# resp.last_run_time #=> Time
|
1085
|
+
# resp.managed_data_identifier_ids #=> Array
|
1086
|
+
# resp.managed_data_identifier_ids[0] #=> String
|
1087
|
+
# resp.managed_data_identifier_selector #=> String, one of "ALL", "EXCLUDE", "INCLUDE", "NONE"
|
1075
1088
|
# resp.name #=> String
|
1076
1089
|
# resp.s3_job_definition.bucket_definitions #=> Array
|
1077
1090
|
# resp.s3_job_definition.bucket_definitions[0].account_id #=> String
|
@@ -2266,8 +2279,8 @@ module Aws::Macie2
|
|
2266
2279
|
req.send_request(options)
|
2267
2280
|
end
|
2268
2281
|
|
2269
|
-
# Retrieves information about
|
2270
|
-
#
|
2282
|
+
# Retrieves information about the Amazon Macie membership invitations
|
2283
|
+
# that were received by an account.
|
2271
2284
|
#
|
2272
2285
|
# @option params [Integer] :max_results
|
2273
2286
|
#
|
@@ -2305,6 +2318,38 @@ module Aws::Macie2
|
|
2305
2318
|
req.send_request(options)
|
2306
2319
|
end
|
2307
2320
|
|
2321
|
+
# Retrieves information about all the managed data identifiers that
|
2322
|
+
# Amazon Macie currently provides.
|
2323
|
+
#
|
2324
|
+
# @option params [String] :next_token
|
2325
|
+
#
|
2326
|
+
# @return [Types::ListManagedDataIdentifiersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2327
|
+
#
|
2328
|
+
# * {Types::ListManagedDataIdentifiersResponse#items #items} => Array<Types::ManagedDataIdentifierSummary>
|
2329
|
+
# * {Types::ListManagedDataIdentifiersResponse#next_token #next_token} => String
|
2330
|
+
#
|
2331
|
+
# @example Request syntax with placeholder values
|
2332
|
+
#
|
2333
|
+
# resp = client.list_managed_data_identifiers({
|
2334
|
+
# next_token: "__string",
|
2335
|
+
# })
|
2336
|
+
#
|
2337
|
+
# @example Response structure
|
2338
|
+
#
|
2339
|
+
# resp.items #=> Array
|
2340
|
+
# resp.items[0].category #=> String, one of "FINANCIAL_INFORMATION", "PERSONAL_INFORMATION", "CREDENTIALS", "CUSTOM_IDENTIFIER"
|
2341
|
+
# resp.items[0].id #=> String
|
2342
|
+
# resp.next_token #=> String
|
2343
|
+
#
|
2344
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ListManagedDataIdentifiers AWS API Documentation
|
2345
|
+
#
|
2346
|
+
# @overload list_managed_data_identifiers(params = {})
|
2347
|
+
# @param [Hash] params ({})
|
2348
|
+
def list_managed_data_identifiers(params = {}, options = {})
|
2349
|
+
req = build_request(:list_managed_data_identifiers, params)
|
2350
|
+
req.send_request(options)
|
2351
|
+
end
|
2352
|
+
|
2308
2353
|
# Retrieves information about the accounts that are associated with an
|
2309
2354
|
# Amazon Macie administrator account.
|
2310
2355
|
#
|
@@ -2892,7 +2937,7 @@ module Aws::Macie2
|
|
2892
2937
|
params: params,
|
2893
2938
|
config: config)
|
2894
2939
|
context[:gem_name] = 'aws-sdk-macie2'
|
2895
|
-
context[:gem_version] = '1.
|
2940
|
+
context[:gem_version] = '1.34.0'
|
2896
2941
|
Seahorse::Client::Request.new(handlers, context)
|
2897
2942
|
end
|
2898
2943
|
|
@@ -190,6 +190,8 @@ module Aws::Macie2
|
|
190
190
|
ListJobsFilterTerm = Shapes::StructureShape.new(name: 'ListJobsFilterTerm')
|
191
191
|
ListJobsSortAttributeName = Shapes::StringShape.new(name: 'ListJobsSortAttributeName')
|
192
192
|
ListJobsSortCriteria = Shapes::StructureShape.new(name: 'ListJobsSortCriteria')
|
193
|
+
ListManagedDataIdentifiersRequest = Shapes::StructureShape.new(name: 'ListManagedDataIdentifiersRequest')
|
194
|
+
ListManagedDataIdentifiersResponse = Shapes::StructureShape.new(name: 'ListManagedDataIdentifiersResponse')
|
193
195
|
ListMembersRequest = Shapes::StructureShape.new(name: 'ListMembersRequest')
|
194
196
|
ListMembersResponse = Shapes::StructureShape.new(name: 'ListMembersResponse')
|
195
197
|
ListOrganizationAdminAccountsRequest = Shapes::StructureShape.new(name: 'ListOrganizationAdminAccountsRequest')
|
@@ -197,6 +199,8 @@ module Aws::Macie2
|
|
197
199
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
198
200
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
199
201
|
MacieStatus = Shapes::StringShape.new(name: 'MacieStatus')
|
202
|
+
ManagedDataIdentifierSelector = Shapes::StringShape.new(name: 'ManagedDataIdentifierSelector')
|
203
|
+
ManagedDataIdentifierSummary = Shapes::StructureShape.new(name: 'ManagedDataIdentifierSummary')
|
200
204
|
MatchingBucket = Shapes::StructureShape.new(name: 'MatchingBucket')
|
201
205
|
MatchingResource = Shapes::StructureShape.new(name: 'MatchingResource')
|
202
206
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
@@ -320,6 +324,7 @@ module Aws::Macie2
|
|
320
324
|
__listOfJobSummary = Shapes::ListShape.new(name: '__listOfJobSummary')
|
321
325
|
__listOfKeyValuePair = Shapes::ListShape.new(name: '__listOfKeyValuePair')
|
322
326
|
__listOfListJobsFilterTerm = Shapes::ListShape.new(name: '__listOfListJobsFilterTerm')
|
327
|
+
__listOfManagedDataIdentifierSummary = Shapes::ListShape.new(name: '__listOfManagedDataIdentifierSummary')
|
323
328
|
__listOfMatchingResource = Shapes::ListShape.new(name: '__listOfMatchingResource')
|
324
329
|
__listOfMember = Shapes::ListShape.new(name: '__listOfMember')
|
325
330
|
__listOfS3BucketDefinitionForJob = Shapes::ListShape.new(name: '__listOfS3BucketDefinitionForJob')
|
@@ -525,6 +530,8 @@ module Aws::Macie2
|
|
525
530
|
CreateClassificationJobRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
526
531
|
CreateClassificationJobRequest.add_member(:initial_run, Shapes::ShapeRef.new(shape: __boolean, location_name: "initialRun"))
|
527
532
|
CreateClassificationJobRequest.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, required: true, location_name: "jobType"))
|
533
|
+
CreateClassificationJobRequest.add_member(:managed_data_identifier_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "managedDataIdentifierIds"))
|
534
|
+
CreateClassificationJobRequest.add_member(:managed_data_identifier_selector, Shapes::ShapeRef.new(shape: ManagedDataIdentifierSelector, location_name: "managedDataIdentifierSelector"))
|
528
535
|
CreateClassificationJobRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
529
536
|
CreateClassificationJobRequest.add_member(:s3_job_definition, Shapes::ShapeRef.new(shape: S3JobDefinition, required: true, location_name: "s3JobDefinition"))
|
530
537
|
CreateClassificationJobRequest.add_member(:sampling_percentage, Shapes::ShapeRef.new(shape: __integer, location_name: "samplingPercentage"))
|
@@ -680,6 +687,8 @@ module Aws::Macie2
|
|
680
687
|
DescribeClassificationJobResponse.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, location_name: "jobType"))
|
681
688
|
DescribeClassificationJobResponse.add_member(:last_run_error_status, Shapes::ShapeRef.new(shape: LastRunErrorStatus, location_name: "lastRunErrorStatus"))
|
682
689
|
DescribeClassificationJobResponse.add_member(:last_run_time, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "lastRunTime"))
|
690
|
+
DescribeClassificationJobResponse.add_member(:managed_data_identifier_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "managedDataIdentifierIds"))
|
691
|
+
DescribeClassificationJobResponse.add_member(:managed_data_identifier_selector, Shapes::ShapeRef.new(shape: ManagedDataIdentifierSelector, location_name: "managedDataIdentifierSelector"))
|
683
692
|
DescribeClassificationJobResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
684
693
|
DescribeClassificationJobResponse.add_member(:s3_job_definition, Shapes::ShapeRef.new(shape: S3JobDefinition, location_name: "s3JobDefinition"))
|
685
694
|
DescribeClassificationJobResponse.add_member(:sampling_percentage, Shapes::ShapeRef.new(shape: __integer, location_name: "samplingPercentage"))
|
@@ -1053,6 +1062,13 @@ module Aws::Macie2
|
|
1053
1062
|
ListJobsSortCriteria.add_member(:order_by, Shapes::ShapeRef.new(shape: OrderBy, location_name: "orderBy"))
|
1054
1063
|
ListJobsSortCriteria.struct_class = Types::ListJobsSortCriteria
|
1055
1064
|
|
1065
|
+
ListManagedDataIdentifiersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
|
1066
|
+
ListManagedDataIdentifiersRequest.struct_class = Types::ListManagedDataIdentifiersRequest
|
1067
|
+
|
1068
|
+
ListManagedDataIdentifiersResponse.add_member(:items, Shapes::ShapeRef.new(shape: __listOfManagedDataIdentifierSummary, location_name: "items"))
|
1069
|
+
ListManagedDataIdentifiersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
|
1070
|
+
ListManagedDataIdentifiersResponse.struct_class = Types::ListManagedDataIdentifiersResponse
|
1071
|
+
|
1056
1072
|
ListMembersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
1057
1073
|
ListMembersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
|
1058
1074
|
ListMembersRequest.add_member(:only_associated, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "onlyAssociated"))
|
@@ -1076,6 +1092,10 @@ module Aws::Macie2
|
|
1076
1092
|
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
1077
1093
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
1078
1094
|
|
1095
|
+
ManagedDataIdentifierSummary.add_member(:category, Shapes::ShapeRef.new(shape: SensitiveDataItemCategory, location_name: "category"))
|
1096
|
+
ManagedDataIdentifierSummary.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
1097
|
+
ManagedDataIdentifierSummary.struct_class = Types::ManagedDataIdentifierSummary
|
1098
|
+
|
1079
1099
|
MatchingBucket.add_member(:account_id, Shapes::ShapeRef.new(shape: __string, location_name: "accountId"))
|
1080
1100
|
MatchingBucket.add_member(:bucket_name, Shapes::ShapeRef.new(shape: __string, location_name: "bucketName"))
|
1081
1101
|
MatchingBucket.add_member(:classifiable_object_count, Shapes::ShapeRef.new(shape: __long, location_name: "classifiableObjectCount"))
|
@@ -1486,6 +1506,8 @@ module Aws::Macie2
|
|
1486
1506
|
|
1487
1507
|
__listOfListJobsFilterTerm.member = Shapes::ShapeRef.new(shape: ListJobsFilterTerm)
|
1488
1508
|
|
1509
|
+
__listOfManagedDataIdentifierSummary.member = Shapes::ShapeRef.new(shape: ManagedDataIdentifierSummary)
|
1510
|
+
|
1489
1511
|
__listOfMatchingResource.member = Shapes::ShapeRef.new(shape: MatchingResource)
|
1490
1512
|
|
1491
1513
|
__listOfMember.member = Shapes::ShapeRef.new(shape: Member)
|
@@ -2202,6 +2224,14 @@ module Aws::Macie2
|
|
2202
2224
|
)
|
2203
2225
|
end)
|
2204
2226
|
|
2227
|
+
api.add_operation(:list_managed_data_identifiers, Seahorse::Model::Operation.new.tap do |o|
|
2228
|
+
o.name = "ListManagedDataIdentifiers"
|
2229
|
+
o.http_method = "POST"
|
2230
|
+
o.http_request_uri = "/managed-data-identifiers/list"
|
2231
|
+
o.input = Shapes::ShapeRef.new(shape: ListManagedDataIdentifiersRequest)
|
2232
|
+
o.output = Shapes::ShapeRef.new(shape: ListManagedDataIdentifiersResponse)
|
2233
|
+
end)
|
2234
|
+
|
2205
2235
|
api.add_operation(:list_members, Seahorse::Model::Operation.new.tap do |o|
|
2206
2236
|
o.name = "ListMembers"
|
2207
2237
|
o.http_method = "GET"
|
data/lib/aws-sdk-macie2/types.rb
CHANGED
@@ -959,6 +959,8 @@ module Aws::Macie2
|
|
959
959
|
# description: "__string",
|
960
960
|
# initial_run: false,
|
961
961
|
# job_type: "ONE_TIME", # required, accepts ONE_TIME, SCHEDULED
|
962
|
+
# managed_data_identifier_ids: ["__string"],
|
963
|
+
# managed_data_identifier_selector: "ALL", # accepts ALL, EXCLUDE, INCLUDE, NONE
|
962
964
|
# name: "__string", # required
|
963
965
|
# s3_job_definition: { # required
|
964
966
|
# bucket_definitions: [
|
@@ -1090,6 +1092,14 @@ module Aws::Macie2
|
|
1090
1092
|
# The schedule for running a classification job. Valid values are:
|
1091
1093
|
# @return [String]
|
1092
1094
|
#
|
1095
|
+
# @!attribute [rw] managed_data_identifier_ids
|
1096
|
+
# @return [Array<String>]
|
1097
|
+
#
|
1098
|
+
# @!attribute [rw] managed_data_identifier_selector
|
1099
|
+
# The selection type that determines which managed data identifiers a
|
1100
|
+
# classification job uses to analyze data. Valid values are:
|
1101
|
+
# @return [String]
|
1102
|
+
#
|
1093
1103
|
# @!attribute [rw] name
|
1094
1104
|
# @return [String]
|
1095
1105
|
#
|
@@ -1124,6 +1134,8 @@ module Aws::Macie2
|
|
1124
1134
|
:description,
|
1125
1135
|
:initial_run,
|
1126
1136
|
:job_type,
|
1137
|
+
:managed_data_identifier_ids,
|
1138
|
+
:managed_data_identifier_selector,
|
1127
1139
|
:name,
|
1128
1140
|
:s3_job_definition,
|
1129
1141
|
:sampling_percentage,
|
@@ -1151,7 +1163,7 @@ module Aws::Macie2
|
|
1151
1163
|
include Aws::Structure
|
1152
1164
|
end
|
1153
1165
|
|
1154
|
-
# Specifies the criteria and other settings for a
|
1166
|
+
# Specifies the criteria and other settings for a custom data
|
1155
1167
|
# identifier. You can't change a custom data identifier after you
|
1156
1168
|
# create it. This helps ensure that you have an immutable history of
|
1157
1169
|
# sensitive data findings and discovery results for data privacy and
|
@@ -1646,8 +1658,8 @@ module Aws::Macie2
|
|
1646
1658
|
#
|
1647
1659
|
# @!attribute [rw] occurrences
|
1648
1660
|
# Specifies the location of 1-15 occurrences of sensitive data that
|
1649
|
-
# was detected by managed data
|
1650
|
-
# and produced a sensitive data finding.
|
1661
|
+
# was detected by a managed data identifier or a custom data
|
1662
|
+
# identifier and produced a sensitive data finding.
|
1651
1663
|
# @return [Types::Occurrences]
|
1652
1664
|
#
|
1653
1665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/CustomDetection AWS API Documentation
|
@@ -1707,15 +1719,15 @@ module Aws::Macie2
|
|
1707
1719
|
end
|
1708
1720
|
|
1709
1721
|
# Provides information about a type of sensitive data that was detected
|
1710
|
-
# by managed data
|
1722
|
+
# by a managed data identifier and produced a sensitive data finding.
|
1711
1723
|
#
|
1712
1724
|
# @!attribute [rw] count
|
1713
1725
|
# @return [Integer]
|
1714
1726
|
#
|
1715
1727
|
# @!attribute [rw] occurrences
|
1716
1728
|
# Specifies the location of 1-15 occurrences of sensitive data that
|
1717
|
-
# was detected by managed data
|
1718
|
-
# and produced a sensitive data finding.
|
1729
|
+
# was detected by a managed data identifier or a custom data
|
1730
|
+
# identifier and produced a sensitive data finding.
|
1719
1731
|
# @return [Types::Occurrences]
|
1720
1732
|
#
|
1721
1733
|
# @!attribute [rw] type
|
@@ -1971,6 +1983,14 @@ module Aws::Macie2
|
|
1971
1983
|
# @!attribute [rw] last_run_time
|
1972
1984
|
# @return [Time]
|
1973
1985
|
#
|
1986
|
+
# @!attribute [rw] managed_data_identifier_ids
|
1987
|
+
# @return [Array<String>]
|
1988
|
+
#
|
1989
|
+
# @!attribute [rw] managed_data_identifier_selector
|
1990
|
+
# The selection type that determines which managed data identifiers a
|
1991
|
+
# classification job uses to analyze data. Valid values are:
|
1992
|
+
# @return [String]
|
1993
|
+
#
|
1974
1994
|
# @!attribute [rw] name
|
1975
1995
|
# @return [String]
|
1976
1996
|
#
|
@@ -2026,6 +2046,8 @@ module Aws::Macie2
|
|
2026
2046
|
:job_type,
|
2027
2047
|
:last_run_error_status,
|
2028
2048
|
:last_run_time,
|
2049
|
+
:managed_data_identifier_ids,
|
2050
|
+
:managed_data_identifier_selector,
|
2029
2051
|
:name,
|
2030
2052
|
:s3_job_definition,
|
2031
2053
|
:sampling_percentage,
|
@@ -4084,6 +4106,45 @@ module Aws::Macie2
|
|
4084
4106
|
include Aws::Structure
|
4085
4107
|
end
|
4086
4108
|
|
4109
|
+
# Specifies criteria for paginating the results of a request for
|
4110
|
+
# information about managed data identifiers.
|
4111
|
+
#
|
4112
|
+
# @note When making an API call, you may pass ListManagedDataIdentifiersRequest
|
4113
|
+
# data as a hash:
|
4114
|
+
#
|
4115
|
+
# {
|
4116
|
+
# next_token: "__string",
|
4117
|
+
# }
|
4118
|
+
#
|
4119
|
+
# @!attribute [rw] next_token
|
4120
|
+
# @return [String]
|
4121
|
+
#
|
4122
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ListManagedDataIdentifiersRequest AWS API Documentation
|
4123
|
+
#
|
4124
|
+
class ListManagedDataIdentifiersRequest < Struct.new(
|
4125
|
+
:next_token)
|
4126
|
+
SENSITIVE = []
|
4127
|
+
include Aws::Structure
|
4128
|
+
end
|
4129
|
+
|
4130
|
+
# Provides information about the managed data identifiers that Amazon
|
4131
|
+
# Macie currently provides.
|
4132
|
+
#
|
4133
|
+
# @!attribute [rw] items
|
4134
|
+
# @return [Array<Types::ManagedDataIdentifierSummary>]
|
4135
|
+
#
|
4136
|
+
# @!attribute [rw] next_token
|
4137
|
+
# @return [String]
|
4138
|
+
#
|
4139
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ListManagedDataIdentifiersResponse AWS API Documentation
|
4140
|
+
#
|
4141
|
+
class ListManagedDataIdentifiersResponse < Struct.new(
|
4142
|
+
:items,
|
4143
|
+
:next_token)
|
4144
|
+
SENSITIVE = []
|
4145
|
+
include Aws::Structure
|
4146
|
+
end
|
4147
|
+
|
4087
4148
|
# @note When making an API call, you may pass ListMembersRequest
|
4088
4149
|
# data as a hash:
|
4089
4150
|
#
|
@@ -4207,6 +4268,33 @@ module Aws::Macie2
|
|
4207
4268
|
include Aws::Structure
|
4208
4269
|
end
|
4209
4270
|
|
4271
|
+
# Provides information about a managed data identifier. For additional
|
4272
|
+
# information, see [Using managed data identifiers][1] in the *Amazon
|
4273
|
+
# Macie User Guide*.
|
4274
|
+
#
|
4275
|
+
#
|
4276
|
+
#
|
4277
|
+
# [1]: https://docs.aws.amazon.com/macie/latest/user/managed-data-identifiers.html
|
4278
|
+
#
|
4279
|
+
# @!attribute [rw] category
|
4280
|
+
# For a finding, the category of sensitive data that was detected and
|
4281
|
+
# produced the finding. For a managed data identifier, the category of
|
4282
|
+
# sensitive data that the managed data identifier detects. Possible
|
4283
|
+
# values are:
|
4284
|
+
# @return [String]
|
4285
|
+
#
|
4286
|
+
# @!attribute [rw] id
|
4287
|
+
# @return [String]
|
4288
|
+
#
|
4289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ManagedDataIdentifierSummary AWS API Documentation
|
4290
|
+
#
|
4291
|
+
class ManagedDataIdentifierSummary < Struct.new(
|
4292
|
+
:category,
|
4293
|
+
:id)
|
4294
|
+
SENSITIVE = []
|
4295
|
+
include Aws::Structure
|
4296
|
+
end
|
4297
|
+
|
4210
4298
|
# Provides statistical data and other information about an S3 bucket
|
4211
4299
|
# that Amazon Macie monitors and analyzes.
|
4212
4300
|
#
|
@@ -4431,7 +4519,7 @@ module Aws::Macie2
|
|
4431
4519
|
end
|
4432
4520
|
|
4433
4521
|
# Specifies the location of 1-15 occurrences of sensitive data that was
|
4434
|
-
# detected by managed data
|
4522
|
+
# detected by a managed data identifier or a custom data identifier and
|
4435
4523
|
# produced a sensitive data finding.
|
4436
4524
|
#
|
4437
4525
|
# @!attribute [rw] cells
|
@@ -4722,7 +4810,8 @@ module Aws::Macie2
|
|
4722
4810
|
# @return [String]
|
4723
4811
|
#
|
4724
4812
|
# @!attribute [rw] owner
|
4725
|
-
# Provides information about the
|
4813
|
+
# Provides information about the Amazon Web Services account that owns
|
4814
|
+
# an S3 bucket.
|
4726
4815
|
# @return [Types::S3BucketOwner]
|
4727
4816
|
#
|
4728
4817
|
# @!attribute [rw] public_access
|
@@ -4849,7 +4938,8 @@ module Aws::Macie2
|
|
4849
4938
|
include Aws::Structure
|
4850
4939
|
end
|
4851
4940
|
|
4852
|
-
# Provides information about the
|
4941
|
+
# Provides information about the Amazon Web Services account that owns
|
4942
|
+
# an S3 bucket.
|
4853
4943
|
#
|
4854
4944
|
# @!attribute [rw] display_name
|
4855
4945
|
# @return [String]
|
@@ -5590,8 +5680,10 @@ module Aws::Macie2
|
|
5590
5680
|
# sensitive data that produced a sensitive data finding.
|
5591
5681
|
#
|
5592
5682
|
# @!attribute [rw] category
|
5593
|
-
#
|
5594
|
-
# finding.
|
5683
|
+
# For a finding, the category of sensitive data that was detected and
|
5684
|
+
# produced the finding. For a managed data identifier, the category of
|
5685
|
+
# sensitive data that the managed data identifier detects. Possible
|
5686
|
+
# values are:
|
5595
5687
|
# @return [String]
|
5596
5688
|
#
|
5597
5689
|
# @!attribute [rw] detections
|
data/lib/aws-sdk-macie2.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-macie2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.34.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: 2021-09-
|
11
|
+
date: 2021-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|