aws-sdk-macie2 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-macie2.rb +1 -1
- data/lib/aws-sdk-macie2/client.rb +30 -11
- data/lib/aws-sdk-macie2/client_api.rb +55 -0
- data/lib/aws-sdk-macie2/types.rb +185 -105
- 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: 80aa60e9aad15bfed1af5c45507c056bc5383e9f6d1713e7d078476faf61e4cf
|
4
|
+
data.tar.gz: 14394bd9f3b8d93f37fbd6df81eec563ae062a23816ddfc6a3050cf9009afe77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e7463e5b679b6d4c90da721b30b1f9ba898d4f174a33e1d0bb88450926f8fd4ef8c06ae9507f4aeac11e7d13c17daad14360f1a63097f10d2655bd0517da8be
|
7
|
+
data.tar.gz: 41439a320744b2bc876ee3505478abfa2a33668a34123a0c87f19cb80bd6611fda2eca24ba94b94575cf4dcc8355dfe0e3e5b3ba75434118b47d5960bd32f86a
|
data/lib/aws-sdk-macie2.rb
CHANGED
@@ -757,7 +757,7 @@ module Aws::Macie2
|
|
757
757
|
req.send_request(options)
|
758
758
|
end
|
759
759
|
|
760
|
-
#
|
760
|
+
# Soft deletes a custom data identifier.
|
761
761
|
#
|
762
762
|
# @option params [required, String] :id
|
763
763
|
#
|
@@ -872,6 +872,8 @@ module Aws::Macie2
|
|
872
872
|
# * {Types::DescribeBucketsResponse#buckets #buckets} => Array<Types::BucketMetadata>
|
873
873
|
# * {Types::DescribeBucketsResponse#next_token #next_token} => String
|
874
874
|
#
|
875
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
876
|
+
#
|
875
877
|
# @example Request syntax with placeholder values
|
876
878
|
#
|
877
879
|
# resp = client.describe_buckets({
|
@@ -1319,8 +1321,8 @@ module Aws::Macie2
|
|
1319
1321
|
# @option params [Integer] :size
|
1320
1322
|
#
|
1321
1323
|
# @option params [Types::FindingStatisticsSortCriteria] :sort_criteria
|
1322
|
-
# Specifies criteria for sorting the results of a query
|
1323
|
-
# about findings.
|
1324
|
+
# Specifies criteria for sorting the results of a query that retrieves
|
1325
|
+
# aggregated statistical data about findings.
|
1324
1326
|
#
|
1325
1327
|
# @return [Types::GetFindingStatisticsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1326
1328
|
#
|
@@ -1631,7 +1633,7 @@ module Aws::Macie2
|
|
1631
1633
|
# resp.master.account_id #=> String
|
1632
1634
|
# resp.master.invitation_id #=> String
|
1633
1635
|
# resp.master.invited_at #=> Time
|
1634
|
-
# resp.master.relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed"
|
1636
|
+
# resp.master.relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed", "RegionDisabled", "AccountSuspended"
|
1635
1637
|
#
|
1636
1638
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/GetMasterAccount AWS API Documentation
|
1637
1639
|
#
|
@@ -1671,7 +1673,7 @@ module Aws::Macie2
|
|
1671
1673
|
# resp.email #=> String
|
1672
1674
|
# resp.invited_at #=> Time
|
1673
1675
|
# resp.master_account_id #=> String
|
1674
|
-
# resp.relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed"
|
1676
|
+
# resp.relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed", "RegionDisabled", "AccountSuspended"
|
1675
1677
|
# resp.tags #=> Hash
|
1676
1678
|
# resp.tags["__string"] #=> String
|
1677
1679
|
# resp.updated_at #=> Time
|
@@ -1703,6 +1705,8 @@ module Aws::Macie2
|
|
1703
1705
|
# * {Types::GetUsageStatisticsResponse#next_token #next_token} => String
|
1704
1706
|
# * {Types::GetUsageStatisticsResponse#records #records} => Array<Types::UsageRecord>
|
1705
1707
|
#
|
1708
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1709
|
+
#
|
1706
1710
|
# @example Request syntax with placeholder values
|
1707
1711
|
#
|
1708
1712
|
# resp = client.get_usage_statistics({
|
@@ -1765,8 +1769,8 @@ module Aws::Macie2
|
|
1765
1769
|
req.send_request(options)
|
1766
1770
|
end
|
1767
1771
|
|
1768
|
-
# Retrieves
|
1769
|
-
#
|
1772
|
+
# Retrieves a subset of information about one or more classification
|
1773
|
+
# jobs.
|
1770
1774
|
#
|
1771
1775
|
# @option params [Types::ListJobsFilterCriteria] :filter_criteria
|
1772
1776
|
# Specifies criteria for filtering the results of a request for
|
@@ -1785,6 +1789,8 @@ module Aws::Macie2
|
|
1785
1789
|
# * {Types::ListClassificationJobsResponse#items #items} => Array<Types::JobSummary>
|
1786
1790
|
# * {Types::ListClassificationJobsResponse#next_token #next_token} => String
|
1787
1791
|
#
|
1792
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1793
|
+
#
|
1788
1794
|
# @example Request syntax with placeholder values
|
1789
1795
|
#
|
1790
1796
|
# resp = client.list_classification_jobs({
|
@@ -1847,6 +1853,8 @@ module Aws::Macie2
|
|
1847
1853
|
# * {Types::ListCustomDataIdentifiersResponse#items #items} => Array<Types::CustomDataIdentifierSummary>
|
1848
1854
|
# * {Types::ListCustomDataIdentifiersResponse#next_token #next_token} => String
|
1849
1855
|
#
|
1856
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1857
|
+
#
|
1850
1858
|
# @example Request syntax with placeholder values
|
1851
1859
|
#
|
1852
1860
|
# resp = client.list_custom_data_identifiers({
|
@@ -1892,6 +1900,8 @@ module Aws::Macie2
|
|
1892
1900
|
# * {Types::ListFindingsResponse#finding_ids #finding_ids} => Array<String>
|
1893
1901
|
# * {Types::ListFindingsResponse#next_token #next_token} => String
|
1894
1902
|
#
|
1903
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1904
|
+
#
|
1895
1905
|
# @example Request syntax with placeholder values
|
1896
1906
|
#
|
1897
1907
|
# resp = client.list_findings({
|
@@ -1942,6 +1952,8 @@ module Aws::Macie2
|
|
1942
1952
|
# * {Types::ListFindingsFiltersResponse#findings_filter_list_items #findings_filter_list_items} => Array<Types::FindingsFilterListItem>
|
1943
1953
|
# * {Types::ListFindingsFiltersResponse#next_token #next_token} => String
|
1944
1954
|
#
|
1955
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1956
|
+
#
|
1945
1957
|
# @example Request syntax with placeholder values
|
1946
1958
|
#
|
1947
1959
|
# resp = client.list_findings_filters({
|
@@ -1952,6 +1964,7 @@ module Aws::Macie2
|
|
1952
1964
|
# @example Response structure
|
1953
1965
|
#
|
1954
1966
|
# resp.findings_filter_list_items #=> Array
|
1967
|
+
# resp.findings_filter_list_items[0].action #=> String, one of "ARCHIVE", "NOOP"
|
1955
1968
|
# resp.findings_filter_list_items[0].arn #=> String
|
1956
1969
|
# resp.findings_filter_list_items[0].id #=> String
|
1957
1970
|
# resp.findings_filter_list_items[0].name #=> String
|
@@ -1980,6 +1993,8 @@ module Aws::Macie2
|
|
1980
1993
|
# * {Types::ListInvitationsResponse#invitations #invitations} => Array<Types::Invitation>
|
1981
1994
|
# * {Types::ListInvitationsResponse#next_token #next_token} => String
|
1982
1995
|
#
|
1996
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1997
|
+
#
|
1983
1998
|
# @example Request syntax with placeholder values
|
1984
1999
|
#
|
1985
2000
|
# resp = client.list_invitations({
|
@@ -1993,7 +2008,7 @@ module Aws::Macie2
|
|
1993
2008
|
# resp.invitations[0].account_id #=> String
|
1994
2009
|
# resp.invitations[0].invitation_id #=> String
|
1995
2010
|
# resp.invitations[0].invited_at #=> Time
|
1996
|
-
# resp.invitations[0].relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed"
|
2011
|
+
# resp.invitations[0].relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed", "RegionDisabled", "AccountSuspended"
|
1997
2012
|
# resp.next_token #=> String
|
1998
2013
|
#
|
1999
2014
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ListInvitations AWS API Documentation
|
@@ -2019,6 +2034,8 @@ module Aws::Macie2
|
|
2019
2034
|
# * {Types::ListMembersResponse#members #members} => Array<Types::Member>
|
2020
2035
|
# * {Types::ListMembersResponse#next_token #next_token} => String
|
2021
2036
|
#
|
2037
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2038
|
+
#
|
2022
2039
|
# @example Request syntax with placeholder values
|
2023
2040
|
#
|
2024
2041
|
# resp = client.list_members({
|
@@ -2035,7 +2052,7 @@ module Aws::Macie2
|
|
2035
2052
|
# resp.members[0].email #=> String
|
2036
2053
|
# resp.members[0].invited_at #=> Time
|
2037
2054
|
# resp.members[0].master_account_id #=> String
|
2038
|
-
# resp.members[0].relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed"
|
2055
|
+
# resp.members[0].relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed", "RegionDisabled", "AccountSuspended"
|
2039
2056
|
# resp.members[0].tags #=> Hash
|
2040
2057
|
# resp.members[0].tags["__string"] #=> String
|
2041
2058
|
# resp.members[0].updated_at #=> Time
|
@@ -2062,6 +2079,8 @@ module Aws::Macie2
|
|
2062
2079
|
# * {Types::ListOrganizationAdminAccountsResponse#admin_accounts #admin_accounts} => Array<Types::AdminAccount>
|
2063
2080
|
# * {Types::ListOrganizationAdminAccountsResponse#next_token #next_token} => String
|
2064
2081
|
#
|
2082
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2083
|
+
#
|
2065
2084
|
# @example Request syntax with placeholder values
|
2066
2085
|
#
|
2067
2086
|
# resp = client.list_organization_admin_accounts({
|
@@ -2254,7 +2273,7 @@ module Aws::Macie2
|
|
2254
2273
|
# @option params [required, String] :job_id
|
2255
2274
|
#
|
2256
2275
|
# @option params [required, String] :job_status
|
2257
|
-
# The current status of a classification job.
|
2276
|
+
# The current status of a classification job. Possible values are:
|
2258
2277
|
#
|
2259
2278
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2260
2279
|
#
|
@@ -2424,7 +2443,7 @@ module Aws::Macie2
|
|
2424
2443
|
params: params,
|
2425
2444
|
config: config)
|
2426
2445
|
context[:gem_name] = 'aws-sdk-macie2'
|
2427
|
-
context[:gem_version] = '1.
|
2446
|
+
context[:gem_version] = '1.6.0'
|
2428
2447
|
Seahorse::Client::Request.new(handlers, context)
|
2429
2448
|
end
|
2430
2449
|
|
@@ -677,6 +677,7 @@ module Aws::Macie2
|
|
677
677
|
FindingStatisticsSortCriteria.add_member(:order_by, Shapes::ShapeRef.new(shape: OrderBy, location_name: "orderBy"))
|
678
678
|
FindingStatisticsSortCriteria.struct_class = Types::FindingStatisticsSortCriteria
|
679
679
|
|
680
|
+
FindingsFilterListItem.add_member(:action, Shapes::ShapeRef.new(shape: FindingsFilterAction, location_name: "action"))
|
680
681
|
FindingsFilterListItem.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
681
682
|
FindingsFilterListItem.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
682
683
|
FindingsFilterListItem.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
@@ -1471,6 +1472,12 @@ module Aws::Macie2
|
|
1471
1472
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1472
1473
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1473
1474
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1475
|
+
o[:pager] = Aws::Pager.new(
|
1476
|
+
limit_key: "max_results",
|
1477
|
+
tokens: {
|
1478
|
+
"next_token" => "next_token"
|
1479
|
+
}
|
1480
|
+
)
|
1474
1481
|
end)
|
1475
1482
|
|
1476
1483
|
api.add_operation(:describe_classification_job, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1756,6 +1763,12 @@ module Aws::Macie2
|
|
1756
1763
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1757
1764
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1758
1765
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1766
|
+
o[:pager] = Aws::Pager.new(
|
1767
|
+
limit_key: "max_results",
|
1768
|
+
tokens: {
|
1769
|
+
"next_token" => "next_token"
|
1770
|
+
}
|
1771
|
+
)
|
1759
1772
|
end)
|
1760
1773
|
|
1761
1774
|
api.add_operation(:get_usage_totals, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1786,6 +1799,12 @@ module Aws::Macie2
|
|
1786
1799
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1787
1800
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1788
1801
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1802
|
+
o[:pager] = Aws::Pager.new(
|
1803
|
+
limit_key: "max_results",
|
1804
|
+
tokens: {
|
1805
|
+
"next_token" => "next_token"
|
1806
|
+
}
|
1807
|
+
)
|
1789
1808
|
end)
|
1790
1809
|
|
1791
1810
|
api.add_operation(:list_custom_data_identifiers, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1801,6 +1820,12 @@ module Aws::Macie2
|
|
1801
1820
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1802
1821
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1803
1822
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1823
|
+
o[:pager] = Aws::Pager.new(
|
1824
|
+
limit_key: "max_results",
|
1825
|
+
tokens: {
|
1826
|
+
"next_token" => "next_token"
|
1827
|
+
}
|
1828
|
+
)
|
1804
1829
|
end)
|
1805
1830
|
|
1806
1831
|
api.add_operation(:list_findings, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1816,6 +1841,12 @@ module Aws::Macie2
|
|
1816
1841
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1817
1842
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1818
1843
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1844
|
+
o[:pager] = Aws::Pager.new(
|
1845
|
+
limit_key: "max_results",
|
1846
|
+
tokens: {
|
1847
|
+
"next_token" => "next_token"
|
1848
|
+
}
|
1849
|
+
)
|
1819
1850
|
end)
|
1820
1851
|
|
1821
1852
|
api.add_operation(:list_findings_filters, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1831,6 +1862,12 @@ module Aws::Macie2
|
|
1831
1862
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1832
1863
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1833
1864
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1865
|
+
o[:pager] = Aws::Pager.new(
|
1866
|
+
limit_key: "max_results",
|
1867
|
+
tokens: {
|
1868
|
+
"next_token" => "next_token"
|
1869
|
+
}
|
1870
|
+
)
|
1834
1871
|
end)
|
1835
1872
|
|
1836
1873
|
api.add_operation(:list_invitations, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1846,6 +1883,12 @@ module Aws::Macie2
|
|
1846
1883
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1847
1884
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1848
1885
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1886
|
+
o[:pager] = Aws::Pager.new(
|
1887
|
+
limit_key: "max_results",
|
1888
|
+
tokens: {
|
1889
|
+
"next_token" => "next_token"
|
1890
|
+
}
|
1891
|
+
)
|
1849
1892
|
end)
|
1850
1893
|
|
1851
1894
|
api.add_operation(:list_members, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1861,6 +1904,12 @@ module Aws::Macie2
|
|
1861
1904
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1862
1905
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1863
1906
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1907
|
+
o[:pager] = Aws::Pager.new(
|
1908
|
+
limit_key: "max_results",
|
1909
|
+
tokens: {
|
1910
|
+
"next_token" => "next_token"
|
1911
|
+
}
|
1912
|
+
)
|
1864
1913
|
end)
|
1865
1914
|
|
1866
1915
|
api.add_operation(:list_organization_admin_accounts, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1876,6 +1925,12 @@ module Aws::Macie2
|
|
1876
1925
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1877
1926
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1878
1927
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1928
|
+
o[:pager] = Aws::Pager.new(
|
1929
|
+
limit_key: "max_results",
|
1930
|
+
tokens: {
|
1931
|
+
"next_token" => "next_token"
|
1932
|
+
}
|
1933
|
+
)
|
1879
1934
|
end)
|
1880
1935
|
|
1881
1936
|
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-macie2/types.rb
CHANGED
@@ -140,18 +140,8 @@ module Aws::Macie2
|
|
140
140
|
include Aws::Structure
|
141
141
|
end
|
142
142
|
|
143
|
-
#
|
144
|
-
#
|
145
|
-
# * The name of the operation that was invoked most recently and
|
146
|
-
# produced the finding (api).
|
147
|
-
#
|
148
|
-
# * The first date and time when any operation was invoked and produced
|
149
|
-
# the finding (firstSeen).
|
150
|
-
#
|
151
|
-
# * The most recent date and time when the specified operation was
|
152
|
-
# invoked and produced the finding (lastSeen).
|
153
|
-
#
|
154
|
-
# All date and time values are in UTC and extended ISO 8601 format.
|
143
|
+
# Provides information about an API operation that an entity invoked for
|
144
|
+
# an affected resource.
|
155
145
|
#
|
156
146
|
# @!attribute [rw] api
|
157
147
|
# @return [String]
|
@@ -176,7 +166,10 @@ module Aws::Macie2
|
|
176
166
|
include Aws::Structure
|
177
167
|
end
|
178
168
|
|
179
|
-
#
|
169
|
+
# Provides information about an identity that performed an action on an
|
170
|
+
# affected resource by using temporary security credentials. The
|
171
|
+
# credentials were obtained using the AssumeRole operation of the AWS
|
172
|
+
# Security Token Service (AWS STS) API.
|
180
173
|
#
|
181
174
|
# @!attribute [rw] access_key_id
|
182
175
|
# @return [String]
|
@@ -207,7 +200,9 @@ module Aws::Macie2
|
|
207
200
|
include Aws::Structure
|
208
201
|
end
|
209
202
|
|
210
|
-
#
|
203
|
+
# Provides information about an AWS account and entity that performed an
|
204
|
+
# action on an affected resource. The action was performed using the
|
205
|
+
# credentials for an AWS account other than your own account.
|
211
206
|
#
|
212
207
|
# @!attribute [rw] account_id
|
213
208
|
# @return [String]
|
@@ -224,7 +219,8 @@ module Aws::Macie2
|
|
224
219
|
include Aws::Structure
|
225
220
|
end
|
226
221
|
|
227
|
-
#
|
222
|
+
# Provides information about an AWS service that performed an action on
|
223
|
+
# an affected resource.
|
228
224
|
#
|
229
225
|
# @!attribute [rw] invoked_by
|
230
226
|
# @return [String]
|
@@ -341,8 +337,9 @@ module Aws::Macie2
|
|
341
337
|
include Aws::Structure
|
342
338
|
end
|
343
339
|
|
344
|
-
#
|
345
|
-
# combination of permissions settings for each
|
340
|
+
# Provides information about the number of S3 buckets that are publicly
|
341
|
+
# accessible based on a combination of permissions settings for each
|
342
|
+
# bucket.
|
346
343
|
#
|
347
344
|
# @!attribute [rw] publicly_accessible
|
348
345
|
# @return [Integer]
|
@@ -363,9 +360,8 @@ module Aws::Macie2
|
|
363
360
|
include Aws::Structure
|
364
361
|
end
|
365
362
|
|
366
|
-
#
|
367
|
-
#
|
368
|
-
# encrypted.
|
363
|
+
# Provides information about the number of S3 buckets that use certain
|
364
|
+
# types of server-side encryption or don't encrypt objects by default.
|
369
365
|
#
|
370
366
|
# @!attribute [rw] kms_managed
|
371
367
|
# @return [Integer]
|
@@ -386,8 +382,8 @@ module Aws::Macie2
|
|
386
382
|
include Aws::Structure
|
387
383
|
end
|
388
384
|
|
389
|
-
#
|
390
|
-
#
|
385
|
+
# Provides information about the number of S3 buckets that are shared
|
386
|
+
# with other AWS accounts.
|
391
387
|
#
|
392
388
|
# @!attribute [rw] external
|
393
389
|
# @return [Integer]
|
@@ -519,6 +515,9 @@ module Aws::Macie2
|
|
519
515
|
# @return [Integer]
|
520
516
|
#
|
521
517
|
# @!attribute [rw] object_count_by_encryption_type
|
518
|
+
# The total number of objects that are in the bucket, grouped by
|
519
|
+
# server-side encryption type. This includes a grouping that reports
|
520
|
+
# the total number of objects that aren't encrypted.
|
522
521
|
# @return [Types::ObjectCountByEncryptionType]
|
523
522
|
#
|
524
523
|
# @!attribute [rw] public_access
|
@@ -574,7 +573,7 @@ module Aws::Macie2
|
|
574
573
|
end
|
575
574
|
|
576
575
|
# The account-level and bucket-level permissions settings for an S3
|
577
|
-
# bucket
|
576
|
+
# bucket.
|
578
577
|
#
|
579
578
|
# @!attribute [rw] account_level_permissions
|
580
579
|
# Provides information about account-level permissions settings that
|
@@ -621,7 +620,7 @@ module Aws::Macie2
|
|
621
620
|
#
|
622
621
|
# @!attribute [rw] permission_configuration
|
623
622
|
# The account-level and bucket-level permissions settings for an S3
|
624
|
-
# bucket
|
623
|
+
# bucket.
|
625
624
|
# @return [Types::BucketPermissionConfiguration]
|
626
625
|
#
|
627
626
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/BucketPublicAccess AWS API Documentation
|
@@ -673,8 +672,8 @@ module Aws::Macie2
|
|
673
672
|
#
|
674
673
|
# @!attribute [rw] result
|
675
674
|
# Provides detailed information about a sensitive data finding,
|
676
|
-
# including the types and number of occurrences of the data
|
677
|
-
# found.
|
675
|
+
# including the types and number of occurrences of the sensitive data
|
676
|
+
# that was found.
|
678
677
|
# @return [Types::ClassificationResult]
|
679
678
|
#
|
680
679
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ClassificationDetails AWS API Documentation
|
@@ -717,8 +716,8 @@ module Aws::Macie2
|
|
717
716
|
end
|
718
717
|
|
719
718
|
# Provides detailed information about a sensitive data finding,
|
720
|
-
# including the types and number of occurrences of the data
|
721
|
-
# found.
|
719
|
+
# including the types and number of occurrences of the sensitive data
|
720
|
+
# that was found.
|
722
721
|
#
|
723
722
|
# @!attribute [rw] custom_data_identifiers
|
724
723
|
# Provides information about the number of occurrences of the data
|
@@ -785,7 +784,10 @@ module Aws::Macie2
|
|
785
784
|
end
|
786
785
|
|
787
786
|
# Specifies the scope, schedule, and other settings for a classification
|
788
|
-
# job.
|
787
|
+
# job. You can't delete or change the settings for a classification job
|
788
|
+
# after you create it. In Amazon Macie, classification jobs are
|
789
|
+
# immutable. This ensures accurate data classification results for
|
790
|
+
# audits or investigations.
|
789
791
|
#
|
790
792
|
# @note When making an API call, you may pass CreateClassificationJobRequest
|
791
793
|
# data as a hash:
|
@@ -942,7 +944,10 @@ module Aws::Macie2
|
|
942
944
|
end
|
943
945
|
|
944
946
|
# Specifies the criteria and other settings for a new custom data
|
945
|
-
# identifier.
|
947
|
+
# identifier. You can't change a custom data identifier after you
|
948
|
+
# create it. In Amazon Macie, custom data identifiers are immutable.
|
949
|
+
# This ensures accurate data classification results for audits or
|
950
|
+
# investigations.
|
946
951
|
#
|
947
952
|
# @note When making an API call, you may pass CreateCustomDataIdentifierRequest
|
948
953
|
# data as a hash:
|
@@ -1307,7 +1312,9 @@ module Aws::Macie2
|
|
1307
1312
|
# that detected the data for the finding.
|
1308
1313
|
#
|
1309
1314
|
# @!attribute [rw] detections
|
1310
|
-
#
|
1315
|
+
# Provides information about custom data identifiers that produced a
|
1316
|
+
# sensitive data finding, and the number of occurrences of the data
|
1317
|
+
# that each identifier detected.
|
1311
1318
|
# @return [Array<Types::CustomDetection>]
|
1312
1319
|
#
|
1313
1320
|
# @!attribute [rw] total_count
|
@@ -1345,6 +1352,9 @@ module Aws::Macie2
|
|
1345
1352
|
include Aws::Structure
|
1346
1353
|
end
|
1347
1354
|
|
1355
|
+
# Specifies that a classification job runs once a day, every day. This
|
1356
|
+
# is an empty object.
|
1357
|
+
#
|
1348
1358
|
# @api private
|
1349
1359
|
#
|
1350
1360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/DailySchedule AWS API Documentation
|
@@ -1388,7 +1398,7 @@ module Aws::Macie2
|
|
1388
1398
|
end
|
1389
1399
|
|
1390
1400
|
# Provides information about sensitive data that was detected by managed
|
1391
|
-
# data identifiers and produced a finding.
|
1401
|
+
# data identifiers and produced a sensitive data finding.
|
1392
1402
|
#
|
1393
1403
|
# @!attribute [rw] count
|
1394
1404
|
# @return [Integer]
|
@@ -1623,7 +1633,7 @@ module Aws::Macie2
|
|
1623
1633
|
# @return [String]
|
1624
1634
|
#
|
1625
1635
|
# @!attribute [rw] job_status
|
1626
|
-
# The current status of a classification job.
|
1636
|
+
# The current status of a classification job. Possible values are:
|
1627
1637
|
# @return [String]
|
1628
1638
|
#
|
1629
1639
|
# @!attribute [rw] job_type
|
@@ -1769,6 +1779,9 @@ module Aws::Macie2
|
|
1769
1779
|
#
|
1770
1780
|
class DisassociateMemberResponse < Aws::EmptyStructure; end
|
1771
1781
|
|
1782
|
+
# Provides information about the domain name of the device that an
|
1783
|
+
# entity used to perform an action on an affected resource.
|
1784
|
+
#
|
1772
1785
|
# @!attribute [rw] domain_name
|
1773
1786
|
# @return [String]
|
1774
1787
|
#
|
@@ -1862,7 +1875,10 @@ module Aws::Macie2
|
|
1862
1875
|
#
|
1863
1876
|
class EnableOrganizationAdminAccountResponse < Aws::EmptyStructure; end
|
1864
1877
|
|
1865
|
-
#
|
1878
|
+
# Provides information about an identity that performed an action on an
|
1879
|
+
# affected resource by using temporary security credentials. The
|
1880
|
+
# credentials were obtained using the GetFederationToken operation of
|
1881
|
+
# the AWS Security Token Service (AWS STS) API.
|
1866
1882
|
#
|
1867
1883
|
# @!attribute [rw] access_key_id
|
1868
1884
|
# @return [String]
|
@@ -1926,7 +1942,7 @@ module Aws::Macie2
|
|
1926
1942
|
# @return [String]
|
1927
1943
|
#
|
1928
1944
|
# @!attribute [rw] policy_details
|
1929
|
-
# Provides
|
1945
|
+
# Provides the details of a policy finding.
|
1930
1946
|
# @return [Types::PolicyDetails]
|
1931
1947
|
#
|
1932
1948
|
# @!attribute [rw] region
|
@@ -1987,22 +2003,12 @@ module Aws::Macie2
|
|
1987
2003
|
#
|
1988
2004
|
# @!attribute [rw] action_type
|
1989
2005
|
# The type of action that occurred for the resource and produced the
|
1990
|
-
# policy finding
|
2006
|
+
# policy finding:
|
1991
2007
|
# @return [String]
|
1992
2008
|
#
|
1993
2009
|
# @!attribute [rw] api_call_details
|
1994
|
-
#
|
1995
|
-
#
|
1996
|
-
# * The name of the operation that was invoked most recently and
|
1997
|
-
# produced the finding (api).
|
1998
|
-
#
|
1999
|
-
# * The first date and time when any operation was invoked and
|
2000
|
-
# produced the finding (firstSeen).
|
2001
|
-
#
|
2002
|
-
# * The most recent date and time when the specified operation was
|
2003
|
-
# invoked and produced the finding (lastSeen).
|
2004
|
-
#
|
2005
|
-
# All date and time values are in UTC and extended ISO 8601 format.
|
2010
|
+
# Provides information about an API operation that an entity invoked
|
2011
|
+
# for an affected resource.
|
2006
2012
|
# @return [Types::ApiCallDetails]
|
2007
2013
|
#
|
2008
2014
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/FindingAction AWS API Documentation
|
@@ -2018,12 +2024,18 @@ module Aws::Macie2
|
|
2018
2024
|
# produced a policy finding for a resource.
|
2019
2025
|
#
|
2020
2026
|
# @!attribute [rw] domain_details
|
2027
|
+
# Provides information about the domain name of the device that an
|
2028
|
+
# entity used to perform an action on an affected resource.
|
2021
2029
|
# @return [Types::DomainDetails]
|
2022
2030
|
#
|
2023
2031
|
# @!attribute [rw] ip_address_details
|
2032
|
+
# Provides information about the IP address of the device that an
|
2033
|
+
# entity used to perform an action on an affected resource.
|
2024
2034
|
# @return [Types::IpAddressDetails]
|
2025
2035
|
#
|
2026
2036
|
# @!attribute [rw] user_identity
|
2037
|
+
# Provides information about the type and other characteristics of an
|
2038
|
+
# entity that performed an action on an affected resource.
|
2027
2039
|
# @return [Types::UserIdentity]
|
2028
2040
|
#
|
2029
2041
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/FindingActor AWS API Documentation
|
@@ -2068,8 +2080,8 @@ module Aws::Macie2
|
|
2068
2080
|
include Aws::Structure
|
2069
2081
|
end
|
2070
2082
|
|
2071
|
-
# Specifies criteria for sorting the results of a query
|
2072
|
-
# about findings.
|
2083
|
+
# Specifies criteria for sorting the results of a query that retrieves
|
2084
|
+
# aggregated statistical data about findings.
|
2073
2085
|
#
|
2074
2086
|
# @note When making an API call, you may pass FindingStatisticsSortCriteria
|
2075
2087
|
# data as a hash:
|
@@ -2097,6 +2109,12 @@ module Aws::Macie2
|
|
2097
2109
|
|
2098
2110
|
# Provides information about a findings filter.
|
2099
2111
|
#
|
2112
|
+
# @!attribute [rw] action
|
2113
|
+
# The action to perform on findings that meet the filter criteria. To
|
2114
|
+
# suppress (automatically archive) findings that meet the criteria,
|
2115
|
+
# set this value to ARCHIVE. Valid values are:
|
2116
|
+
# @return [String]
|
2117
|
+
#
|
2100
2118
|
# @!attribute [rw] arn
|
2101
2119
|
# @return [String]
|
2102
2120
|
#
|
@@ -2115,6 +2133,7 @@ module Aws::Macie2
|
|
2115
2133
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/FindingsFilterListItem AWS API Documentation
|
2116
2134
|
#
|
2117
2135
|
class FindingsFilterListItem < Struct.new(
|
2136
|
+
:action,
|
2118
2137
|
:arn,
|
2119
2138
|
:id,
|
2120
2139
|
:name,
|
@@ -2123,8 +2142,8 @@ module Aws::Macie2
|
|
2123
2142
|
include Aws::Structure
|
2124
2143
|
end
|
2125
2144
|
|
2126
|
-
# Specifies an account that's associated with S3 buckets to
|
2127
|
-
# aggregated statistical data for.
|
2145
|
+
# Specifies an account that's associated with the S3 buckets to
|
2146
|
+
# retrieve aggregated statistical data for.
|
2128
2147
|
#
|
2129
2148
|
# @note When making an API call, you may pass GetBucketStatisticsRequest
|
2130
2149
|
# data as a hash:
|
@@ -2152,19 +2171,20 @@ module Aws::Macie2
|
|
2152
2171
|
# @return [Integer]
|
2153
2172
|
#
|
2154
2173
|
# @!attribute [rw] bucket_count_by_effective_permission
|
2155
|
-
#
|
2156
|
-
# combination of permissions settings
|
2174
|
+
# Provides information about the number of S3 buckets that are
|
2175
|
+
# publicly accessible based on a combination of permissions settings
|
2176
|
+
# for each bucket.
|
2157
2177
|
# @return [Types::BucketCountByEffectivePermission]
|
2158
2178
|
#
|
2159
2179
|
# @!attribute [rw] bucket_count_by_encryption_type
|
2160
|
-
#
|
2161
|
-
#
|
2162
|
-
#
|
2180
|
+
# Provides information about the number of S3 buckets that use certain
|
2181
|
+
# types of server-side encryption or don't encrypt objects by
|
2182
|
+
# default.
|
2163
2183
|
# @return [Types::BucketCountByEncryptionType]
|
2164
2184
|
#
|
2165
2185
|
# @!attribute [rw] bucket_count_by_shared_access_type
|
2166
|
-
#
|
2167
|
-
#
|
2186
|
+
# Provides information about the number of S3 buckets that are shared
|
2187
|
+
# with other AWS accounts.
|
2168
2188
|
# @return [Types::BucketCountBySharedAccessType]
|
2169
2189
|
#
|
2170
2190
|
# @!attribute [rw] classifiable_object_count
|
@@ -2298,7 +2318,8 @@ module Aws::Macie2
|
|
2298
2318
|
end
|
2299
2319
|
|
2300
2320
|
# Specifies criteria for filtering, grouping, sorting, and paginating
|
2301
|
-
# the results of a query
|
2321
|
+
# the results of a query that retrieves aggregated statistical data
|
2322
|
+
# about findings.
|
2302
2323
|
#
|
2303
2324
|
# @note When making an API call, you may pass GetFindingStatisticsRequest
|
2304
2325
|
# data as a hash:
|
@@ -2336,8 +2357,8 @@ module Aws::Macie2
|
|
2336
2357
|
# @return [Integer]
|
2337
2358
|
#
|
2338
2359
|
# @!attribute [rw] sort_criteria
|
2339
|
-
# Specifies criteria for sorting the results of a query
|
2340
|
-
#
|
2360
|
+
# Specifies criteria for sorting the results of a query that retrieves
|
2361
|
+
# aggregated statistical data about findings.
|
2341
2362
|
# @return [Types::FindingStatisticsSortCriteria]
|
2342
2363
|
#
|
2343
2364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/GetFindingStatisticsRequest AWS API Documentation
|
@@ -2383,7 +2404,8 @@ module Aws::Macie2
|
|
2383
2404
|
include Aws::Structure
|
2384
2405
|
end
|
2385
2406
|
|
2386
|
-
# Provides information about
|
2407
|
+
# Provides information about the criteria and other settings for a
|
2408
|
+
# findings filter.
|
2387
2409
|
#
|
2388
2410
|
# @!attribute [rw] action
|
2389
2411
|
# The action to perform on findings that meet the filter criteria. To
|
@@ -2713,8 +2735,8 @@ module Aws::Macie2
|
|
2713
2735
|
include Aws::Structure
|
2714
2736
|
end
|
2715
2737
|
|
2716
|
-
# Provides a group of results for a query that retrieved
|
2717
|
-
# about findings.
|
2738
|
+
# Provides a group of results for a query that retrieved aggregated
|
2739
|
+
# statistical data about findings.
|
2718
2740
|
#
|
2719
2741
|
# @!attribute [rw] count
|
2720
2742
|
# @return [Integer]
|
@@ -2731,7 +2753,8 @@ module Aws::Macie2
|
|
2731
2753
|
include Aws::Structure
|
2732
2754
|
end
|
2733
2755
|
|
2734
|
-
#
|
2756
|
+
# Provides information about an AWS Identity and Access Management (IAM)
|
2757
|
+
# user who performed an action on an affected resource.
|
2735
2758
|
#
|
2736
2759
|
# @!attribute [rw] account_id
|
2737
2760
|
# @return [String]
|
@@ -2799,23 +2822,29 @@ module Aws::Macie2
|
|
2799
2822
|
include Aws::Structure
|
2800
2823
|
end
|
2801
2824
|
|
2825
|
+
# Provides information about the IP address of the device that an entity
|
2826
|
+
# used to perform an action on an affected resource.
|
2827
|
+
#
|
2802
2828
|
# @!attribute [rw] ip_address_v4
|
2803
2829
|
# @return [String]
|
2804
2830
|
#
|
2805
2831
|
# @!attribute [rw] ip_city
|
2806
|
-
#
|
2832
|
+
# Provides information about the city that an IP address originated
|
2833
|
+
# from.
|
2807
2834
|
# @return [Types::IpCity]
|
2808
2835
|
#
|
2809
2836
|
# @!attribute [rw] ip_country
|
2810
|
-
#
|
2837
|
+
# Provides information about the country that an IP address originated
|
2838
|
+
# from.
|
2811
2839
|
# @return [Types::IpCountry]
|
2812
2840
|
#
|
2813
2841
|
# @!attribute [rw] ip_geo_location
|
2814
|
-
#
|
2842
|
+
# Provides geographic coordinates that indicate where a specified IP
|
2843
|
+
# address originated from.
|
2815
2844
|
# @return [Types::IpGeoLocation]
|
2816
2845
|
#
|
2817
2846
|
# @!attribute [rw] ip_owner
|
2818
|
-
#
|
2847
|
+
# Provides information about the registered owner of an IP address.
|
2819
2848
|
# @return [Types::IpOwner]
|
2820
2849
|
#
|
2821
2850
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/IpAddressDetails AWS API Documentation
|
@@ -2830,7 +2859,8 @@ module Aws::Macie2
|
|
2830
2859
|
include Aws::Structure
|
2831
2860
|
end
|
2832
2861
|
|
2833
|
-
#
|
2862
|
+
# Provides information about the city that an IP address originated
|
2863
|
+
# from.
|
2834
2864
|
#
|
2835
2865
|
# @!attribute [rw] name
|
2836
2866
|
# @return [String]
|
@@ -2843,7 +2873,8 @@ module Aws::Macie2
|
|
2843
2873
|
include Aws::Structure
|
2844
2874
|
end
|
2845
2875
|
|
2846
|
-
#
|
2876
|
+
# Provides information about the country that an IP address originated
|
2877
|
+
# from.
|
2847
2878
|
#
|
2848
2879
|
# @!attribute [rw] code
|
2849
2880
|
# @return [String]
|
@@ -2860,7 +2891,8 @@ module Aws::Macie2
|
|
2860
2891
|
include Aws::Structure
|
2861
2892
|
end
|
2862
2893
|
|
2863
|
-
#
|
2894
|
+
# Provides geographic coordinates that indicate where a specified IP
|
2895
|
+
# address originated from.
|
2864
2896
|
#
|
2865
2897
|
# @!attribute [rw] lat
|
2866
2898
|
# @return [Float]
|
@@ -2877,7 +2909,7 @@ module Aws::Macie2
|
|
2877
2909
|
include Aws::Structure
|
2878
2910
|
end
|
2879
2911
|
|
2880
|
-
#
|
2912
|
+
# Provides information about the registered owner of an IP address.
|
2881
2913
|
#
|
2882
2914
|
# @!attribute [rw] asn
|
2883
2915
|
# @return [String]
|
@@ -2919,14 +2951,18 @@ module Aws::Macie2
|
|
2919
2951
|
# }
|
2920
2952
|
#
|
2921
2953
|
# @!attribute [rw] daily_schedule
|
2954
|
+
# Specifies that a classification job runs once a day, every day. This
|
2955
|
+
# is an empty object.
|
2922
2956
|
# @return [Types::DailySchedule]
|
2923
2957
|
#
|
2924
2958
|
# @!attribute [rw] monthly_schedule
|
2925
|
-
#
|
2926
|
-
#
|
2959
|
+
# Specifies a monthly recurrence pattern for running a classification
|
2960
|
+
# job.
|
2927
2961
|
# @return [Types::MonthlySchedule]
|
2928
2962
|
#
|
2929
2963
|
# @!attribute [rw] weekly_schedule
|
2964
|
+
# Specifies a weekly recurrence pattern for running a classification
|
2965
|
+
# job.
|
2930
2966
|
# @return [Types::WeeklySchedule]
|
2931
2967
|
#
|
2932
2968
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/JobScheduleFrequency AWS API Documentation
|
@@ -2939,8 +2975,8 @@ module Aws::Macie2
|
|
2939
2975
|
include Aws::Structure
|
2940
2976
|
end
|
2941
2977
|
|
2942
|
-
# Specifies
|
2943
|
-
# classification job
|
2978
|
+
# Specifies a property- or tag-based condition that defines criteria for
|
2979
|
+
# including or excluding objects from a classification job.
|
2944
2980
|
#
|
2945
2981
|
# @note When making an API call, you may pass JobScopeTerm
|
2946
2982
|
# data as a hash:
|
@@ -2983,7 +3019,8 @@ module Aws::Macie2
|
|
2983
3019
|
include Aws::Structure
|
2984
3020
|
end
|
2985
3021
|
|
2986
|
-
#
|
3022
|
+
# Specifies one or more property- and tag-based conditions that define
|
3023
|
+
# criteria for including or excluding objects from a classification job.
|
2987
3024
|
#
|
2988
3025
|
# @note When making an API call, you may pass JobScopingBlock
|
2989
3026
|
# data as a hash:
|
@@ -3035,7 +3072,7 @@ module Aws::Macie2
|
|
3035
3072
|
# @return [String]
|
3036
3073
|
#
|
3037
3074
|
# @!attribute [rw] job_status
|
3038
|
-
# The current status of a classification job.
|
3075
|
+
# The current status of a classification job. Possible values are:
|
3039
3076
|
# @return [String]
|
3040
3077
|
#
|
3041
3078
|
# @!attribute [rw] job_type
|
@@ -3620,8 +3657,8 @@ module Aws::Macie2
|
|
3620
3657
|
include Aws::Structure
|
3621
3658
|
end
|
3622
3659
|
|
3623
|
-
#
|
3624
|
-
#
|
3660
|
+
# Specifies a monthly recurrence pattern for running a classification
|
3661
|
+
# job.
|
3625
3662
|
#
|
3626
3663
|
# @note When making an API call, you may pass MonthlySchedule
|
3627
3664
|
# data as a hash:
|
@@ -3641,6 +3678,10 @@ module Aws::Macie2
|
|
3641
3678
|
include Aws::Structure
|
3642
3679
|
end
|
3643
3680
|
|
3681
|
+
# The total number of objects that are in the bucket, grouped by
|
3682
|
+
# server-side encryption type. This includes a grouping that reports the
|
3683
|
+
# total number of objects that aren't encrypted.
|
3684
|
+
#
|
3644
3685
|
# @!attribute [rw] customer_managed
|
3645
3686
|
# @return [Integer]
|
3646
3687
|
#
|
@@ -3664,7 +3705,7 @@ module Aws::Macie2
|
|
3664
3705
|
include Aws::Structure
|
3665
3706
|
end
|
3666
3707
|
|
3667
|
-
# Provides
|
3708
|
+
# Provides the details of a policy finding.
|
3668
3709
|
#
|
3669
3710
|
# @!attribute [rw] action
|
3670
3711
|
# Provides information about an action that occurred for a resource
|
@@ -3817,7 +3858,9 @@ module Aws::Macie2
|
|
3817
3858
|
# @return [Types::BucketPublicAccess]
|
3818
3859
|
#
|
3819
3860
|
# @!attribute [rw] tags
|
3820
|
-
#
|
3861
|
+
# Provides information about the tags that are associated with an S3
|
3862
|
+
# bucket or object. Each tag consists of a required tag key and an
|
3863
|
+
# associated tag value.
|
3821
3864
|
# @return [Array<Types::KeyValuePair>]
|
3822
3865
|
#
|
3823
3866
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/S3Bucket AWS API Documentation
|
@@ -3973,6 +4016,9 @@ module Aws::Macie2
|
|
3973
4016
|
# @return [Array<Types::S3BucketDefinitionForJob>]
|
3974
4017
|
#
|
3975
4018
|
# @!attribute [rw] scoping
|
4019
|
+
# Specifies one or more property- and tag-based conditions that refine
|
4020
|
+
# the scope of a classification job. These conditions define criteria
|
4021
|
+
# that determine which objects a job analyzes.
|
3976
4022
|
# @return [Types::Scoping]
|
3977
4023
|
#
|
3978
4024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/S3JobDefinition AWS API Documentation
|
@@ -4016,11 +4062,13 @@ module Aws::Macie2
|
|
4016
4062
|
# @return [Integer]
|
4017
4063
|
#
|
4018
4064
|
# @!attribute [rw] storage_class
|
4019
|
-
# The storage class of the S3 bucket or object.
|
4065
|
+
# The storage class of the S3 bucket or object. Possible values are:
|
4020
4066
|
# @return [String]
|
4021
4067
|
#
|
4022
4068
|
# @!attribute [rw] tags
|
4023
|
-
#
|
4069
|
+
# Provides information about the tags that are associated with an S3
|
4070
|
+
# bucket or object. Each tag consists of a required tag key and an
|
4071
|
+
# associated tag value.
|
4024
4072
|
# @return [Array<Types::KeyValuePair>]
|
4025
4073
|
#
|
4026
4074
|
# @!attribute [rw] version_id
|
@@ -4045,6 +4093,10 @@ module Aws::Macie2
|
|
4045
4093
|
include Aws::Structure
|
4046
4094
|
end
|
4047
4095
|
|
4096
|
+
# Specifies one or more property- and tag-based conditions that refine
|
4097
|
+
# the scope of a classification job. These conditions define criteria
|
4098
|
+
# that determine which objects a job analyzes.
|
4099
|
+
#
|
4048
4100
|
# @note When making an API call, you may pass Scoping
|
4049
4101
|
# data as a hash:
|
4050
4102
|
#
|
@@ -4096,11 +4148,15 @@ module Aws::Macie2
|
|
4096
4148
|
# }
|
4097
4149
|
#
|
4098
4150
|
# @!attribute [rw] excludes
|
4099
|
-
#
|
4151
|
+
# Specifies one or more property- and tag-based conditions that define
|
4152
|
+
# criteria for including or excluding objects from a classification
|
4153
|
+
# job.
|
4100
4154
|
# @return [Types::JobScopingBlock]
|
4101
4155
|
#
|
4102
4156
|
# @!attribute [rw] includes
|
4103
|
-
#
|
4157
|
+
# Specifies one or more property- and tag-based conditions that define
|
4158
|
+
# criteria for including or excluding objects from a classification
|
4159
|
+
# job.
|
4104
4160
|
# @return [Types::JobScopingBlock]
|
4105
4161
|
#
|
4106
4162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/Scoping AWS API Documentation
|
@@ -4117,11 +4173,14 @@ module Aws::Macie2
|
|
4117
4173
|
#
|
4118
4174
|
# @!attribute [rw] category
|
4119
4175
|
# The category of sensitive data that was detected and produced the
|
4120
|
-
# finding.
|
4176
|
+
# finding. Possible values are:
|
4121
4177
|
# @return [String]
|
4122
4178
|
#
|
4123
4179
|
# @!attribute [rw] detections
|
4124
|
-
#
|
4180
|
+
# Provides information about sensitive data that was detected by
|
4181
|
+
# managed data identifiers and produced a sensitive data finding, and
|
4182
|
+
# the number of occurrences of each type of sensitive data that was
|
4183
|
+
# detected.
|
4125
4184
|
# @return [Array<Types::DefaultDetection>]
|
4126
4185
|
#
|
4127
4186
|
# @!attribute [rw] total_count
|
@@ -4141,8 +4200,8 @@ module Aws::Macie2
|
|
4141
4200
|
# S3 bucket or object.
|
4142
4201
|
#
|
4143
4202
|
# @!attribute [rw] encryption_type
|
4144
|
-
# The server-side encryption
|
4145
|
-
# S3 bucket
|
4203
|
+
# The type of server-side encryption that's used to encrypt objects
|
4204
|
+
# in the S3 bucket. Valid values are:
|
4146
4205
|
# @return [String]
|
4147
4206
|
#
|
4148
4207
|
# @!attribute [rw] kms_master_key_id
|
@@ -4266,8 +4325,8 @@ module Aws::Macie2
|
|
4266
4325
|
# value.
|
4267
4326
|
#
|
4268
4327
|
# @!attribute [rw] description
|
4269
|
-
# The textual representation of the finding's severity.
|
4270
|
-
# are:
|
4328
|
+
# The textual representation of the finding's severity. Possible
|
4329
|
+
# values are:
|
4271
4330
|
# @return [String]
|
4272
4331
|
#
|
4273
4332
|
# @!attribute [rw] score
|
@@ -4601,7 +4660,7 @@ module Aws::Macie2
|
|
4601
4660
|
# @return [String]
|
4602
4661
|
#
|
4603
4662
|
# @!attribute [rw] job_status
|
4604
|
-
# The current status of a classification job.
|
4663
|
+
# The current status of a classification job. Possible values are:
|
4605
4664
|
# @return [String]
|
4606
4665
|
#
|
4607
4666
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/UpdateClassificationJobRequest AWS API Documentation
|
@@ -4851,7 +4910,7 @@ module Aws::Macie2
|
|
4851
4910
|
#
|
4852
4911
|
# @!attribute [rw] key
|
4853
4912
|
# The field to use to filter the results of a query for account quotas
|
4854
|
-
# and usage data
|
4913
|
+
# and usage data:
|
4855
4914
|
# @return [String]
|
4856
4915
|
#
|
4857
4916
|
# @!attribute [rw] values
|
@@ -4879,7 +4938,7 @@ module Aws::Macie2
|
|
4879
4938
|
#
|
4880
4939
|
# @!attribute [rw] key
|
4881
4940
|
# The field to use to sort the results of a query for account quotas
|
4882
|
-
# and usage data.
|
4941
|
+
# and usage data. Valid values are:
|
4883
4942
|
# @return [String]
|
4884
4943
|
#
|
4885
4944
|
# @!attribute [rw] order_by
|
@@ -4919,32 +4978,48 @@ module Aws::Macie2
|
|
4919
4978
|
include Aws::Structure
|
4920
4979
|
end
|
4921
4980
|
|
4981
|
+
# Provides information about the type and other characteristics of an
|
4982
|
+
# entity that performed an action on an affected resource.
|
4983
|
+
#
|
4922
4984
|
# @!attribute [rw] assumed_role
|
4923
|
-
#
|
4985
|
+
# Provides information about an identity that performed an action on
|
4986
|
+
# an affected resource by using temporary security credentials. The
|
4987
|
+
# credentials were obtained using the AssumeRole operation of the AWS
|
4988
|
+
# Security Token Service (AWS STS) API.
|
4924
4989
|
# @return [Types::AssumedRole]
|
4925
4990
|
#
|
4926
4991
|
# @!attribute [rw] aws_account
|
4927
|
-
#
|
4992
|
+
# Provides information about an AWS account and entity that performed
|
4993
|
+
# an action on an affected resource. The action was performed using
|
4994
|
+
# the credentials for an AWS account other than your own account.
|
4928
4995
|
# @return [Types::AwsAccount]
|
4929
4996
|
#
|
4930
4997
|
# @!attribute [rw] aws_service
|
4931
|
-
#
|
4998
|
+
# Provides information about an AWS service that performed an action
|
4999
|
+
# on an affected resource.
|
4932
5000
|
# @return [Types::AwsService]
|
4933
5001
|
#
|
4934
5002
|
# @!attribute [rw] federated_user
|
4935
|
-
#
|
5003
|
+
# Provides information about an identity that performed an action on
|
5004
|
+
# an affected resource by using temporary security credentials. The
|
5005
|
+
# credentials were obtained using the GetFederationToken operation of
|
5006
|
+
# the AWS Security Token Service (AWS STS) API.
|
4936
5007
|
# @return [Types::FederatedUser]
|
4937
5008
|
#
|
4938
5009
|
# @!attribute [rw] iam_user
|
4939
|
-
#
|
5010
|
+
# Provides information about an AWS Identity and Access Management
|
5011
|
+
# (IAM) user who performed an action on an affected resource.
|
4940
5012
|
# @return [Types::IamUser]
|
4941
5013
|
#
|
4942
5014
|
# @!attribute [rw] root
|
4943
|
-
#
|
5015
|
+
# Provides information about an AWS account and entity that performed
|
5016
|
+
# an action on an affected resource. The action was performed using
|
5017
|
+
# the credentials for your AWS account.
|
4944
5018
|
# @return [Types::UserIdentityRoot]
|
4945
5019
|
#
|
4946
5020
|
# @!attribute [rw] type
|
4947
|
-
#
|
5021
|
+
# The type of entity that performed the action on the affected
|
5022
|
+
# resource. Possible values are:
|
4948
5023
|
# @return [String]
|
4949
5024
|
#
|
4950
5025
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/UserIdentity AWS API Documentation
|
@@ -4961,7 +5036,9 @@ module Aws::Macie2
|
|
4961
5036
|
include Aws::Structure
|
4962
5037
|
end
|
4963
5038
|
|
4964
|
-
#
|
5039
|
+
# Provides information about an AWS account and entity that performed an
|
5040
|
+
# action on an affected resource. The action was performed using the
|
5041
|
+
# credentials for your AWS account.
|
4965
5042
|
#
|
4966
5043
|
# @!attribute [rw] account_id
|
4967
5044
|
# @return [String]
|
@@ -4996,6 +5073,9 @@ module Aws::Macie2
|
|
4996
5073
|
include Aws::Structure
|
4997
5074
|
end
|
4998
5075
|
|
5076
|
+
# Specifies a weekly recurrence pattern for running a classification
|
5077
|
+
# job.
|
5078
|
+
#
|
4999
5079
|
# @note When making an API call, you may pass WeeklySchedule
|
5000
5080
|
# data as a hash:
|
5001
5081
|
#
|
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.6.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: 2020-
|
11
|
+
date: 2020-07-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|