aws-sdk-macie2 1.25.0 → 1.26.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.rb +1 -1
- data/lib/aws-sdk-macie2/client.rb +72 -3
- data/lib/aws-sdk-macie2/client_api.rb +50 -0
- data/lib/aws-sdk-macie2/types.rb +124 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8312d9a8cbab7c3b940504b68878ff52067f516b39387516c6730912248fc380
|
4
|
+
data.tar.gz: 9873072f2ffde814bdb325b7f0cfab36ce52b67edae78ec6fb5ffdeed700ee70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 66d1ad4f766cfe4b4c1a16022db47113b213faffe4f483da55f096d7687e486c3488d5748580093c807f7a0bbe84b0bd177fe9e9c2d30a395b83fdec707fe6af
|
7
|
+
data.tar.gz: 89326c79facb785cd6bb914ada9e970763c4e1201c7a4397938e6c7a96cad0053cb1952159a4a50dcb8ecf8c28df488367ce8537e4a0f3e4a5e5bbd910a761a8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.26.0 (2021-03-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release of the Amazon Macie API adds support for publishing sensitive data findings to AWS Security Hub and specifying which categories of findings to publish to Security Hub.
|
8
|
+
|
4
9
|
1.25.0 (2021-03-10)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.26.0
|
data/lib/aws-sdk-macie2.rb
CHANGED
@@ -1192,7 +1192,12 @@ module Aws::Macie2
|
|
1192
1192
|
# The frequency with which Amazon Macie publishes updates to policy
|
1193
1193
|
# findings for an account. This includes publishing updates to AWS
|
1194
1194
|
# Security Hub and Amazon EventBridge (formerly called Amazon CloudWatch
|
1195
|
-
# Events).
|
1195
|
+
# Events). For more information, see [Monitoring and processing
|
1196
|
+
# findings][1] in the *Amazon Macie User Guide*. Valid values are:
|
1197
|
+
#
|
1198
|
+
#
|
1199
|
+
#
|
1200
|
+
# [1]: https://docs.aws.amazon.com/macie/latest/user/findings-monitor.html
|
1196
1201
|
#
|
1197
1202
|
# @option params [String] :status
|
1198
1203
|
# The status of an Amazon Macie account. Valid values are:
|
@@ -1714,6 +1719,27 @@ module Aws::Macie2
|
|
1714
1719
|
req.send_request(options)
|
1715
1720
|
end
|
1716
1721
|
|
1722
|
+
# Retrieves the configuration settings for publishing findings to AWS
|
1723
|
+
# Security Hub.
|
1724
|
+
#
|
1725
|
+
# @return [Types::GetFindingsPublicationConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1726
|
+
#
|
1727
|
+
# * {Types::GetFindingsPublicationConfigurationResponse#security_hub_configuration #security_hub_configuration} => Types::SecurityHubConfiguration
|
1728
|
+
#
|
1729
|
+
# @example Response structure
|
1730
|
+
#
|
1731
|
+
# resp.security_hub_configuration.publish_classification_findings #=> Boolean
|
1732
|
+
# resp.security_hub_configuration.publish_policy_findings #=> Boolean
|
1733
|
+
#
|
1734
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/GetFindingsPublicationConfiguration AWS API Documentation
|
1735
|
+
#
|
1736
|
+
# @overload get_findings_publication_configuration(params = {})
|
1737
|
+
# @param [Hash] params ({})
|
1738
|
+
def get_findings_publication_configuration(params = {}, options = {})
|
1739
|
+
req = build_request(:get_findings_publication_configuration, params)
|
1740
|
+
req.send_request(options)
|
1741
|
+
end
|
1742
|
+
|
1717
1743
|
# Retrieves the count of Amazon Macie membership invitations that were
|
1718
1744
|
# received by an account.
|
1719
1745
|
#
|
@@ -2342,6 +2368,44 @@ module Aws::Macie2
|
|
2342
2368
|
req.send_request(options)
|
2343
2369
|
end
|
2344
2370
|
|
2371
|
+
# Updates the configuration settings for publishing findings to AWS
|
2372
|
+
# Security Hub.
|
2373
|
+
#
|
2374
|
+
# @option params [String] :client_token
|
2375
|
+
# **A suitable default value is auto-generated.** You should normally
|
2376
|
+
# not need to pass this option.**
|
2377
|
+
#
|
2378
|
+
# @option params [Types::SecurityHubConfiguration] :security_hub_configuration
|
2379
|
+
# Specifies configuration settings that determine which findings are
|
2380
|
+
# published to AWS Security Hub automatically. For information about how
|
2381
|
+
# Macie publishes findings to Security Hub, see [Amazon Macie
|
2382
|
+
# integration with Security Hub][1] in the *Amazon Macie User Guide*.
|
2383
|
+
#
|
2384
|
+
#
|
2385
|
+
#
|
2386
|
+
# [1]: https://docs.aws.amazon.com/macie/latest/user/securityhub-integration.html
|
2387
|
+
#
|
2388
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2389
|
+
#
|
2390
|
+
# @example Request syntax with placeholder values
|
2391
|
+
#
|
2392
|
+
# resp = client.put_findings_publication_configuration({
|
2393
|
+
# client_token: "__string",
|
2394
|
+
# security_hub_configuration: {
|
2395
|
+
# publish_classification_findings: false, # required
|
2396
|
+
# publish_policy_findings: false, # required
|
2397
|
+
# },
|
2398
|
+
# })
|
2399
|
+
#
|
2400
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/PutFindingsPublicationConfiguration AWS API Documentation
|
2401
|
+
#
|
2402
|
+
# @overload put_findings_publication_configuration(params = {})
|
2403
|
+
# @param [Hash] params ({})
|
2404
|
+
def put_findings_publication_configuration(params = {}, options = {})
|
2405
|
+
req = build_request(:put_findings_publication_configuration, params)
|
2406
|
+
req.send_request(options)
|
2407
|
+
end
|
2408
|
+
|
2345
2409
|
# Adds or updates one or more tags (keys and values) that are associated
|
2346
2410
|
# with a classification job, custom data identifier, findings filter, or
|
2347
2411
|
# member account.
|
@@ -2530,7 +2594,12 @@ module Aws::Macie2
|
|
2530
2594
|
# The frequency with which Amazon Macie publishes updates to policy
|
2531
2595
|
# findings for an account. This includes publishing updates to AWS
|
2532
2596
|
# Security Hub and Amazon EventBridge (formerly called Amazon CloudWatch
|
2533
|
-
# Events).
|
2597
|
+
# Events). For more information, see [Monitoring and processing
|
2598
|
+
# findings][1] in the *Amazon Macie User Guide*. Valid values are:
|
2599
|
+
#
|
2600
|
+
#
|
2601
|
+
#
|
2602
|
+
# [1]: https://docs.aws.amazon.com/macie/latest/user/findings-monitor.html
|
2534
2603
|
#
|
2535
2604
|
# @option params [String] :status
|
2536
2605
|
# The status of an Amazon Macie account. Valid values are:
|
@@ -2614,7 +2683,7 @@ module Aws::Macie2
|
|
2614
2683
|
params: params,
|
2615
2684
|
config: config)
|
2616
2685
|
context[:gem_name] = 'aws-sdk-macie2'
|
2617
|
-
context[:gem_version] = '1.
|
2686
|
+
context[:gem_version] = '1.26.0'
|
2618
2687
|
Seahorse::Client::Request.new(handlers, context)
|
2619
2688
|
end
|
2620
2689
|
|
@@ -131,6 +131,8 @@ module Aws::Macie2
|
|
131
131
|
GetFindingStatisticsResponse = Shapes::StructureShape.new(name: 'GetFindingStatisticsResponse')
|
132
132
|
GetFindingsFilterRequest = Shapes::StructureShape.new(name: 'GetFindingsFilterRequest')
|
133
133
|
GetFindingsFilterResponse = Shapes::StructureShape.new(name: 'GetFindingsFilterResponse')
|
134
|
+
GetFindingsPublicationConfigurationRequest = Shapes::StructureShape.new(name: 'GetFindingsPublicationConfigurationRequest')
|
135
|
+
GetFindingsPublicationConfigurationResponse = Shapes::StructureShape.new(name: 'GetFindingsPublicationConfigurationResponse')
|
134
136
|
GetFindingsRequest = Shapes::StructureShape.new(name: 'GetFindingsRequest')
|
135
137
|
GetFindingsResponse = Shapes::StructureShape.new(name: 'GetFindingsResponse')
|
136
138
|
GetInvitationsCountRequest = Shapes::StructureShape.new(name: 'GetInvitationsCountRequest')
|
@@ -203,6 +205,8 @@ module Aws::Macie2
|
|
203
205
|
PolicyDetails = Shapes::StructureShape.new(name: 'PolicyDetails')
|
204
206
|
PutClassificationExportConfigurationRequest = Shapes::StructureShape.new(name: 'PutClassificationExportConfigurationRequest')
|
205
207
|
PutClassificationExportConfigurationResponse = Shapes::StructureShape.new(name: 'PutClassificationExportConfigurationResponse')
|
208
|
+
PutFindingsPublicationConfigurationRequest = Shapes::StructureShape.new(name: 'PutFindingsPublicationConfigurationRequest')
|
209
|
+
PutFindingsPublicationConfigurationResponse = Shapes::StructureShape.new(name: 'PutFindingsPublicationConfigurationResponse')
|
206
210
|
Range = Shapes::StructureShape.new(name: 'Range')
|
207
211
|
Ranges = Shapes::ListShape.new(name: 'Ranges')
|
208
212
|
Record = Shapes::StructureShape.new(name: 'Record')
|
@@ -219,6 +223,7 @@ module Aws::Macie2
|
|
219
223
|
S3Object = Shapes::StructureShape.new(name: 'S3Object')
|
220
224
|
ScopeFilterKey = Shapes::StringShape.new(name: 'ScopeFilterKey')
|
221
225
|
Scoping = Shapes::StructureShape.new(name: 'Scoping')
|
226
|
+
SecurityHubConfiguration = Shapes::StructureShape.new(name: 'SecurityHubConfiguration')
|
222
227
|
SensitiveData = Shapes::ListShape.new(name: 'SensitiveData')
|
223
228
|
SensitiveDataItem = Shapes::StructureShape.new(name: 'SensitiveDataItem')
|
224
229
|
SensitiveDataItemCategory = Shapes::StringShape.new(name: 'SensitiveDataItemCategory')
|
@@ -803,6 +808,11 @@ module Aws::Macie2
|
|
803
808
|
GetFindingsFilterResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
804
809
|
GetFindingsFilterResponse.struct_class = Types::GetFindingsFilterResponse
|
805
810
|
|
811
|
+
GetFindingsPublicationConfigurationRequest.struct_class = Types::GetFindingsPublicationConfigurationRequest
|
812
|
+
|
813
|
+
GetFindingsPublicationConfigurationResponse.add_member(:security_hub_configuration, Shapes::ShapeRef.new(shape: SecurityHubConfiguration, location_name: "securityHubConfiguration"))
|
814
|
+
GetFindingsPublicationConfigurationResponse.struct_class = Types::GetFindingsPublicationConfigurationResponse
|
815
|
+
|
806
816
|
GetFindingsRequest.add_member(:finding_ids, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "findingIds"))
|
807
817
|
GetFindingsRequest.add_member(:sort_criteria, Shapes::ShapeRef.new(shape: SortCriteria, location_name: "sortCriteria"))
|
808
818
|
GetFindingsRequest.struct_class = Types::GetFindingsRequest
|
@@ -1071,6 +1081,12 @@ module Aws::Macie2
|
|
1071
1081
|
PutClassificationExportConfigurationResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: ClassificationExportConfiguration, location_name: "configuration"))
|
1072
1082
|
PutClassificationExportConfigurationResponse.struct_class = Types::PutClassificationExportConfigurationResponse
|
1073
1083
|
|
1084
|
+
PutFindingsPublicationConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: __string, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
1085
|
+
PutFindingsPublicationConfigurationRequest.add_member(:security_hub_configuration, Shapes::ShapeRef.new(shape: SecurityHubConfiguration, location_name: "securityHubConfiguration"))
|
1086
|
+
PutFindingsPublicationConfigurationRequest.struct_class = Types::PutFindingsPublicationConfigurationRequest
|
1087
|
+
|
1088
|
+
PutFindingsPublicationConfigurationResponse.struct_class = Types::PutFindingsPublicationConfigurationResponse
|
1089
|
+
|
1074
1090
|
Range.add_member(:end, Shapes::ShapeRef.new(shape: __long, location_name: "end"))
|
1075
1091
|
Range.add_member(:start, Shapes::ShapeRef.new(shape: __long, location_name: "start"))
|
1076
1092
|
Range.add_member(:start_column, Shapes::ShapeRef.new(shape: __long, location_name: "startColumn"))
|
@@ -1140,6 +1156,10 @@ module Aws::Macie2
|
|
1140
1156
|
Scoping.add_member(:includes, Shapes::ShapeRef.new(shape: JobScopingBlock, location_name: "includes"))
|
1141
1157
|
Scoping.struct_class = Types::Scoping
|
1142
1158
|
|
1159
|
+
SecurityHubConfiguration.add_member(:publish_classification_findings, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "publishClassificationFindings"))
|
1160
|
+
SecurityHubConfiguration.add_member(:publish_policy_findings, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "publishPolicyFindings"))
|
1161
|
+
SecurityHubConfiguration.struct_class = Types::SecurityHubConfiguration
|
1162
|
+
|
1143
1163
|
SensitiveData.member = Shapes::ShapeRef.new(shape: SensitiveDataItem)
|
1144
1164
|
|
1145
1165
|
SensitiveDataItem.add_member(:category, Shapes::ShapeRef.new(shape: SensitiveDataItemCategory, location_name: "category"))
|
@@ -1837,6 +1857,21 @@ module Aws::Macie2
|
|
1837
1857
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1838
1858
|
end)
|
1839
1859
|
|
1860
|
+
api.add_operation(:get_findings_publication_configuration, Seahorse::Model::Operation.new.tap do |o|
|
1861
|
+
o.name = "GetFindingsPublicationConfiguration"
|
1862
|
+
o.http_method = "GET"
|
1863
|
+
o.http_request_uri = "/findings-publication-configuration"
|
1864
|
+
o.input = Shapes::ShapeRef.new(shape: GetFindingsPublicationConfigurationRequest)
|
1865
|
+
o.output = Shapes::ShapeRef.new(shape: GetFindingsPublicationConfigurationResponse)
|
1866
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1867
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1868
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1869
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1870
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1871
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1872
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1873
|
+
end)
|
1874
|
+
|
1840
1875
|
api.add_operation(:get_invitations_count, Seahorse::Model::Operation.new.tap do |o|
|
1841
1876
|
o.name = "GetInvitationsCount"
|
1842
1877
|
o.http_method = "GET"
|
@@ -2103,6 +2138,21 @@ module Aws::Macie2
|
|
2103
2138
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
2104
2139
|
end)
|
2105
2140
|
|
2141
|
+
api.add_operation(:put_findings_publication_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2142
|
+
o.name = "PutFindingsPublicationConfiguration"
|
2143
|
+
o.http_method = "PUT"
|
2144
|
+
o.http_request_uri = "/findings-publication-configuration"
|
2145
|
+
o.input = Shapes::ShapeRef.new(shape: PutFindingsPublicationConfigurationRequest)
|
2146
|
+
o.output = Shapes::ShapeRef.new(shape: PutFindingsPublicationConfigurationResponse)
|
2147
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
2148
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
2149
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
2150
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2151
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2152
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2153
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
2154
|
+
end)
|
2155
|
+
|
2106
2156
|
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
2107
2157
|
o.name = "TagResource"
|
2108
2158
|
o.http_method = "POST"
|
data/lib/aws-sdk-macie2/types.rb
CHANGED
@@ -1999,7 +1999,13 @@ module Aws::Macie2
|
|
1999
1999
|
# The frequency with which Amazon Macie publishes updates to policy
|
2000
2000
|
# findings for an account. This includes publishing updates to AWS
|
2001
2001
|
# Security Hub and Amazon EventBridge (formerly called Amazon
|
2002
|
-
# CloudWatch Events).
|
2002
|
+
# CloudWatch Events). For more information, see [Monitoring and
|
2003
|
+
# processing findings][1] in the *Amazon Macie User Guide*. Valid
|
2004
|
+
# values are:
|
2005
|
+
#
|
2006
|
+
#
|
2007
|
+
#
|
2008
|
+
# [1]: https://docs.aws.amazon.com/macie/latest/user/findings-monitor.html
|
2003
2009
|
# @return [String]
|
2004
2010
|
#
|
2005
2011
|
# @!attribute [rw] status
|
@@ -2698,6 +2704,34 @@ module Aws::Macie2
|
|
2698
2704
|
include Aws::Structure
|
2699
2705
|
end
|
2700
2706
|
|
2707
|
+
# @api private
|
2708
|
+
#
|
2709
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/GetFindingsPublicationConfigurationRequest AWS API Documentation
|
2710
|
+
#
|
2711
|
+
class GetFindingsPublicationConfigurationRequest < Aws::EmptyStructure; end
|
2712
|
+
|
2713
|
+
# Provides information about the current configuration settings for
|
2714
|
+
# publishing findings to AWS Security Hub automatically.
|
2715
|
+
#
|
2716
|
+
# @!attribute [rw] security_hub_configuration
|
2717
|
+
# Specifies configuration settings that determine which findings are
|
2718
|
+
# published to AWS Security Hub automatically. For information about
|
2719
|
+
# how Macie publishes findings to Security Hub, see [Amazon Macie
|
2720
|
+
# integration with Security Hub][1] in the *Amazon Macie User Guide*.
|
2721
|
+
#
|
2722
|
+
#
|
2723
|
+
#
|
2724
|
+
# [1]: https://docs.aws.amazon.com/macie/latest/user/securityhub-integration.html
|
2725
|
+
# @return [Types::SecurityHubConfiguration]
|
2726
|
+
#
|
2727
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/GetFindingsPublicationConfigurationResponse AWS API Documentation
|
2728
|
+
#
|
2729
|
+
class GetFindingsPublicationConfigurationResponse < Struct.new(
|
2730
|
+
:security_hub_configuration)
|
2731
|
+
SENSITIVE = []
|
2732
|
+
include Aws::Structure
|
2733
|
+
end
|
2734
|
+
|
2701
2735
|
# Specifies one or more findings to retrieve.
|
2702
2736
|
#
|
2703
2737
|
# @note When making an API call, you may pass GetFindingsRequest
|
@@ -2778,7 +2812,13 @@ module Aws::Macie2
|
|
2778
2812
|
# The frequency with which Amazon Macie publishes updates to policy
|
2779
2813
|
# findings for an account. This includes publishing updates to AWS
|
2780
2814
|
# Security Hub and Amazon EventBridge (formerly called Amazon
|
2781
|
-
# CloudWatch Events).
|
2815
|
+
# CloudWatch Events). For more information, see [Monitoring and
|
2816
|
+
# processing findings][1] in the *Amazon Macie User Guide*. Valid
|
2817
|
+
# values are:
|
2818
|
+
#
|
2819
|
+
#
|
2820
|
+
#
|
2821
|
+
# [1]: https://docs.aws.amazon.com/macie/latest/user/findings-monitor.html
|
2782
2822
|
# @return [String]
|
2783
2823
|
#
|
2784
2824
|
# @!attribute [rw] service_role
|
@@ -4228,6 +4268,49 @@ module Aws::Macie2
|
|
4228
4268
|
include Aws::Structure
|
4229
4269
|
end
|
4230
4270
|
|
4271
|
+
# Specifies configuration settings for publishing findings to AWS
|
4272
|
+
# Security Hub automatically.
|
4273
|
+
#
|
4274
|
+
# @note When making an API call, you may pass PutFindingsPublicationConfigurationRequest
|
4275
|
+
# data as a hash:
|
4276
|
+
#
|
4277
|
+
# {
|
4278
|
+
# client_token: "__string",
|
4279
|
+
# security_hub_configuration: {
|
4280
|
+
# publish_classification_findings: false, # required
|
4281
|
+
# publish_policy_findings: false, # required
|
4282
|
+
# },
|
4283
|
+
# }
|
4284
|
+
#
|
4285
|
+
# @!attribute [rw] client_token
|
4286
|
+
# **A suitable default value is auto-generated.** You should normally
|
4287
|
+
# not need to pass this option.
|
4288
|
+
# @return [String]
|
4289
|
+
#
|
4290
|
+
# @!attribute [rw] security_hub_configuration
|
4291
|
+
# Specifies configuration settings that determine which findings are
|
4292
|
+
# published to AWS Security Hub automatically. For information about
|
4293
|
+
# how Macie publishes findings to Security Hub, see [Amazon Macie
|
4294
|
+
# integration with Security Hub][1] in the *Amazon Macie User Guide*.
|
4295
|
+
#
|
4296
|
+
#
|
4297
|
+
#
|
4298
|
+
# [1]: https://docs.aws.amazon.com/macie/latest/user/securityhub-integration.html
|
4299
|
+
# @return [Types::SecurityHubConfiguration]
|
4300
|
+
#
|
4301
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/PutFindingsPublicationConfigurationRequest AWS API Documentation
|
4302
|
+
#
|
4303
|
+
class PutFindingsPublicationConfigurationRequest < Struct.new(
|
4304
|
+
:client_token,
|
4305
|
+
:security_hub_configuration)
|
4306
|
+
SENSITIVE = []
|
4307
|
+
include Aws::Structure
|
4308
|
+
end
|
4309
|
+
|
4310
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/PutFindingsPublicationConfigurationResponse AWS API Documentation
|
4311
|
+
#
|
4312
|
+
class PutFindingsPublicationConfigurationResponse < Aws::EmptyStructure; end
|
4313
|
+
|
4231
4314
|
# Provides details about the location of an occurrence of sensitive data
|
4232
4315
|
# in an Adobe Portable Document Format file, Microsoft Word document, or
|
4233
4316
|
# non-binary text file.
|
@@ -4665,6 +4748,38 @@ module Aws::Macie2
|
|
4665
4748
|
include Aws::Structure
|
4666
4749
|
end
|
4667
4750
|
|
4751
|
+
# Specifies configuration settings that determine which findings are
|
4752
|
+
# published to AWS Security Hub automatically. For information about how
|
4753
|
+
# Macie publishes findings to Security Hub, see [Amazon Macie
|
4754
|
+
# integration with Security Hub][1] in the *Amazon Macie User Guide*.
|
4755
|
+
#
|
4756
|
+
#
|
4757
|
+
#
|
4758
|
+
# [1]: https://docs.aws.amazon.com/macie/latest/user/securityhub-integration.html
|
4759
|
+
#
|
4760
|
+
# @note When making an API call, you may pass SecurityHubConfiguration
|
4761
|
+
# data as a hash:
|
4762
|
+
#
|
4763
|
+
# {
|
4764
|
+
# publish_classification_findings: false, # required
|
4765
|
+
# publish_policy_findings: false, # required
|
4766
|
+
# }
|
4767
|
+
#
|
4768
|
+
# @!attribute [rw] publish_classification_findings
|
4769
|
+
# @return [Boolean]
|
4770
|
+
#
|
4771
|
+
# @!attribute [rw] publish_policy_findings
|
4772
|
+
# @return [Boolean]
|
4773
|
+
#
|
4774
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/SecurityHubConfiguration AWS API Documentation
|
4775
|
+
#
|
4776
|
+
class SecurityHubConfiguration < Struct.new(
|
4777
|
+
:publish_classification_findings,
|
4778
|
+
:publish_policy_findings)
|
4779
|
+
SENSITIVE = []
|
4780
|
+
include Aws::Structure
|
4781
|
+
end
|
4782
|
+
|
4668
4783
|
# Provides information about the category, types, and occurrences of
|
4669
4784
|
# sensitive data that produced a sensitive data finding.
|
4670
4785
|
#
|
@@ -5273,7 +5388,13 @@ module Aws::Macie2
|
|
5273
5388
|
# The frequency with which Amazon Macie publishes updates to policy
|
5274
5389
|
# findings for an account. This includes publishing updates to AWS
|
5275
5390
|
# Security Hub and Amazon EventBridge (formerly called Amazon
|
5276
|
-
# CloudWatch Events).
|
5391
|
+
# CloudWatch Events). For more information, see [Monitoring and
|
5392
|
+
# processing findings][1] in the *Amazon Macie User Guide*. Valid
|
5393
|
+
# values are:
|
5394
|
+
#
|
5395
|
+
#
|
5396
|
+
#
|
5397
|
+
# [1]: https://docs.aws.amazon.com/macie/latest/user/findings-monitor.html
|
5277
5398
|
# @return [String]
|
5278
5399
|
#
|
5279
5400
|
# @!attribute [rw] status
|
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.26.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-03-
|
11
|
+
date: 2021-03-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
|
|
66
66
|
licenses:
|
67
67
|
- Apache-2.0
|
68
68
|
metadata:
|
69
|
-
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
70
|
-
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
69
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-macie2
|
70
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-macie2/CHANGELOG.md
|
71
71
|
post_install_message:
|
72
72
|
rdoc_options: []
|
73
73
|
require_paths:
|