aws-sdk-macie2 1.4.0 → 1.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-macie2.rb +2 -2
- data/lib/aws-sdk-macie2/client.rb +55 -20
- data/lib/aws-sdk-macie2/client_api.rb +57 -0
- data/lib/aws-sdk-macie2/types.rb +370 -111
- 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: dec134dac1fb7dec50530e4dd6046588a9a3807668a2c7fe2f985f50dda96664
|
4
|
+
data.tar.gz: 4dd65410c0d2f17812e7c81e0a4cd4dc88d9d753fdb82b3aa3de1bfca113524f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bd05efe5d94d94ff7e4140f2dcd3d8e8aaa9bcea896827de8d61e0e05ba28ce2be006b1d18ddc7bd3ebfb8d326a7aa48746b122db60227aa47eda65e31a75f6
|
7
|
+
data.tar.gz: b0c00e12cb847e937a1a9052de0b9afd1c4979fd182c2a73f88543c79e25da2f724cdde2471534ec6f4426c9d9312629aaac03a58d0e8554843fdf5babb3d348
|
data/lib/aws-sdk-macie2.rb
CHANGED
@@ -85,13 +85,28 @@ module Aws::Macie2
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::Macie2
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -757,7 +772,7 @@ module Aws::Macie2
|
|
757
772
|
req.send_request(options)
|
758
773
|
end
|
759
774
|
|
760
|
-
#
|
775
|
+
# Soft deletes a custom data identifier.
|
761
776
|
#
|
762
777
|
# @option params [required, String] :id
|
763
778
|
#
|
@@ -872,6 +887,8 @@ module Aws::Macie2
|
|
872
887
|
# * {Types::DescribeBucketsResponse#buckets #buckets} => Array<Types::BucketMetadata>
|
873
888
|
# * {Types::DescribeBucketsResponse#next_token #next_token} => String
|
874
889
|
#
|
890
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
891
|
+
#
|
875
892
|
# @example Request syntax with placeholder values
|
876
893
|
#
|
877
894
|
# resp = client.describe_buckets({
|
@@ -1319,8 +1336,8 @@ module Aws::Macie2
|
|
1319
1336
|
# @option params [Integer] :size
|
1320
1337
|
#
|
1321
1338
|
# @option params [Types::FindingStatisticsSortCriteria] :sort_criteria
|
1322
|
-
# Specifies criteria for sorting the results of a query
|
1323
|
-
# about findings.
|
1339
|
+
# Specifies criteria for sorting the results of a query that retrieves
|
1340
|
+
# aggregated statistical data about findings.
|
1324
1341
|
#
|
1325
1342
|
# @return [Types::GetFindingStatisticsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1326
1343
|
#
|
@@ -1631,7 +1648,7 @@ module Aws::Macie2
|
|
1631
1648
|
# resp.master.account_id #=> String
|
1632
1649
|
# resp.master.invitation_id #=> String
|
1633
1650
|
# resp.master.invited_at #=> Time
|
1634
|
-
# resp.master.relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed"
|
1651
|
+
# resp.master.relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed", "RegionDisabled", "AccountSuspended"
|
1635
1652
|
#
|
1636
1653
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/GetMasterAccount AWS API Documentation
|
1637
1654
|
#
|
@@ -1671,7 +1688,7 @@ module Aws::Macie2
|
|
1671
1688
|
# resp.email #=> String
|
1672
1689
|
# resp.invited_at #=> Time
|
1673
1690
|
# resp.master_account_id #=> String
|
1674
|
-
# resp.relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed"
|
1691
|
+
# resp.relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed", "RegionDisabled", "AccountSuspended"
|
1675
1692
|
# resp.tags #=> Hash
|
1676
1693
|
# resp.tags["__string"] #=> String
|
1677
1694
|
# resp.updated_at #=> Time
|
@@ -1703,19 +1720,22 @@ module Aws::Macie2
|
|
1703
1720
|
# * {Types::GetUsageStatisticsResponse#next_token #next_token} => String
|
1704
1721
|
# * {Types::GetUsageStatisticsResponse#records #records} => Array<Types::UsageRecord>
|
1705
1722
|
#
|
1723
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1724
|
+
#
|
1706
1725
|
# @example Request syntax with placeholder values
|
1707
1726
|
#
|
1708
1727
|
# resp = client.get_usage_statistics({
|
1709
1728
|
# filter_by: [
|
1710
1729
|
# {
|
1711
|
-
#
|
1730
|
+
# comparator: "GT", # accepts GT, GTE, LT, LTE, EQ, NE, CONTAINS
|
1731
|
+
# key: "accountId", # accepts accountId, serviceLimit, freeTrialStartDate, total
|
1712
1732
|
# values: ["__string"],
|
1713
1733
|
# },
|
1714
1734
|
# ],
|
1715
1735
|
# max_results: 1,
|
1716
1736
|
# next_token: "__string",
|
1717
1737
|
# sort_by: {
|
1718
|
-
# key: "accountId", # accepts accountId, total
|
1738
|
+
# key: "accountId", # accepts accountId, total, serviceLimitValue, freeTrialStartDate
|
1719
1739
|
# order_by: "ASC", # accepts ASC, DESC
|
1720
1740
|
# },
|
1721
1741
|
# })
|
@@ -1765,8 +1785,8 @@ module Aws::Macie2
|
|
1765
1785
|
req.send_request(options)
|
1766
1786
|
end
|
1767
1787
|
|
1768
|
-
# Retrieves
|
1769
|
-
#
|
1788
|
+
# Retrieves a subset of information about one or more classification
|
1789
|
+
# jobs.
|
1770
1790
|
#
|
1771
1791
|
# @option params [Types::ListJobsFilterCriteria] :filter_criteria
|
1772
1792
|
# Specifies criteria for filtering the results of a request for
|
@@ -1785,6 +1805,8 @@ module Aws::Macie2
|
|
1785
1805
|
# * {Types::ListClassificationJobsResponse#items #items} => Array<Types::JobSummary>
|
1786
1806
|
# * {Types::ListClassificationJobsResponse#next_token #next_token} => String
|
1787
1807
|
#
|
1808
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1809
|
+
#
|
1788
1810
|
# @example Request syntax with placeholder values
|
1789
1811
|
#
|
1790
1812
|
# resp = client.list_classification_jobs({
|
@@ -1847,6 +1869,8 @@ module Aws::Macie2
|
|
1847
1869
|
# * {Types::ListCustomDataIdentifiersResponse#items #items} => Array<Types::CustomDataIdentifierSummary>
|
1848
1870
|
# * {Types::ListCustomDataIdentifiersResponse#next_token #next_token} => String
|
1849
1871
|
#
|
1872
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1873
|
+
#
|
1850
1874
|
# @example Request syntax with placeholder values
|
1851
1875
|
#
|
1852
1876
|
# resp = client.list_custom_data_identifiers({
|
@@ -1892,6 +1916,8 @@ module Aws::Macie2
|
|
1892
1916
|
# * {Types::ListFindingsResponse#finding_ids #finding_ids} => Array<String>
|
1893
1917
|
# * {Types::ListFindingsResponse#next_token #next_token} => String
|
1894
1918
|
#
|
1919
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1920
|
+
#
|
1895
1921
|
# @example Request syntax with placeholder values
|
1896
1922
|
#
|
1897
1923
|
# resp = client.list_findings({
|
@@ -1942,6 +1968,8 @@ module Aws::Macie2
|
|
1942
1968
|
# * {Types::ListFindingsFiltersResponse#findings_filter_list_items #findings_filter_list_items} => Array<Types::FindingsFilterListItem>
|
1943
1969
|
# * {Types::ListFindingsFiltersResponse#next_token #next_token} => String
|
1944
1970
|
#
|
1971
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1972
|
+
#
|
1945
1973
|
# @example Request syntax with placeholder values
|
1946
1974
|
#
|
1947
1975
|
# resp = client.list_findings_filters({
|
@@ -1952,6 +1980,7 @@ module Aws::Macie2
|
|
1952
1980
|
# @example Response structure
|
1953
1981
|
#
|
1954
1982
|
# resp.findings_filter_list_items #=> Array
|
1983
|
+
# resp.findings_filter_list_items[0].action #=> String, one of "ARCHIVE", "NOOP"
|
1955
1984
|
# resp.findings_filter_list_items[0].arn #=> String
|
1956
1985
|
# resp.findings_filter_list_items[0].id #=> String
|
1957
1986
|
# resp.findings_filter_list_items[0].name #=> String
|
@@ -1980,6 +2009,8 @@ module Aws::Macie2
|
|
1980
2009
|
# * {Types::ListInvitationsResponse#invitations #invitations} => Array<Types::Invitation>
|
1981
2010
|
# * {Types::ListInvitationsResponse#next_token #next_token} => String
|
1982
2011
|
#
|
2012
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2013
|
+
#
|
1983
2014
|
# @example Request syntax with placeholder values
|
1984
2015
|
#
|
1985
2016
|
# resp = client.list_invitations({
|
@@ -1993,7 +2024,7 @@ module Aws::Macie2
|
|
1993
2024
|
# resp.invitations[0].account_id #=> String
|
1994
2025
|
# resp.invitations[0].invitation_id #=> String
|
1995
2026
|
# resp.invitations[0].invited_at #=> Time
|
1996
|
-
# resp.invitations[0].relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed"
|
2027
|
+
# resp.invitations[0].relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed", "RegionDisabled", "AccountSuspended"
|
1997
2028
|
# resp.next_token #=> String
|
1998
2029
|
#
|
1999
2030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ListInvitations AWS API Documentation
|
@@ -2019,6 +2050,8 @@ module Aws::Macie2
|
|
2019
2050
|
# * {Types::ListMembersResponse#members #members} => Array<Types::Member>
|
2020
2051
|
# * {Types::ListMembersResponse#next_token #next_token} => String
|
2021
2052
|
#
|
2053
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2054
|
+
#
|
2022
2055
|
# @example Request syntax with placeholder values
|
2023
2056
|
#
|
2024
2057
|
# resp = client.list_members({
|
@@ -2035,7 +2068,7 @@ module Aws::Macie2
|
|
2035
2068
|
# resp.members[0].email #=> String
|
2036
2069
|
# resp.members[0].invited_at #=> Time
|
2037
2070
|
# resp.members[0].master_account_id #=> String
|
2038
|
-
# resp.members[0].relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed"
|
2071
|
+
# resp.members[0].relationship_status #=> String, one of "Enabled", "Paused", "Invited", "Created", "Removed", "Resigned", "EmailVerificationInProgress", "EmailVerificationFailed", "RegionDisabled", "AccountSuspended"
|
2039
2072
|
# resp.members[0].tags #=> Hash
|
2040
2073
|
# resp.members[0].tags["__string"] #=> String
|
2041
2074
|
# resp.members[0].updated_at #=> Time
|
@@ -2062,6 +2095,8 @@ module Aws::Macie2
|
|
2062
2095
|
# * {Types::ListOrganizationAdminAccountsResponse#admin_accounts #admin_accounts} => Array<Types::AdminAccount>
|
2063
2096
|
# * {Types::ListOrganizationAdminAccountsResponse#next_token #next_token} => String
|
2064
2097
|
#
|
2098
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2099
|
+
#
|
2065
2100
|
# @example Request syntax with placeholder values
|
2066
2101
|
#
|
2067
2102
|
# resp = client.list_organization_admin_accounts({
|
@@ -2254,7 +2289,7 @@ module Aws::Macie2
|
|
2254
2289
|
# @option params [required, String] :job_id
|
2255
2290
|
#
|
2256
2291
|
# @option params [required, String] :job_status
|
2257
|
-
# The current status of a classification job.
|
2292
|
+
# The current status of a classification job. Possible values are:
|
2258
2293
|
#
|
2259
2294
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2260
2295
|
#
|
@@ -2424,7 +2459,7 @@ module Aws::Macie2
|
|
2424
2459
|
params: params,
|
2425
2460
|
config: config)
|
2426
2461
|
context[:gem_name] = 'aws-sdk-macie2'
|
2427
|
-
context[:gem_version] = '1.
|
2462
|
+
context[:gem_version] = '1.9.0'
|
2428
2463
|
Seahorse::Client::Request.new(handlers, context)
|
2429
2464
|
end
|
2430
2465
|
|
@@ -241,6 +241,7 @@ module Aws::Macie2
|
|
241
241
|
UsageByAccount = Shapes::StructureShape.new(name: 'UsageByAccount')
|
242
242
|
UsageRecord = Shapes::StructureShape.new(name: 'UsageRecord')
|
243
243
|
UsageStatisticsFilter = Shapes::StructureShape.new(name: 'UsageStatisticsFilter')
|
244
|
+
UsageStatisticsFilterComparator = Shapes::StringShape.new(name: 'UsageStatisticsFilterComparator')
|
244
245
|
UsageStatisticsFilterKey = Shapes::StringShape.new(name: 'UsageStatisticsFilterKey')
|
245
246
|
UsageStatisticsSortBy = Shapes::StructureShape.new(name: 'UsageStatisticsSortBy')
|
246
247
|
UsageStatisticsSortKey = Shapes::StringShape.new(name: 'UsageStatisticsSortKey')
|
@@ -677,6 +678,7 @@ module Aws::Macie2
|
|
677
678
|
FindingStatisticsSortCriteria.add_member(:order_by, Shapes::ShapeRef.new(shape: OrderBy, location_name: "orderBy"))
|
678
679
|
FindingStatisticsSortCriteria.struct_class = Types::FindingStatisticsSortCriteria
|
679
680
|
|
681
|
+
FindingsFilterListItem.add_member(:action, Shapes::ShapeRef.new(shape: FindingsFilterAction, location_name: "action"))
|
680
682
|
FindingsFilterListItem.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
681
683
|
FindingsFilterListItem.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
682
684
|
FindingsFilterListItem.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
@@ -1168,6 +1170,7 @@ module Aws::Macie2
|
|
1168
1170
|
UsageRecord.add_member(:usage, Shapes::ShapeRef.new(shape: __listOfUsageByAccount, location_name: "usage"))
|
1169
1171
|
UsageRecord.struct_class = Types::UsageRecord
|
1170
1172
|
|
1173
|
+
UsageStatisticsFilter.add_member(:comparator, Shapes::ShapeRef.new(shape: UsageStatisticsFilterComparator, location_name: "comparator"))
|
1171
1174
|
UsageStatisticsFilter.add_member(:key, Shapes::ShapeRef.new(shape: UsageStatisticsFilterKey, location_name: "key"))
|
1172
1175
|
UsageStatisticsFilter.add_member(:values, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "values"))
|
1173
1176
|
UsageStatisticsFilter.struct_class = Types::UsageStatisticsFilter
|
@@ -1471,6 +1474,12 @@ module Aws::Macie2
|
|
1471
1474
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1472
1475
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1473
1476
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1477
|
+
o[:pager] = Aws::Pager.new(
|
1478
|
+
limit_key: "max_results",
|
1479
|
+
tokens: {
|
1480
|
+
"next_token" => "next_token"
|
1481
|
+
}
|
1482
|
+
)
|
1474
1483
|
end)
|
1475
1484
|
|
1476
1485
|
api.add_operation(:describe_classification_job, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1756,6 +1765,12 @@ module Aws::Macie2
|
|
1756
1765
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1757
1766
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1758
1767
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1768
|
+
o[:pager] = Aws::Pager.new(
|
1769
|
+
limit_key: "max_results",
|
1770
|
+
tokens: {
|
1771
|
+
"next_token" => "next_token"
|
1772
|
+
}
|
1773
|
+
)
|
1759
1774
|
end)
|
1760
1775
|
|
1761
1776
|
api.add_operation(:get_usage_totals, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1786,6 +1801,12 @@ module Aws::Macie2
|
|
1786
1801
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1787
1802
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1788
1803
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1804
|
+
o[:pager] = Aws::Pager.new(
|
1805
|
+
limit_key: "max_results",
|
1806
|
+
tokens: {
|
1807
|
+
"next_token" => "next_token"
|
1808
|
+
}
|
1809
|
+
)
|
1789
1810
|
end)
|
1790
1811
|
|
1791
1812
|
api.add_operation(:list_custom_data_identifiers, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1801,6 +1822,12 @@ module Aws::Macie2
|
|
1801
1822
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1802
1823
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1803
1824
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1825
|
+
o[:pager] = Aws::Pager.new(
|
1826
|
+
limit_key: "max_results",
|
1827
|
+
tokens: {
|
1828
|
+
"next_token" => "next_token"
|
1829
|
+
}
|
1830
|
+
)
|
1804
1831
|
end)
|
1805
1832
|
|
1806
1833
|
api.add_operation(:list_findings, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1816,6 +1843,12 @@ module Aws::Macie2
|
|
1816
1843
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1817
1844
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1818
1845
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1846
|
+
o[:pager] = Aws::Pager.new(
|
1847
|
+
limit_key: "max_results",
|
1848
|
+
tokens: {
|
1849
|
+
"next_token" => "next_token"
|
1850
|
+
}
|
1851
|
+
)
|
1819
1852
|
end)
|
1820
1853
|
|
1821
1854
|
api.add_operation(:list_findings_filters, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1831,6 +1864,12 @@ module Aws::Macie2
|
|
1831
1864
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1832
1865
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1833
1866
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1867
|
+
o[:pager] = Aws::Pager.new(
|
1868
|
+
limit_key: "max_results",
|
1869
|
+
tokens: {
|
1870
|
+
"next_token" => "next_token"
|
1871
|
+
}
|
1872
|
+
)
|
1834
1873
|
end)
|
1835
1874
|
|
1836
1875
|
api.add_operation(:list_invitations, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1846,6 +1885,12 @@ module Aws::Macie2
|
|
1846
1885
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1847
1886
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1848
1887
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1888
|
+
o[:pager] = Aws::Pager.new(
|
1889
|
+
limit_key: "max_results",
|
1890
|
+
tokens: {
|
1891
|
+
"next_token" => "next_token"
|
1892
|
+
}
|
1893
|
+
)
|
1849
1894
|
end)
|
1850
1895
|
|
1851
1896
|
api.add_operation(:list_members, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1861,6 +1906,12 @@ module Aws::Macie2
|
|
1861
1906
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1862
1907
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1863
1908
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1909
|
+
o[:pager] = Aws::Pager.new(
|
1910
|
+
limit_key: "max_results",
|
1911
|
+
tokens: {
|
1912
|
+
"next_token" => "next_token"
|
1913
|
+
}
|
1914
|
+
)
|
1864
1915
|
end)
|
1865
1916
|
|
1866
1917
|
api.add_operation(:list_organization_admin_accounts, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1876,6 +1927,12 @@ module Aws::Macie2
|
|
1876
1927
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1877
1928
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1878
1929
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1930
|
+
o[:pager] = Aws::Pager.new(
|
1931
|
+
limit_key: "max_results",
|
1932
|
+
tokens: {
|
1933
|
+
"next_token" => "next_token"
|
1934
|
+
}
|
1935
|
+
)
|
1879
1936
|
end)
|
1880
1937
|
|
1881
1938
|
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-macie2/types.rb
CHANGED
@@ -31,6 +31,7 @@ module Aws::Macie2
|
|
31
31
|
class AcceptInvitationRequest < Struct.new(
|
32
32
|
:invitation_id,
|
33
33
|
:master_account)
|
34
|
+
SENSITIVE = []
|
34
35
|
include Aws::Structure
|
35
36
|
end
|
36
37
|
|
@@ -52,6 +53,7 @@ module Aws::Macie2
|
|
52
53
|
class AccessControlList < Struct.new(
|
53
54
|
:allows_public_read_access,
|
54
55
|
:allows_public_write_access)
|
56
|
+
SENSITIVE = []
|
55
57
|
include Aws::Structure
|
56
58
|
end
|
57
59
|
|
@@ -65,6 +67,7 @@ module Aws::Macie2
|
|
65
67
|
#
|
66
68
|
class AccessDeniedException < Struct.new(
|
67
69
|
:message)
|
70
|
+
SENSITIVE = []
|
68
71
|
include Aws::Structure
|
69
72
|
end
|
70
73
|
|
@@ -90,6 +93,7 @@ module Aws::Macie2
|
|
90
93
|
class AccountDetail < Struct.new(
|
91
94
|
:account_id,
|
92
95
|
:email)
|
96
|
+
SENSITIVE = []
|
93
97
|
include Aws::Structure
|
94
98
|
end
|
95
99
|
|
@@ -112,6 +116,7 @@ module Aws::Macie2
|
|
112
116
|
#
|
113
117
|
class AccountLevelPermissions < Struct.new(
|
114
118
|
:block_public_access)
|
119
|
+
SENSITIVE = []
|
115
120
|
include Aws::Structure
|
116
121
|
end
|
117
122
|
|
@@ -131,21 +136,12 @@ module Aws::Macie2
|
|
131
136
|
class AdminAccount < Struct.new(
|
132
137
|
:account_id,
|
133
138
|
:status)
|
139
|
+
SENSITIVE = []
|
134
140
|
include Aws::Structure
|
135
141
|
end
|
136
142
|
|
137
|
-
#
|
138
|
-
#
|
139
|
-
# * The name of the operation that was invoked most recently and
|
140
|
-
# produced the finding (api).
|
141
|
-
#
|
142
|
-
# * The first date and time when any operation was invoked and produced
|
143
|
-
# the finding (firstSeen).
|
144
|
-
#
|
145
|
-
# * The most recent date and time when the specified operation was
|
146
|
-
# invoked and produced the finding (lastSeen).
|
147
|
-
#
|
148
|
-
# 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.
|
149
145
|
#
|
150
146
|
# @!attribute [rw] api
|
151
147
|
# @return [String]
|
@@ -166,10 +162,14 @@ module Aws::Macie2
|
|
166
162
|
:api_service_name,
|
167
163
|
:first_seen,
|
168
164
|
:last_seen)
|
165
|
+
SENSITIVE = []
|
169
166
|
include Aws::Structure
|
170
167
|
end
|
171
168
|
|
172
|
-
#
|
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.
|
173
173
|
#
|
174
174
|
# @!attribute [rw] access_key_id
|
175
175
|
# @return [String]
|
@@ -196,10 +196,13 @@ module Aws::Macie2
|
|
196
196
|
:arn,
|
197
197
|
:principal_id,
|
198
198
|
:session_context)
|
199
|
+
SENSITIVE = []
|
199
200
|
include Aws::Structure
|
200
201
|
end
|
201
202
|
|
202
|
-
#
|
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.
|
203
206
|
#
|
204
207
|
# @!attribute [rw] account_id
|
205
208
|
# @return [String]
|
@@ -212,10 +215,12 @@ module Aws::Macie2
|
|
212
215
|
class AwsAccount < Struct.new(
|
213
216
|
:account_id,
|
214
217
|
:principal_id)
|
218
|
+
SENSITIVE = []
|
215
219
|
include Aws::Structure
|
216
220
|
end
|
217
221
|
|
218
|
-
#
|
222
|
+
# Provides information about an AWS service that performed an action on
|
223
|
+
# an affected resource.
|
219
224
|
#
|
220
225
|
# @!attribute [rw] invoked_by
|
221
226
|
# @return [String]
|
@@ -224,6 +229,7 @@ module Aws::Macie2
|
|
224
229
|
#
|
225
230
|
class AwsService < Struct.new(
|
226
231
|
:invoked_by)
|
232
|
+
SENSITIVE = []
|
227
233
|
include Aws::Structure
|
228
234
|
end
|
229
235
|
|
@@ -256,6 +262,7 @@ module Aws::Macie2
|
|
256
262
|
:description,
|
257
263
|
:id,
|
258
264
|
:name)
|
265
|
+
SENSITIVE = []
|
259
266
|
include Aws::Structure
|
260
267
|
end
|
261
268
|
|
@@ -276,6 +283,7 @@ module Aws::Macie2
|
|
276
283
|
#
|
277
284
|
class BatchGetCustomDataIdentifiersRequest < Struct.new(
|
278
285
|
:ids)
|
286
|
+
SENSITIVE = []
|
279
287
|
include Aws::Structure
|
280
288
|
end
|
281
289
|
|
@@ -292,6 +300,7 @@ module Aws::Macie2
|
|
292
300
|
class BatchGetCustomDataIdentifiersResponse < Struct.new(
|
293
301
|
:custom_data_identifiers,
|
294
302
|
:not_found_identifier_ids)
|
303
|
+
SENSITIVE = []
|
295
304
|
include Aws::Structure
|
296
305
|
end
|
297
306
|
|
@@ -324,11 +333,13 @@ module Aws::Macie2
|
|
324
333
|
:block_public_policy,
|
325
334
|
:ignore_public_acls,
|
326
335
|
:restrict_public_buckets)
|
336
|
+
SENSITIVE = []
|
327
337
|
include Aws::Structure
|
328
338
|
end
|
329
339
|
|
330
|
-
#
|
331
|
-
# 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.
|
332
343
|
#
|
333
344
|
# @!attribute [rw] publicly_accessible
|
334
345
|
# @return [Integer]
|
@@ -345,12 +356,12 @@ module Aws::Macie2
|
|
345
356
|
:publicly_accessible,
|
346
357
|
:publicly_readable,
|
347
358
|
:publicly_writable)
|
359
|
+
SENSITIVE = []
|
348
360
|
include Aws::Structure
|
349
361
|
end
|
350
362
|
|
351
|
-
#
|
352
|
-
#
|
353
|
-
# 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.
|
354
365
|
#
|
355
366
|
# @!attribute [rw] kms_managed
|
356
367
|
# @return [Integer]
|
@@ -367,11 +378,12 @@ module Aws::Macie2
|
|
367
378
|
:kms_managed,
|
368
379
|
:s3_managed,
|
369
380
|
:unencrypted)
|
381
|
+
SENSITIVE = []
|
370
382
|
include Aws::Structure
|
371
383
|
end
|
372
384
|
|
373
|
-
#
|
374
|
-
#
|
385
|
+
# Provides information about the number of S3 buckets that are shared
|
386
|
+
# with other AWS accounts.
|
375
387
|
#
|
376
388
|
# @!attribute [rw] external
|
377
389
|
# @return [Integer]
|
@@ -388,6 +400,7 @@ module Aws::Macie2
|
|
388
400
|
:external,
|
389
401
|
:internal,
|
390
402
|
:not_shared)
|
403
|
+
SENSITIVE = []
|
391
404
|
include Aws::Structure
|
392
405
|
end
|
393
406
|
|
@@ -438,6 +451,7 @@ module Aws::Macie2
|
|
438
451
|
:lte,
|
439
452
|
:neq,
|
440
453
|
:prefix)
|
454
|
+
SENSITIVE = []
|
441
455
|
include Aws::Structure
|
442
456
|
end
|
443
457
|
|
@@ -472,6 +486,7 @@ module Aws::Macie2
|
|
472
486
|
:access_control_list,
|
473
487
|
:block_public_access,
|
474
488
|
:bucket_policy)
|
489
|
+
SENSITIVE = []
|
475
490
|
include Aws::Structure
|
476
491
|
end
|
477
492
|
|
@@ -500,6 +515,9 @@ module Aws::Macie2
|
|
500
515
|
# @return [Integer]
|
501
516
|
#
|
502
517
|
# @!attribute [rw] object_count_by_encryption_type
|
518
|
+
# Provides information about the number of objects that are in an S3
|
519
|
+
# bucket and use certain types of server-side encryption, use
|
520
|
+
# client-side encryption, or aren't encrypted.
|
503
521
|
# @return [Types::ObjectCountByEncryptionType]
|
504
522
|
#
|
505
523
|
# @!attribute [rw] public_access
|
@@ -550,11 +568,12 @@ module Aws::Macie2
|
|
550
568
|
:size_in_bytes_compressed,
|
551
569
|
:tags,
|
552
570
|
:versioning)
|
571
|
+
SENSITIVE = []
|
553
572
|
include Aws::Structure
|
554
573
|
end
|
555
574
|
|
556
575
|
# The account-level and bucket-level permissions settings for an S3
|
557
|
-
# bucket
|
576
|
+
# bucket.
|
558
577
|
#
|
559
578
|
# @!attribute [rw] account_level_permissions
|
560
579
|
# Provides information about account-level permissions settings that
|
@@ -571,6 +590,7 @@ module Aws::Macie2
|
|
571
590
|
class BucketPermissionConfiguration < Struct.new(
|
572
591
|
:account_level_permissions,
|
573
592
|
:bucket_level_permissions)
|
593
|
+
SENSITIVE = []
|
574
594
|
include Aws::Structure
|
575
595
|
end
|
576
596
|
|
@@ -588,6 +608,7 @@ module Aws::Macie2
|
|
588
608
|
class BucketPolicy < Struct.new(
|
589
609
|
:allows_public_read_access,
|
590
610
|
:allows_public_write_access)
|
611
|
+
SENSITIVE = []
|
591
612
|
include Aws::Structure
|
592
613
|
end
|
593
614
|
|
@@ -599,7 +620,7 @@ module Aws::Macie2
|
|
599
620
|
#
|
600
621
|
# @!attribute [rw] permission_configuration
|
601
622
|
# The account-level and bucket-level permissions settings for an S3
|
602
|
-
# bucket
|
623
|
+
# bucket.
|
603
624
|
# @return [Types::BucketPermissionConfiguration]
|
604
625
|
#
|
605
626
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/BucketPublicAccess AWS API Documentation
|
@@ -607,6 +628,7 @@ module Aws::Macie2
|
|
607
628
|
class BucketPublicAccess < Struct.new(
|
608
629
|
:effective_permission,
|
609
630
|
:permission_configuration)
|
631
|
+
SENSITIVE = []
|
610
632
|
include Aws::Structure
|
611
633
|
end
|
612
634
|
|
@@ -632,6 +654,7 @@ module Aws::Macie2
|
|
632
654
|
class BucketSortCriteria < Struct.new(
|
633
655
|
:attribute_name,
|
634
656
|
:order_by)
|
657
|
+
SENSITIVE = []
|
635
658
|
include Aws::Structure
|
636
659
|
end
|
637
660
|
|
@@ -649,8 +672,8 @@ module Aws::Macie2
|
|
649
672
|
#
|
650
673
|
# @!attribute [rw] result
|
651
674
|
# Provides detailed information about a sensitive data finding,
|
652
|
-
# including the types and number of occurrences of the data
|
653
|
-
# found.
|
675
|
+
# including the types and number of occurrences of the sensitive data
|
676
|
+
# that was found.
|
654
677
|
# @return [Types::ClassificationResult]
|
655
678
|
#
|
656
679
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/ClassificationDetails AWS API Documentation
|
@@ -660,6 +683,7 @@ module Aws::Macie2
|
|
660
683
|
:job_arn,
|
661
684
|
:job_id,
|
662
685
|
:result)
|
686
|
+
SENSITIVE = []
|
663
687
|
include Aws::Structure
|
664
688
|
end
|
665
689
|
|
@@ -687,12 +711,13 @@ module Aws::Macie2
|
|
687
711
|
#
|
688
712
|
class ClassificationExportConfiguration < Struct.new(
|
689
713
|
:s3_destination)
|
714
|
+
SENSITIVE = []
|
690
715
|
include Aws::Structure
|
691
716
|
end
|
692
717
|
|
693
718
|
# Provides detailed information about a sensitive data finding,
|
694
|
-
# including the types and number of occurrences of the data
|
695
|
-
# found.
|
719
|
+
# including the types and number of occurrences of the sensitive data
|
720
|
+
# that was found.
|
696
721
|
#
|
697
722
|
# @!attribute [rw] custom_data_identifiers
|
698
723
|
# Provides information about the number of occurrences of the data
|
@@ -723,6 +748,7 @@ module Aws::Macie2
|
|
723
748
|
:sensitive_data,
|
724
749
|
:size_classified,
|
725
750
|
:status)
|
751
|
+
SENSITIVE = []
|
726
752
|
include Aws::Structure
|
727
753
|
end
|
728
754
|
|
@@ -739,6 +765,7 @@ module Aws::Macie2
|
|
739
765
|
class ClassificationResultStatus < Struct.new(
|
740
766
|
:code,
|
741
767
|
:reason)
|
768
|
+
SENSITIVE = []
|
742
769
|
include Aws::Structure
|
743
770
|
end
|
744
771
|
|
@@ -752,11 +779,15 @@ module Aws::Macie2
|
|
752
779
|
#
|
753
780
|
class ConflictException < Struct.new(
|
754
781
|
:message)
|
782
|
+
SENSITIVE = []
|
755
783
|
include Aws::Structure
|
756
784
|
end
|
757
785
|
|
758
786
|
# Specifies the scope, schedule, and other settings for a classification
|
759
|
-
# 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.
|
760
791
|
#
|
761
792
|
# @note When making an API call, you may pass CreateClassificationJobRequest
|
762
793
|
# data as a hash:
|
@@ -890,6 +921,7 @@ module Aws::Macie2
|
|
890
921
|
:sampling_percentage,
|
891
922
|
:schedule_frequency,
|
892
923
|
:tags)
|
924
|
+
SENSITIVE = []
|
893
925
|
include Aws::Structure
|
894
926
|
end
|
895
927
|
|
@@ -907,11 +939,15 @@ module Aws::Macie2
|
|
907
939
|
class CreateClassificationJobResponse < Struct.new(
|
908
940
|
:job_arn,
|
909
941
|
:job_id)
|
942
|
+
SENSITIVE = []
|
910
943
|
include Aws::Structure
|
911
944
|
end
|
912
945
|
|
913
946
|
# Specifies the criteria and other settings for a new custom data
|
914
|
-
# 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.
|
915
951
|
#
|
916
952
|
# @note When making an API call, you may pass CreateCustomDataIdentifierRequest
|
917
953
|
# data as a hash:
|
@@ -969,6 +1005,7 @@ module Aws::Macie2
|
|
969
1005
|
:name,
|
970
1006
|
:regex,
|
971
1007
|
:tags)
|
1008
|
+
SENSITIVE = []
|
972
1009
|
include Aws::Structure
|
973
1010
|
end
|
974
1011
|
|
@@ -982,6 +1019,7 @@ module Aws::Macie2
|
|
982
1019
|
#
|
983
1020
|
class CreateCustomDataIdentifierResponse < Struct.new(
|
984
1021
|
:custom_data_identifier_id)
|
1022
|
+
SENSITIVE = []
|
985
1023
|
include Aws::Structure
|
986
1024
|
end
|
987
1025
|
|
@@ -1054,6 +1092,7 @@ module Aws::Macie2
|
|
1054
1092
|
:name,
|
1055
1093
|
:position,
|
1056
1094
|
:tags)
|
1095
|
+
SENSITIVE = []
|
1057
1096
|
include Aws::Structure
|
1058
1097
|
end
|
1059
1098
|
|
@@ -1071,6 +1110,7 @@ module Aws::Macie2
|
|
1071
1110
|
class CreateFindingsFilterResponse < Struct.new(
|
1072
1111
|
:arn,
|
1073
1112
|
:id)
|
1113
|
+
SENSITIVE = []
|
1074
1114
|
include Aws::Structure
|
1075
1115
|
end
|
1076
1116
|
|
@@ -1100,6 +1140,7 @@ module Aws::Macie2
|
|
1100
1140
|
:account_ids,
|
1101
1141
|
:disable_email_notification,
|
1102
1142
|
:message)
|
1143
|
+
SENSITIVE = []
|
1103
1144
|
include Aws::Structure
|
1104
1145
|
end
|
1105
1146
|
|
@@ -1113,6 +1154,7 @@ module Aws::Macie2
|
|
1113
1154
|
#
|
1114
1155
|
class CreateInvitationsResponse < Struct.new(
|
1115
1156
|
:unprocessed_accounts)
|
1157
|
+
SENSITIVE = []
|
1116
1158
|
include Aws::Structure
|
1117
1159
|
end
|
1118
1160
|
|
@@ -1147,6 +1189,7 @@ module Aws::Macie2
|
|
1147
1189
|
class CreateMemberRequest < Struct.new(
|
1148
1190
|
:account,
|
1149
1191
|
:tags)
|
1192
|
+
SENSITIVE = []
|
1150
1193
|
include Aws::Structure
|
1151
1194
|
end
|
1152
1195
|
|
@@ -1160,6 +1203,7 @@ module Aws::Macie2
|
|
1160
1203
|
#
|
1161
1204
|
class CreateMemberResponse < Struct.new(
|
1162
1205
|
:arn)
|
1206
|
+
SENSITIVE = []
|
1163
1207
|
include Aws::Structure
|
1164
1208
|
end
|
1165
1209
|
|
@@ -1180,6 +1224,7 @@ module Aws::Macie2
|
|
1180
1224
|
#
|
1181
1225
|
class CreateSampleFindingsRequest < Struct.new(
|
1182
1226
|
:finding_types)
|
1227
|
+
SENSITIVE = []
|
1183
1228
|
include Aws::Structure
|
1184
1229
|
end
|
1185
1230
|
|
@@ -1229,6 +1274,7 @@ module Aws::Macie2
|
|
1229
1274
|
:lt,
|
1230
1275
|
:lte,
|
1231
1276
|
:neq)
|
1277
|
+
SENSITIVE = []
|
1232
1278
|
include Aws::Structure
|
1233
1279
|
end
|
1234
1280
|
|
@@ -1257,6 +1303,7 @@ module Aws::Macie2
|
|
1257
1303
|
:description,
|
1258
1304
|
:id,
|
1259
1305
|
:name)
|
1306
|
+
SENSITIVE = []
|
1260
1307
|
include Aws::Structure
|
1261
1308
|
end
|
1262
1309
|
|
@@ -1265,7 +1312,9 @@ module Aws::Macie2
|
|
1265
1312
|
# that detected the data for the finding.
|
1266
1313
|
#
|
1267
1314
|
# @!attribute [rw] detections
|
1268
|
-
#
|
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.
|
1269
1318
|
# @return [Array<Types::CustomDetection>]
|
1270
1319
|
#
|
1271
1320
|
# @!attribute [rw] total_count
|
@@ -1276,6 +1325,7 @@ module Aws::Macie2
|
|
1276
1325
|
class CustomDataIdentifiers < Struct.new(
|
1277
1326
|
:detections,
|
1278
1327
|
:total_count)
|
1328
|
+
SENSITIVE = []
|
1279
1329
|
include Aws::Structure
|
1280
1330
|
end
|
1281
1331
|
|
@@ -1298,9 +1348,13 @@ module Aws::Macie2
|
|
1298
1348
|
:arn,
|
1299
1349
|
:count,
|
1300
1350
|
:name)
|
1351
|
+
SENSITIVE = []
|
1301
1352
|
include Aws::Structure
|
1302
1353
|
end
|
1303
1354
|
|
1355
|
+
# Specifies that a classification job runs once a day, every day. This
|
1356
|
+
# is an empty object.
|
1357
|
+
#
|
1304
1358
|
# @api private
|
1305
1359
|
#
|
1306
1360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/DailySchedule AWS API Documentation
|
@@ -1324,6 +1378,7 @@ module Aws::Macie2
|
|
1324
1378
|
#
|
1325
1379
|
class DeclineInvitationsRequest < Struct.new(
|
1326
1380
|
:account_ids)
|
1381
|
+
SENSITIVE = []
|
1327
1382
|
include Aws::Structure
|
1328
1383
|
end
|
1329
1384
|
|
@@ -1338,11 +1393,12 @@ module Aws::Macie2
|
|
1338
1393
|
#
|
1339
1394
|
class DeclineInvitationsResponse < Struct.new(
|
1340
1395
|
:unprocessed_accounts)
|
1396
|
+
SENSITIVE = []
|
1341
1397
|
include Aws::Structure
|
1342
1398
|
end
|
1343
1399
|
|
1344
1400
|
# Provides information about sensitive data that was detected by managed
|
1345
|
-
# data identifiers and produced a finding.
|
1401
|
+
# data identifiers and produced a sensitive data finding.
|
1346
1402
|
#
|
1347
1403
|
# @!attribute [rw] count
|
1348
1404
|
# @return [Integer]
|
@@ -1355,6 +1411,7 @@ module Aws::Macie2
|
|
1355
1411
|
class DefaultDetection < Struct.new(
|
1356
1412
|
:count,
|
1357
1413
|
:type)
|
1414
|
+
SENSITIVE = []
|
1358
1415
|
include Aws::Structure
|
1359
1416
|
end
|
1360
1417
|
|
@@ -1372,6 +1429,7 @@ module Aws::Macie2
|
|
1372
1429
|
#
|
1373
1430
|
class DeleteCustomDataIdentifierRequest < Struct.new(
|
1374
1431
|
:id)
|
1432
|
+
SENSITIVE = []
|
1375
1433
|
include Aws::Structure
|
1376
1434
|
end
|
1377
1435
|
|
@@ -1393,6 +1451,7 @@ module Aws::Macie2
|
|
1393
1451
|
#
|
1394
1452
|
class DeleteFindingsFilterRequest < Struct.new(
|
1395
1453
|
:id)
|
1454
|
+
SENSITIVE = []
|
1396
1455
|
include Aws::Structure
|
1397
1456
|
end
|
1398
1457
|
|
@@ -1417,6 +1476,7 @@ module Aws::Macie2
|
|
1417
1476
|
#
|
1418
1477
|
class DeleteInvitationsRequest < Struct.new(
|
1419
1478
|
:account_ids)
|
1479
|
+
SENSITIVE = []
|
1420
1480
|
include Aws::Structure
|
1421
1481
|
end
|
1422
1482
|
|
@@ -1430,6 +1490,7 @@ module Aws::Macie2
|
|
1430
1490
|
#
|
1431
1491
|
class DeleteInvitationsResponse < Struct.new(
|
1432
1492
|
:unprocessed_accounts)
|
1493
|
+
SENSITIVE = []
|
1433
1494
|
include Aws::Structure
|
1434
1495
|
end
|
1435
1496
|
|
@@ -1447,6 +1508,7 @@ module Aws::Macie2
|
|
1447
1508
|
#
|
1448
1509
|
class DeleteMemberRequest < Struct.new(
|
1449
1510
|
:id)
|
1511
|
+
SENSITIVE = []
|
1450
1512
|
include Aws::Structure
|
1451
1513
|
end
|
1452
1514
|
|
@@ -1503,6 +1565,7 @@ module Aws::Macie2
|
|
1503
1565
|
:max_results,
|
1504
1566
|
:next_token,
|
1505
1567
|
:sort_criteria)
|
1568
|
+
SENSITIVE = []
|
1506
1569
|
include Aws::Structure
|
1507
1570
|
end
|
1508
1571
|
|
@@ -1521,6 +1584,7 @@ module Aws::Macie2
|
|
1521
1584
|
class DescribeBucketsResponse < Struct.new(
|
1522
1585
|
:buckets,
|
1523
1586
|
:next_token)
|
1587
|
+
SENSITIVE = []
|
1524
1588
|
include Aws::Structure
|
1525
1589
|
end
|
1526
1590
|
|
@@ -1538,6 +1602,7 @@ module Aws::Macie2
|
|
1538
1602
|
#
|
1539
1603
|
class DescribeClassificationJobRequest < Struct.new(
|
1540
1604
|
:job_id)
|
1605
|
+
SENSITIVE = []
|
1541
1606
|
include Aws::Structure
|
1542
1607
|
end
|
1543
1608
|
|
@@ -1568,7 +1633,7 @@ module Aws::Macie2
|
|
1568
1633
|
# @return [String]
|
1569
1634
|
#
|
1570
1635
|
# @!attribute [rw] job_status
|
1571
|
-
# The current status of a classification job.
|
1636
|
+
# The current status of a classification job. Possible values are:
|
1572
1637
|
# @return [String]
|
1573
1638
|
#
|
1574
1639
|
# @!attribute [rw] job_type
|
@@ -1622,6 +1687,7 @@ module Aws::Macie2
|
|
1622
1687
|
:schedule_frequency,
|
1623
1688
|
:statistics,
|
1624
1689
|
:tags)
|
1690
|
+
SENSITIVE = []
|
1625
1691
|
include Aws::Structure
|
1626
1692
|
end
|
1627
1693
|
|
@@ -1645,6 +1711,7 @@ module Aws::Macie2
|
|
1645
1711
|
class DescribeOrganizationConfigurationResponse < Struct.new(
|
1646
1712
|
:auto_enable,
|
1647
1713
|
:max_account_limit_reached)
|
1714
|
+
SENSITIVE = []
|
1648
1715
|
include Aws::Structure
|
1649
1716
|
end
|
1650
1717
|
|
@@ -1672,6 +1739,7 @@ module Aws::Macie2
|
|
1672
1739
|
#
|
1673
1740
|
class DisableOrganizationAdminAccountRequest < Struct.new(
|
1674
1741
|
:admin_account_id)
|
1742
|
+
SENSITIVE = []
|
1675
1743
|
include Aws::Structure
|
1676
1744
|
end
|
1677
1745
|
|
@@ -1703,6 +1771,7 @@ module Aws::Macie2
|
|
1703
1771
|
#
|
1704
1772
|
class DisassociateMemberRequest < Struct.new(
|
1705
1773
|
:id)
|
1774
|
+
SENSITIVE = []
|
1706
1775
|
include Aws::Structure
|
1707
1776
|
end
|
1708
1777
|
|
@@ -1710,6 +1779,9 @@ module Aws::Macie2
|
|
1710
1779
|
#
|
1711
1780
|
class DisassociateMemberResponse < Aws::EmptyStructure; end
|
1712
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
|
+
#
|
1713
1785
|
# @!attribute [rw] domain_name
|
1714
1786
|
# @return [String]
|
1715
1787
|
#
|
@@ -1717,6 +1789,7 @@ module Aws::Macie2
|
|
1717
1789
|
#
|
1718
1790
|
class DomainDetails < Struct.new(
|
1719
1791
|
:domain_name)
|
1792
|
+
SENSITIVE = []
|
1720
1793
|
include Aws::Structure
|
1721
1794
|
end
|
1722
1795
|
|
@@ -1761,6 +1834,7 @@ module Aws::Macie2
|
|
1761
1834
|
:client_token,
|
1762
1835
|
:finding_publishing_frequency,
|
1763
1836
|
:status)
|
1837
|
+
SENSITIVE = []
|
1764
1838
|
include Aws::Structure
|
1765
1839
|
end
|
1766
1840
|
|
@@ -1793,6 +1867,7 @@ module Aws::Macie2
|
|
1793
1867
|
class EnableOrganizationAdminAccountRequest < Struct.new(
|
1794
1868
|
:admin_account_id,
|
1795
1869
|
:client_token)
|
1870
|
+
SENSITIVE = []
|
1796
1871
|
include Aws::Structure
|
1797
1872
|
end
|
1798
1873
|
|
@@ -1800,7 +1875,10 @@ module Aws::Macie2
|
|
1800
1875
|
#
|
1801
1876
|
class EnableOrganizationAdminAccountResponse < Aws::EmptyStructure; end
|
1802
1877
|
|
1803
|
-
#
|
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.
|
1804
1882
|
#
|
1805
1883
|
# @!attribute [rw] access_key_id
|
1806
1884
|
# @return [String]
|
@@ -1827,6 +1905,7 @@ module Aws::Macie2
|
|
1827
1905
|
:arn,
|
1828
1906
|
:principal_id,
|
1829
1907
|
:session_context)
|
1908
|
+
SENSITIVE = []
|
1830
1909
|
include Aws::Structure
|
1831
1910
|
end
|
1832
1911
|
|
@@ -1863,7 +1942,7 @@ module Aws::Macie2
|
|
1863
1942
|
# @return [String]
|
1864
1943
|
#
|
1865
1944
|
# @!attribute [rw] policy_details
|
1866
|
-
# Provides
|
1945
|
+
# Provides the details of a policy finding.
|
1867
1946
|
# @return [Types::PolicyDetails]
|
1868
1947
|
#
|
1869
1948
|
# @!attribute [rw] region
|
@@ -1915,6 +1994,7 @@ module Aws::Macie2
|
|
1915
1994
|
:title,
|
1916
1995
|
:type,
|
1917
1996
|
:updated_at)
|
1997
|
+
SENSITIVE = []
|
1918
1998
|
include Aws::Structure
|
1919
1999
|
end
|
1920
2000
|
|
@@ -1923,22 +2003,12 @@ module Aws::Macie2
|
|
1923
2003
|
#
|
1924
2004
|
# @!attribute [rw] action_type
|
1925
2005
|
# The type of action that occurred for the resource and produced the
|
1926
|
-
# policy finding
|
2006
|
+
# policy finding:
|
1927
2007
|
# @return [String]
|
1928
2008
|
#
|
1929
2009
|
# @!attribute [rw] api_call_details
|
1930
|
-
#
|
1931
|
-
#
|
1932
|
-
# * The name of the operation that was invoked most recently and
|
1933
|
-
# produced the finding (api).
|
1934
|
-
#
|
1935
|
-
# * The first date and time when any operation was invoked and
|
1936
|
-
# produced the finding (firstSeen).
|
1937
|
-
#
|
1938
|
-
# * The most recent date and time when the specified operation was
|
1939
|
-
# invoked and produced the finding (lastSeen).
|
1940
|
-
#
|
1941
|
-
# 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.
|
1942
2012
|
# @return [Types::ApiCallDetails]
|
1943
2013
|
#
|
1944
2014
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/FindingAction AWS API Documentation
|
@@ -1946,6 +2016,7 @@ module Aws::Macie2
|
|
1946
2016
|
class FindingAction < Struct.new(
|
1947
2017
|
:action_type,
|
1948
2018
|
:api_call_details)
|
2019
|
+
SENSITIVE = []
|
1949
2020
|
include Aws::Structure
|
1950
2021
|
end
|
1951
2022
|
|
@@ -1953,12 +2024,18 @@ module Aws::Macie2
|
|
1953
2024
|
# produced a policy finding for a resource.
|
1954
2025
|
#
|
1955
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.
|
1956
2029
|
# @return [Types::DomainDetails]
|
1957
2030
|
#
|
1958
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.
|
1959
2034
|
# @return [Types::IpAddressDetails]
|
1960
2035
|
#
|
1961
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.
|
1962
2039
|
# @return [Types::UserIdentity]
|
1963
2040
|
#
|
1964
2041
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/FindingActor AWS API Documentation
|
@@ -1967,6 +2044,7 @@ module Aws::Macie2
|
|
1967
2044
|
:domain_details,
|
1968
2045
|
:ip_address_details,
|
1969
2046
|
:user_identity)
|
2047
|
+
SENSITIVE = []
|
1970
2048
|
include Aws::Structure
|
1971
2049
|
end
|
1972
2050
|
|
@@ -1998,11 +2076,12 @@ module Aws::Macie2
|
|
1998
2076
|
#
|
1999
2077
|
class FindingCriteria < Struct.new(
|
2000
2078
|
:criterion)
|
2079
|
+
SENSITIVE = []
|
2001
2080
|
include Aws::Structure
|
2002
2081
|
end
|
2003
2082
|
|
2004
|
-
# Specifies criteria for sorting the results of a query
|
2005
|
-
# about findings.
|
2083
|
+
# Specifies criteria for sorting the results of a query that retrieves
|
2084
|
+
# aggregated statistical data about findings.
|
2006
2085
|
#
|
2007
2086
|
# @note When making an API call, you may pass FindingStatisticsSortCriteria
|
2008
2087
|
# data as a hash:
|
@@ -2024,11 +2103,18 @@ module Aws::Macie2
|
|
2024
2103
|
class FindingStatisticsSortCriteria < Struct.new(
|
2025
2104
|
:attribute_name,
|
2026
2105
|
:order_by)
|
2106
|
+
SENSITIVE = []
|
2027
2107
|
include Aws::Structure
|
2028
2108
|
end
|
2029
2109
|
|
2030
2110
|
# Provides information about a findings filter.
|
2031
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
|
+
#
|
2032
2118
|
# @!attribute [rw] arn
|
2033
2119
|
# @return [String]
|
2034
2120
|
#
|
@@ -2047,15 +2133,17 @@ module Aws::Macie2
|
|
2047
2133
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/FindingsFilterListItem AWS API Documentation
|
2048
2134
|
#
|
2049
2135
|
class FindingsFilterListItem < Struct.new(
|
2136
|
+
:action,
|
2050
2137
|
:arn,
|
2051
2138
|
:id,
|
2052
2139
|
:name,
|
2053
2140
|
:tags)
|
2141
|
+
SENSITIVE = []
|
2054
2142
|
include Aws::Structure
|
2055
2143
|
end
|
2056
2144
|
|
2057
|
-
# Specifies an account that's associated with S3 buckets to
|
2058
|
-
# aggregated statistical data for.
|
2145
|
+
# Specifies an account that's associated with the S3 buckets to
|
2146
|
+
# retrieve aggregated statistical data for.
|
2059
2147
|
#
|
2060
2148
|
# @note When making an API call, you may pass GetBucketStatisticsRequest
|
2061
2149
|
# data as a hash:
|
@@ -2071,6 +2159,7 @@ module Aws::Macie2
|
|
2071
2159
|
#
|
2072
2160
|
class GetBucketStatisticsRequest < Struct.new(
|
2073
2161
|
:account_id)
|
2162
|
+
SENSITIVE = []
|
2074
2163
|
include Aws::Structure
|
2075
2164
|
end
|
2076
2165
|
|
@@ -2082,19 +2171,20 @@ module Aws::Macie2
|
|
2082
2171
|
# @return [Integer]
|
2083
2172
|
#
|
2084
2173
|
# @!attribute [rw] bucket_count_by_effective_permission
|
2085
|
-
#
|
2086
|
-
# 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.
|
2087
2177
|
# @return [Types::BucketCountByEffectivePermission]
|
2088
2178
|
#
|
2089
2179
|
# @!attribute [rw] bucket_count_by_encryption_type
|
2090
|
-
#
|
2091
|
-
#
|
2092
|
-
#
|
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.
|
2093
2183
|
# @return [Types::BucketCountByEncryptionType]
|
2094
2184
|
#
|
2095
2185
|
# @!attribute [rw] bucket_count_by_shared_access_type
|
2096
|
-
#
|
2097
|
-
#
|
2186
|
+
# Provides information about the number of S3 buckets that are shared
|
2187
|
+
# with other AWS accounts.
|
2098
2188
|
# @return [Types::BucketCountBySharedAccessType]
|
2099
2189
|
#
|
2100
2190
|
# @!attribute [rw] classifiable_object_count
|
@@ -2124,6 +2214,7 @@ module Aws::Macie2
|
|
2124
2214
|
:object_count,
|
2125
2215
|
:size_in_bytes,
|
2126
2216
|
:size_in_bytes_compressed)
|
2217
|
+
SENSITIVE = []
|
2127
2218
|
include Aws::Structure
|
2128
2219
|
end
|
2129
2220
|
|
@@ -2147,6 +2238,7 @@ module Aws::Macie2
|
|
2147
2238
|
#
|
2148
2239
|
class GetClassificationExportConfigurationResponse < Struct.new(
|
2149
2240
|
:configuration)
|
2241
|
+
SENSITIVE = []
|
2150
2242
|
include Aws::Structure
|
2151
2243
|
end
|
2152
2244
|
|
@@ -2164,6 +2256,7 @@ module Aws::Macie2
|
|
2164
2256
|
#
|
2165
2257
|
class GetCustomDataIdentifierRequest < Struct.new(
|
2166
2258
|
:id)
|
2259
|
+
SENSITIVE = []
|
2167
2260
|
include Aws::Structure
|
2168
2261
|
end
|
2169
2262
|
|
@@ -2220,11 +2313,13 @@ module Aws::Macie2
|
|
2220
2313
|
:name,
|
2221
2314
|
:regex,
|
2222
2315
|
:tags)
|
2316
|
+
SENSITIVE = []
|
2223
2317
|
include Aws::Structure
|
2224
2318
|
end
|
2225
2319
|
|
2226
2320
|
# Specifies criteria for filtering, grouping, sorting, and paginating
|
2227
|
-
# the results of a query
|
2321
|
+
# the results of a query that retrieves aggregated statistical data
|
2322
|
+
# about findings.
|
2228
2323
|
#
|
2229
2324
|
# @note When making an API call, you may pass GetFindingStatisticsRequest
|
2230
2325
|
# data as a hash:
|
@@ -2262,8 +2357,8 @@ module Aws::Macie2
|
|
2262
2357
|
# @return [Integer]
|
2263
2358
|
#
|
2264
2359
|
# @!attribute [rw] sort_criteria
|
2265
|
-
# Specifies criteria for sorting the results of a query
|
2266
|
-
#
|
2360
|
+
# Specifies criteria for sorting the results of a query that retrieves
|
2361
|
+
# aggregated statistical data about findings.
|
2267
2362
|
# @return [Types::FindingStatisticsSortCriteria]
|
2268
2363
|
#
|
2269
2364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/GetFindingStatisticsRequest AWS API Documentation
|
@@ -2273,6 +2368,7 @@ module Aws::Macie2
|
|
2273
2368
|
:group_by,
|
2274
2369
|
:size,
|
2275
2370
|
:sort_criteria)
|
2371
|
+
SENSITIVE = []
|
2276
2372
|
include Aws::Structure
|
2277
2373
|
end
|
2278
2374
|
|
@@ -2286,6 +2382,7 @@ module Aws::Macie2
|
|
2286
2382
|
#
|
2287
2383
|
class GetFindingStatisticsResponse < Struct.new(
|
2288
2384
|
:counts_by_group)
|
2385
|
+
SENSITIVE = []
|
2289
2386
|
include Aws::Structure
|
2290
2387
|
end
|
2291
2388
|
|
@@ -2303,10 +2400,12 @@ module Aws::Macie2
|
|
2303
2400
|
#
|
2304
2401
|
class GetFindingsFilterRequest < Struct.new(
|
2305
2402
|
:id)
|
2403
|
+
SENSITIVE = []
|
2306
2404
|
include Aws::Structure
|
2307
2405
|
end
|
2308
2406
|
|
2309
|
-
# Provides information about
|
2407
|
+
# Provides information about the criteria and other settings for a
|
2408
|
+
# findings filter.
|
2310
2409
|
#
|
2311
2410
|
# @!attribute [rw] action
|
2312
2411
|
# The action to perform on findings that meet the filter criteria. To
|
@@ -2351,6 +2450,7 @@ module Aws::Macie2
|
|
2351
2450
|
:name,
|
2352
2451
|
:position,
|
2353
2452
|
:tags)
|
2453
|
+
SENSITIVE = []
|
2354
2454
|
include Aws::Structure
|
2355
2455
|
end
|
2356
2456
|
|
@@ -2380,6 +2480,7 @@ module Aws::Macie2
|
|
2380
2480
|
class GetFindingsRequest < Struct.new(
|
2381
2481
|
:finding_ids,
|
2382
2482
|
:sort_criteria)
|
2483
|
+
SENSITIVE = []
|
2383
2484
|
include Aws::Structure
|
2384
2485
|
end
|
2385
2486
|
|
@@ -2393,6 +2494,7 @@ module Aws::Macie2
|
|
2393
2494
|
#
|
2394
2495
|
class GetFindingsResponse < Struct.new(
|
2395
2496
|
:findings)
|
2497
|
+
SENSITIVE = []
|
2396
2498
|
include Aws::Structure
|
2397
2499
|
end
|
2398
2500
|
|
@@ -2413,6 +2515,7 @@ module Aws::Macie2
|
|
2413
2515
|
#
|
2414
2516
|
class GetInvitationsCountResponse < Struct.new(
|
2415
2517
|
:invitations_count)
|
2518
|
+
SENSITIVE = []
|
2416
2519
|
include Aws::Structure
|
2417
2520
|
end
|
2418
2521
|
|
@@ -2453,6 +2556,7 @@ module Aws::Macie2
|
|
2453
2556
|
:service_role,
|
2454
2557
|
:status,
|
2455
2558
|
:updated_at)
|
2559
|
+
SENSITIVE = []
|
2456
2560
|
include Aws::Structure
|
2457
2561
|
end
|
2458
2562
|
|
@@ -2476,6 +2580,7 @@ module Aws::Macie2
|
|
2476
2580
|
#
|
2477
2581
|
class GetMasterAccountResponse < Struct.new(
|
2478
2582
|
:master)
|
2583
|
+
SENSITIVE = []
|
2479
2584
|
include Aws::Structure
|
2480
2585
|
end
|
2481
2586
|
|
@@ -2493,6 +2598,7 @@ module Aws::Macie2
|
|
2493
2598
|
#
|
2494
2599
|
class GetMemberRequest < Struct.new(
|
2495
2600
|
:id)
|
2601
|
+
SENSITIVE = []
|
2496
2602
|
include Aws::Structure
|
2497
2603
|
end
|
2498
2604
|
|
@@ -2540,6 +2646,7 @@ module Aws::Macie2
|
|
2540
2646
|
:relationship_status,
|
2541
2647
|
:tags,
|
2542
2648
|
:updated_at)
|
2649
|
+
SENSITIVE = []
|
2543
2650
|
include Aws::Structure
|
2544
2651
|
end
|
2545
2652
|
|
@@ -2553,14 +2660,15 @@ module Aws::Macie2
|
|
2553
2660
|
# {
|
2554
2661
|
# filter_by: [
|
2555
2662
|
# {
|
2556
|
-
#
|
2663
|
+
# comparator: "GT", # accepts GT, GTE, LT, LTE, EQ, NE, CONTAINS
|
2664
|
+
# key: "accountId", # accepts accountId, serviceLimit, freeTrialStartDate, total
|
2557
2665
|
# values: ["__string"],
|
2558
2666
|
# },
|
2559
2667
|
# ],
|
2560
2668
|
# max_results: 1,
|
2561
2669
|
# next_token: "__string",
|
2562
2670
|
# sort_by: {
|
2563
|
-
# key: "accountId", # accepts accountId, total
|
2671
|
+
# key: "accountId", # accepts accountId, total, serviceLimitValue, freeTrialStartDate
|
2564
2672
|
# order_by: "ASC", # accepts ASC, DESC
|
2565
2673
|
# },
|
2566
2674
|
# }
|
@@ -2586,6 +2694,7 @@ module Aws::Macie2
|
|
2586
2694
|
:max_results,
|
2587
2695
|
:next_token,
|
2588
2696
|
:sort_by)
|
2697
|
+
SENSITIVE = []
|
2589
2698
|
include Aws::Structure
|
2590
2699
|
end
|
2591
2700
|
|
@@ -2603,6 +2712,7 @@ module Aws::Macie2
|
|
2603
2712
|
class GetUsageStatisticsResponse < Struct.new(
|
2604
2713
|
:next_token,
|
2605
2714
|
:records)
|
2715
|
+
SENSITIVE = []
|
2606
2716
|
include Aws::Structure
|
2607
2717
|
end
|
2608
2718
|
|
@@ -2622,11 +2732,12 @@ module Aws::Macie2
|
|
2622
2732
|
#
|
2623
2733
|
class GetUsageTotalsResponse < Struct.new(
|
2624
2734
|
:usage_totals)
|
2735
|
+
SENSITIVE = []
|
2625
2736
|
include Aws::Structure
|
2626
2737
|
end
|
2627
2738
|
|
2628
|
-
# Provides a group of results for a query that retrieved
|
2629
|
-
# about findings.
|
2739
|
+
# Provides a group of results for a query that retrieved aggregated
|
2740
|
+
# statistical data about findings.
|
2630
2741
|
#
|
2631
2742
|
# @!attribute [rw] count
|
2632
2743
|
# @return [Integer]
|
@@ -2639,10 +2750,12 @@ module Aws::Macie2
|
|
2639
2750
|
class GroupCount < Struct.new(
|
2640
2751
|
:count,
|
2641
2752
|
:group_key)
|
2753
|
+
SENSITIVE = []
|
2642
2754
|
include Aws::Structure
|
2643
2755
|
end
|
2644
2756
|
|
2645
|
-
#
|
2757
|
+
# Provides information about an AWS Identity and Access Management (IAM)
|
2758
|
+
# user who performed an action on an affected resource.
|
2646
2759
|
#
|
2647
2760
|
# @!attribute [rw] account_id
|
2648
2761
|
# @return [String]
|
@@ -2663,6 +2776,7 @@ module Aws::Macie2
|
|
2663
2776
|
:arn,
|
2664
2777
|
:principal_id,
|
2665
2778
|
:user_name)
|
2779
|
+
SENSITIVE = []
|
2666
2780
|
include Aws::Structure
|
2667
2781
|
end
|
2668
2782
|
|
@@ -2676,6 +2790,7 @@ module Aws::Macie2
|
|
2676
2790
|
#
|
2677
2791
|
class InternalServerException < Struct.new(
|
2678
2792
|
:message)
|
2793
|
+
SENSITIVE = []
|
2679
2794
|
include Aws::Structure
|
2680
2795
|
end
|
2681
2796
|
|
@@ -2704,26 +2819,33 @@ module Aws::Macie2
|
|
2704
2819
|
:invitation_id,
|
2705
2820
|
:invited_at,
|
2706
2821
|
:relationship_status)
|
2822
|
+
SENSITIVE = []
|
2707
2823
|
include Aws::Structure
|
2708
2824
|
end
|
2709
2825
|
|
2826
|
+
# Provides information about the IP address of the device that an entity
|
2827
|
+
# used to perform an action on an affected resource.
|
2828
|
+
#
|
2710
2829
|
# @!attribute [rw] ip_address_v4
|
2711
2830
|
# @return [String]
|
2712
2831
|
#
|
2713
2832
|
# @!attribute [rw] ip_city
|
2714
|
-
#
|
2833
|
+
# Provides information about the city that an IP address originated
|
2834
|
+
# from.
|
2715
2835
|
# @return [Types::IpCity]
|
2716
2836
|
#
|
2717
2837
|
# @!attribute [rw] ip_country
|
2718
|
-
#
|
2838
|
+
# Provides information about the country that an IP address originated
|
2839
|
+
# from.
|
2719
2840
|
# @return [Types::IpCountry]
|
2720
2841
|
#
|
2721
2842
|
# @!attribute [rw] ip_geo_location
|
2722
|
-
#
|
2843
|
+
# Provides geographic coordinates that indicate where a specified IP
|
2844
|
+
# address originated from.
|
2723
2845
|
# @return [Types::IpGeoLocation]
|
2724
2846
|
#
|
2725
2847
|
# @!attribute [rw] ip_owner
|
2726
|
-
#
|
2848
|
+
# Provides information about the registered owner of an IP address.
|
2727
2849
|
# @return [Types::IpOwner]
|
2728
2850
|
#
|
2729
2851
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/IpAddressDetails AWS API Documentation
|
@@ -2734,10 +2856,12 @@ module Aws::Macie2
|
|
2734
2856
|
:ip_country,
|
2735
2857
|
:ip_geo_location,
|
2736
2858
|
:ip_owner)
|
2859
|
+
SENSITIVE = []
|
2737
2860
|
include Aws::Structure
|
2738
2861
|
end
|
2739
2862
|
|
2740
|
-
#
|
2863
|
+
# Provides information about the city that an IP address originated
|
2864
|
+
# from.
|
2741
2865
|
#
|
2742
2866
|
# @!attribute [rw] name
|
2743
2867
|
# @return [String]
|
@@ -2746,10 +2870,12 @@ module Aws::Macie2
|
|
2746
2870
|
#
|
2747
2871
|
class IpCity < Struct.new(
|
2748
2872
|
:name)
|
2873
|
+
SENSITIVE = []
|
2749
2874
|
include Aws::Structure
|
2750
2875
|
end
|
2751
2876
|
|
2752
|
-
#
|
2877
|
+
# Provides information about the country that an IP address originated
|
2878
|
+
# from.
|
2753
2879
|
#
|
2754
2880
|
# @!attribute [rw] code
|
2755
2881
|
# @return [String]
|
@@ -2762,10 +2888,12 @@ module Aws::Macie2
|
|
2762
2888
|
class IpCountry < Struct.new(
|
2763
2889
|
:code,
|
2764
2890
|
:name)
|
2891
|
+
SENSITIVE = []
|
2765
2892
|
include Aws::Structure
|
2766
2893
|
end
|
2767
2894
|
|
2768
|
-
#
|
2895
|
+
# Provides geographic coordinates that indicate where a specified IP
|
2896
|
+
# address originated from.
|
2769
2897
|
#
|
2770
2898
|
# @!attribute [rw] lat
|
2771
2899
|
# @return [Float]
|
@@ -2778,10 +2906,11 @@ module Aws::Macie2
|
|
2778
2906
|
class IpGeoLocation < Struct.new(
|
2779
2907
|
:lat,
|
2780
2908
|
:lon)
|
2909
|
+
SENSITIVE = []
|
2781
2910
|
include Aws::Structure
|
2782
2911
|
end
|
2783
2912
|
|
2784
|
-
#
|
2913
|
+
# Provides information about the registered owner of an IP address.
|
2785
2914
|
#
|
2786
2915
|
# @!attribute [rw] asn
|
2787
2916
|
# @return [String]
|
@@ -2802,6 +2931,7 @@ module Aws::Macie2
|
|
2802
2931
|
:asn_org,
|
2803
2932
|
:isp,
|
2804
2933
|
:org)
|
2934
|
+
SENSITIVE = []
|
2805
2935
|
include Aws::Structure
|
2806
2936
|
end
|
2807
2937
|
|
@@ -2822,14 +2952,18 @@ module Aws::Macie2
|
|
2822
2952
|
# }
|
2823
2953
|
#
|
2824
2954
|
# @!attribute [rw] daily_schedule
|
2955
|
+
# Specifies that a classification job runs once a day, every day. This
|
2956
|
+
# is an empty object.
|
2825
2957
|
# @return [Types::DailySchedule]
|
2826
2958
|
#
|
2827
2959
|
# @!attribute [rw] monthly_schedule
|
2828
|
-
#
|
2829
|
-
#
|
2960
|
+
# Specifies a monthly recurrence pattern for running a classification
|
2961
|
+
# job.
|
2830
2962
|
# @return [Types::MonthlySchedule]
|
2831
2963
|
#
|
2832
2964
|
# @!attribute [rw] weekly_schedule
|
2965
|
+
# Specifies a weekly recurrence pattern for running a classification
|
2966
|
+
# job.
|
2833
2967
|
# @return [Types::WeeklySchedule]
|
2834
2968
|
#
|
2835
2969
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/JobScheduleFrequency AWS API Documentation
|
@@ -2838,11 +2972,12 @@ module Aws::Macie2
|
|
2838
2972
|
:daily_schedule,
|
2839
2973
|
:monthly_schedule,
|
2840
2974
|
:weekly_schedule)
|
2975
|
+
SENSITIVE = []
|
2841
2976
|
include Aws::Structure
|
2842
2977
|
end
|
2843
2978
|
|
2844
|
-
# Specifies
|
2845
|
-
# classification job
|
2979
|
+
# Specifies a property- or tag-based condition that defines criteria for
|
2980
|
+
# including or excluding objects from a classification job.
|
2846
2981
|
#
|
2847
2982
|
# @note When making an API call, you may pass JobScopeTerm
|
2848
2983
|
# data as a hash:
|
@@ -2881,10 +3016,12 @@ module Aws::Macie2
|
|
2881
3016
|
class JobScopeTerm < Struct.new(
|
2882
3017
|
:simple_scope_term,
|
2883
3018
|
:tag_scope_term)
|
3019
|
+
SENSITIVE = []
|
2884
3020
|
include Aws::Structure
|
2885
3021
|
end
|
2886
3022
|
|
2887
|
-
#
|
3023
|
+
# Specifies one or more property- and tag-based conditions that define
|
3024
|
+
# criteria for including or excluding objects from a classification job.
|
2888
3025
|
#
|
2889
3026
|
# @note When making an API call, you may pass JobScopingBlock
|
2890
3027
|
# data as a hash:
|
@@ -2919,6 +3056,7 @@ module Aws::Macie2
|
|
2919
3056
|
#
|
2920
3057
|
class JobScopingBlock < Struct.new(
|
2921
3058
|
:and)
|
3059
|
+
SENSITIVE = []
|
2922
3060
|
include Aws::Structure
|
2923
3061
|
end
|
2924
3062
|
|
@@ -2935,7 +3073,7 @@ module Aws::Macie2
|
|
2935
3073
|
# @return [String]
|
2936
3074
|
#
|
2937
3075
|
# @!attribute [rw] job_status
|
2938
|
-
# The current status of a classification job.
|
3076
|
+
# The current status of a classification job. Possible values are:
|
2939
3077
|
# @return [String]
|
2940
3078
|
#
|
2941
3079
|
# @!attribute [rw] job_type
|
@@ -2954,6 +3092,7 @@ module Aws::Macie2
|
|
2954
3092
|
:job_status,
|
2955
3093
|
:job_type,
|
2956
3094
|
:name)
|
3095
|
+
SENSITIVE = []
|
2957
3096
|
include Aws::Structure
|
2958
3097
|
end
|
2959
3098
|
|
@@ -2972,6 +3111,7 @@ module Aws::Macie2
|
|
2972
3111
|
class KeyValuePair < Struct.new(
|
2973
3112
|
:key,
|
2974
3113
|
:value)
|
3114
|
+
SENSITIVE = []
|
2975
3115
|
include Aws::Structure
|
2976
3116
|
end
|
2977
3117
|
|
@@ -3029,6 +3169,7 @@ module Aws::Macie2
|
|
3029
3169
|
:max_results,
|
3030
3170
|
:next_token,
|
3031
3171
|
:sort_criteria)
|
3172
|
+
SENSITIVE = []
|
3032
3173
|
include Aws::Structure
|
3033
3174
|
end
|
3034
3175
|
|
@@ -3046,6 +3187,7 @@ module Aws::Macie2
|
|
3046
3187
|
class ListClassificationJobsResponse < Struct.new(
|
3047
3188
|
:items,
|
3048
3189
|
:next_token)
|
3190
|
+
SENSITIVE = []
|
3049
3191
|
include Aws::Structure
|
3050
3192
|
end
|
3051
3193
|
|
@@ -3071,6 +3213,7 @@ module Aws::Macie2
|
|
3071
3213
|
class ListCustomDataIdentifiersRequest < Struct.new(
|
3072
3214
|
:max_results,
|
3073
3215
|
:next_token)
|
3216
|
+
SENSITIVE = []
|
3074
3217
|
include Aws::Structure
|
3075
3218
|
end
|
3076
3219
|
|
@@ -3088,6 +3231,7 @@ module Aws::Macie2
|
|
3088
3231
|
class ListCustomDataIdentifiersResponse < Struct.new(
|
3089
3232
|
:items,
|
3090
3233
|
:next_token)
|
3234
|
+
SENSITIVE = []
|
3091
3235
|
include Aws::Structure
|
3092
3236
|
end
|
3093
3237
|
|
@@ -3110,6 +3254,7 @@ module Aws::Macie2
|
|
3110
3254
|
class ListFindingsFiltersRequest < Struct.new(
|
3111
3255
|
:max_results,
|
3112
3256
|
:next_token)
|
3257
|
+
SENSITIVE = []
|
3113
3258
|
include Aws::Structure
|
3114
3259
|
end
|
3115
3260
|
|
@@ -3126,6 +3271,7 @@ module Aws::Macie2
|
|
3126
3271
|
class ListFindingsFiltersResponse < Struct.new(
|
3127
3272
|
:findings_filter_list_items,
|
3128
3273
|
:next_token)
|
3274
|
+
SENSITIVE = []
|
3129
3275
|
include Aws::Structure
|
3130
3276
|
end
|
3131
3277
|
|
@@ -3179,6 +3325,7 @@ module Aws::Macie2
|
|
3179
3325
|
:max_results,
|
3180
3326
|
:next_token,
|
3181
3327
|
:sort_criteria)
|
3328
|
+
SENSITIVE = []
|
3182
3329
|
include Aws::Structure
|
3183
3330
|
end
|
3184
3331
|
|
@@ -3196,6 +3343,7 @@ module Aws::Macie2
|
|
3196
3343
|
class ListFindingsResponse < Struct.new(
|
3197
3344
|
:finding_ids,
|
3198
3345
|
:next_token)
|
3346
|
+
SENSITIVE = []
|
3199
3347
|
include Aws::Structure
|
3200
3348
|
end
|
3201
3349
|
|
@@ -3218,6 +3366,7 @@ module Aws::Macie2
|
|
3218
3366
|
class ListInvitationsRequest < Struct.new(
|
3219
3367
|
:max_results,
|
3220
3368
|
:next_token)
|
3369
|
+
SENSITIVE = []
|
3221
3370
|
include Aws::Structure
|
3222
3371
|
end
|
3223
3372
|
|
@@ -3235,6 +3384,7 @@ module Aws::Macie2
|
|
3235
3384
|
class ListInvitationsResponse < Struct.new(
|
3236
3385
|
:invitations,
|
3237
3386
|
:next_token)
|
3387
|
+
SENSITIVE = []
|
3238
3388
|
include Aws::Structure
|
3239
3389
|
end
|
3240
3390
|
|
@@ -3272,6 +3422,7 @@ module Aws::Macie2
|
|
3272
3422
|
class ListJobsFilterCriteria < Struct.new(
|
3273
3423
|
:excludes,
|
3274
3424
|
:includes)
|
3425
|
+
SENSITIVE = []
|
3275
3426
|
include Aws::Structure
|
3276
3427
|
end
|
3277
3428
|
|
@@ -3305,6 +3456,7 @@ module Aws::Macie2
|
|
3305
3456
|
:comparator,
|
3306
3457
|
:key,
|
3307
3458
|
:values)
|
3459
|
+
SENSITIVE = []
|
3308
3460
|
include Aws::Structure
|
3309
3461
|
end
|
3310
3462
|
|
@@ -3331,6 +3483,7 @@ module Aws::Macie2
|
|
3331
3483
|
class ListJobsSortCriteria < Struct.new(
|
3332
3484
|
:attribute_name,
|
3333
3485
|
:order_by)
|
3486
|
+
SENSITIVE = []
|
3334
3487
|
include Aws::Structure
|
3335
3488
|
end
|
3336
3489
|
|
@@ -3358,6 +3511,7 @@ module Aws::Macie2
|
|
3358
3511
|
:max_results,
|
3359
3512
|
:next_token,
|
3360
3513
|
:only_associated)
|
3514
|
+
SENSITIVE = []
|
3361
3515
|
include Aws::Structure
|
3362
3516
|
end
|
3363
3517
|
|
@@ -3375,6 +3529,7 @@ module Aws::Macie2
|
|
3375
3529
|
class ListMembersResponse < Struct.new(
|
3376
3530
|
:members,
|
3377
3531
|
:next_token)
|
3532
|
+
SENSITIVE = []
|
3378
3533
|
include Aws::Structure
|
3379
3534
|
end
|
3380
3535
|
|
@@ -3397,6 +3552,7 @@ module Aws::Macie2
|
|
3397
3552
|
class ListOrganizationAdminAccountsRequest < Struct.new(
|
3398
3553
|
:max_results,
|
3399
3554
|
:next_token)
|
3555
|
+
SENSITIVE = []
|
3400
3556
|
include Aws::Structure
|
3401
3557
|
end
|
3402
3558
|
|
@@ -3414,6 +3570,7 @@ module Aws::Macie2
|
|
3414
3570
|
class ListOrganizationAdminAccountsResponse < Struct.new(
|
3415
3571
|
:admin_accounts,
|
3416
3572
|
:next_token)
|
3573
|
+
SENSITIVE = []
|
3417
3574
|
include Aws::Structure
|
3418
3575
|
end
|
3419
3576
|
|
@@ -3431,6 +3588,7 @@ module Aws::Macie2
|
|
3431
3588
|
#
|
3432
3589
|
class ListTagsForResourceRequest < Struct.new(
|
3433
3590
|
:resource_arn)
|
3591
|
+
SENSITIVE = []
|
3434
3592
|
include Aws::Structure
|
3435
3593
|
end
|
3436
3594
|
|
@@ -3448,6 +3606,7 @@ module Aws::Macie2
|
|
3448
3606
|
#
|
3449
3607
|
class ListTagsForResourceResponse < Struct.new(
|
3450
3608
|
:tags)
|
3609
|
+
SENSITIVE = []
|
3451
3610
|
include Aws::Structure
|
3452
3611
|
end
|
3453
3612
|
|
@@ -3495,11 +3654,12 @@ module Aws::Macie2
|
|
3495
3654
|
:relationship_status,
|
3496
3655
|
:tags,
|
3497
3656
|
:updated_at)
|
3657
|
+
SENSITIVE = []
|
3498
3658
|
include Aws::Structure
|
3499
3659
|
end
|
3500
3660
|
|
3501
|
-
#
|
3502
|
-
#
|
3661
|
+
# Specifies a monthly recurrence pattern for running a classification
|
3662
|
+
# job.
|
3503
3663
|
#
|
3504
3664
|
# @note When making an API call, you may pass MonthlySchedule
|
3505
3665
|
# data as a hash:
|
@@ -3515,9 +3675,14 @@ module Aws::Macie2
|
|
3515
3675
|
#
|
3516
3676
|
class MonthlySchedule < Struct.new(
|
3517
3677
|
:day_of_month)
|
3678
|
+
SENSITIVE = []
|
3518
3679
|
include Aws::Structure
|
3519
3680
|
end
|
3520
3681
|
|
3682
|
+
# Provides information about the number of objects that are in an S3
|
3683
|
+
# bucket and use certain types of server-side encryption, use
|
3684
|
+
# client-side encryption, or aren't encrypted.
|
3685
|
+
#
|
3521
3686
|
# @!attribute [rw] customer_managed
|
3522
3687
|
# @return [Integer]
|
3523
3688
|
#
|
@@ -3537,10 +3702,11 @@ module Aws::Macie2
|
|
3537
3702
|
:kms_managed,
|
3538
3703
|
:s3_managed,
|
3539
3704
|
:unencrypted)
|
3705
|
+
SENSITIVE = []
|
3540
3706
|
include Aws::Structure
|
3541
3707
|
end
|
3542
3708
|
|
3543
|
-
# Provides
|
3709
|
+
# Provides the details of a policy finding.
|
3544
3710
|
#
|
3545
3711
|
# @!attribute [rw] action
|
3546
3712
|
# Provides information about an action that occurred for a resource
|
@@ -3557,6 +3723,7 @@ module Aws::Macie2
|
|
3557
3723
|
class PolicyDetails < Struct.new(
|
3558
3724
|
:action,
|
3559
3725
|
:actor)
|
3726
|
+
SENSITIVE = []
|
3560
3727
|
include Aws::Structure
|
3561
3728
|
end
|
3562
3729
|
|
@@ -3588,6 +3755,7 @@ module Aws::Macie2
|
|
3588
3755
|
#
|
3589
3756
|
class PutClassificationExportConfigurationRequest < Struct.new(
|
3590
3757
|
:configuration)
|
3758
|
+
SENSITIVE = []
|
3591
3759
|
include Aws::Structure
|
3592
3760
|
end
|
3593
3761
|
|
@@ -3605,6 +3773,7 @@ module Aws::Macie2
|
|
3605
3773
|
#
|
3606
3774
|
class PutClassificationExportConfigurationResponse < Struct.new(
|
3607
3775
|
:configuration)
|
3776
|
+
SENSITIVE = []
|
3608
3777
|
include Aws::Structure
|
3609
3778
|
end
|
3610
3779
|
|
@@ -3627,6 +3796,7 @@ module Aws::Macie2
|
|
3627
3796
|
:replicated,
|
3628
3797
|
:replicated_externally,
|
3629
3798
|
:replication_accounts)
|
3799
|
+
SENSITIVE = []
|
3630
3800
|
include Aws::Structure
|
3631
3801
|
end
|
3632
3802
|
|
@@ -3640,6 +3810,7 @@ module Aws::Macie2
|
|
3640
3810
|
#
|
3641
3811
|
class ResourceNotFoundException < Struct.new(
|
3642
3812
|
:message)
|
3813
|
+
SENSITIVE = []
|
3643
3814
|
include Aws::Structure
|
3644
3815
|
end
|
3645
3816
|
|
@@ -3658,6 +3829,7 @@ module Aws::Macie2
|
|
3658
3829
|
class ResourcesAffected < Struct.new(
|
3659
3830
|
:s3_bucket,
|
3660
3831
|
:s3_object)
|
3832
|
+
SENSITIVE = []
|
3661
3833
|
include Aws::Structure
|
3662
3834
|
end
|
3663
3835
|
|
@@ -3687,7 +3859,9 @@ module Aws::Macie2
|
|
3687
3859
|
# @return [Types::BucketPublicAccess]
|
3688
3860
|
#
|
3689
3861
|
# @!attribute [rw] tags
|
3690
|
-
#
|
3862
|
+
# Provides information about the tags that are associated with an S3
|
3863
|
+
# bucket or object. Each tag consists of a required tag key and an
|
3864
|
+
# associated tag value.
|
3691
3865
|
# @return [Array<Types::KeyValuePair>]
|
3692
3866
|
#
|
3693
3867
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/S3Bucket AWS API Documentation
|
@@ -3700,6 +3874,7 @@ module Aws::Macie2
|
|
3700
3874
|
:owner,
|
3701
3875
|
:public_access,
|
3702
3876
|
:tags)
|
3877
|
+
SENSITIVE = []
|
3703
3878
|
include Aws::Structure
|
3704
3879
|
end
|
3705
3880
|
|
@@ -3725,6 +3900,7 @@ module Aws::Macie2
|
|
3725
3900
|
class S3BucketDefinitionForJob < Struct.new(
|
3726
3901
|
:account_id,
|
3727
3902
|
:buckets)
|
3903
|
+
SENSITIVE = []
|
3728
3904
|
include Aws::Structure
|
3729
3905
|
end
|
3730
3906
|
|
@@ -3741,6 +3917,7 @@ module Aws::Macie2
|
|
3741
3917
|
class S3BucketOwner < Struct.new(
|
3742
3918
|
:display_name,
|
3743
3919
|
:id)
|
3920
|
+
SENSITIVE = []
|
3744
3921
|
include Aws::Structure
|
3745
3922
|
end
|
3746
3923
|
|
@@ -3771,6 +3948,7 @@ module Aws::Macie2
|
|
3771
3948
|
:bucket_name,
|
3772
3949
|
:key_prefix,
|
3773
3950
|
:kms_key_arn)
|
3951
|
+
SENSITIVE = []
|
3774
3952
|
include Aws::Structure
|
3775
3953
|
end
|
3776
3954
|
|
@@ -3839,6 +4017,9 @@ module Aws::Macie2
|
|
3839
4017
|
# @return [Array<Types::S3BucketDefinitionForJob>]
|
3840
4018
|
#
|
3841
4019
|
# @!attribute [rw] scoping
|
4020
|
+
# Specifies one or more property- and tag-based conditions that refine
|
4021
|
+
# the scope of a classification job. These conditions define criteria
|
4022
|
+
# that determine which objects a job analyzes.
|
3842
4023
|
# @return [Types::Scoping]
|
3843
4024
|
#
|
3844
4025
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/S3JobDefinition AWS API Documentation
|
@@ -3846,6 +4027,7 @@ module Aws::Macie2
|
|
3846
4027
|
class S3JobDefinition < Struct.new(
|
3847
4028
|
:bucket_definitions,
|
3848
4029
|
:scoping)
|
4030
|
+
SENSITIVE = []
|
3849
4031
|
include Aws::Structure
|
3850
4032
|
end
|
3851
4033
|
|
@@ -3881,11 +4063,13 @@ module Aws::Macie2
|
|
3881
4063
|
# @return [Integer]
|
3882
4064
|
#
|
3883
4065
|
# @!attribute [rw] storage_class
|
3884
|
-
# The storage class of the S3 bucket or object.
|
4066
|
+
# The storage class of the S3 bucket or object. Possible values are:
|
3885
4067
|
# @return [String]
|
3886
4068
|
#
|
3887
4069
|
# @!attribute [rw] tags
|
3888
|
-
#
|
4070
|
+
# Provides information about the tags that are associated with an S3
|
4071
|
+
# bucket or object. Each tag consists of a required tag key and an
|
4072
|
+
# associated tag value.
|
3889
4073
|
# @return [Array<Types::KeyValuePair>]
|
3890
4074
|
#
|
3891
4075
|
# @!attribute [rw] version_id
|
@@ -3906,9 +4090,14 @@ module Aws::Macie2
|
|
3906
4090
|
:storage_class,
|
3907
4091
|
:tags,
|
3908
4092
|
:version_id)
|
4093
|
+
SENSITIVE = []
|
3909
4094
|
include Aws::Structure
|
3910
4095
|
end
|
3911
4096
|
|
4097
|
+
# Specifies one or more property- and tag-based conditions that refine
|
4098
|
+
# the scope of a classification job. These conditions define criteria
|
4099
|
+
# that determine which objects a job analyzes.
|
4100
|
+
#
|
3912
4101
|
# @note When making an API call, you may pass Scoping
|
3913
4102
|
# data as a hash:
|
3914
4103
|
#
|
@@ -3960,11 +4149,15 @@ module Aws::Macie2
|
|
3960
4149
|
# }
|
3961
4150
|
#
|
3962
4151
|
# @!attribute [rw] excludes
|
3963
|
-
#
|
4152
|
+
# Specifies one or more property- and tag-based conditions that define
|
4153
|
+
# criteria for including or excluding objects from a classification
|
4154
|
+
# job.
|
3964
4155
|
# @return [Types::JobScopingBlock]
|
3965
4156
|
#
|
3966
4157
|
# @!attribute [rw] includes
|
3967
|
-
#
|
4158
|
+
# Specifies one or more property- and tag-based conditions that define
|
4159
|
+
# criteria for including or excluding objects from a classification
|
4160
|
+
# job.
|
3968
4161
|
# @return [Types::JobScopingBlock]
|
3969
4162
|
#
|
3970
4163
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/Scoping AWS API Documentation
|
@@ -3972,6 +4165,7 @@ module Aws::Macie2
|
|
3972
4165
|
class Scoping < Struct.new(
|
3973
4166
|
:excludes,
|
3974
4167
|
:includes)
|
4168
|
+
SENSITIVE = []
|
3975
4169
|
include Aws::Structure
|
3976
4170
|
end
|
3977
4171
|
|
@@ -3980,11 +4174,14 @@ module Aws::Macie2
|
|
3980
4174
|
#
|
3981
4175
|
# @!attribute [rw] category
|
3982
4176
|
# The category of sensitive data that was detected and produced the
|
3983
|
-
# finding.
|
4177
|
+
# finding. Possible values are:
|
3984
4178
|
# @return [String]
|
3985
4179
|
#
|
3986
4180
|
# @!attribute [rw] detections
|
3987
|
-
#
|
4181
|
+
# Provides information about sensitive data that was detected by
|
4182
|
+
# managed data identifiers and produced a sensitive data finding, and
|
4183
|
+
# the number of occurrences of each type of sensitive data that was
|
4184
|
+
# detected.
|
3988
4185
|
# @return [Array<Types::DefaultDetection>]
|
3989
4186
|
#
|
3990
4187
|
# @!attribute [rw] total_count
|
@@ -3996,6 +4193,7 @@ module Aws::Macie2
|
|
3996
4193
|
:category,
|
3997
4194
|
:detections,
|
3998
4195
|
:total_count)
|
4196
|
+
SENSITIVE = []
|
3999
4197
|
include Aws::Structure
|
4000
4198
|
end
|
4001
4199
|
|
@@ -4003,8 +4201,8 @@ module Aws::Macie2
|
|
4003
4201
|
# S3 bucket or object.
|
4004
4202
|
#
|
4005
4203
|
# @!attribute [rw] encryption_type
|
4006
|
-
# The server-side encryption
|
4007
|
-
# S3 bucket
|
4204
|
+
# The type of server-side encryption that's used to encrypt objects
|
4205
|
+
# in the S3 bucket. Valid values are:
|
4008
4206
|
# @return [String]
|
4009
4207
|
#
|
4010
4208
|
# @!attribute [rw] kms_master_key_id
|
@@ -4015,6 +4213,7 @@ module Aws::Macie2
|
|
4015
4213
|
class ServerSideEncryption < Struct.new(
|
4016
4214
|
:encryption_type,
|
4017
4215
|
:kms_master_key_id)
|
4216
|
+
SENSITIVE = []
|
4018
4217
|
include Aws::Structure
|
4019
4218
|
end
|
4020
4219
|
|
@@ -4035,6 +4234,7 @@ module Aws::Macie2
|
|
4035
4234
|
:is_service_limited,
|
4036
4235
|
:unit,
|
4037
4236
|
:value)
|
4237
|
+
SENSITIVE = []
|
4038
4238
|
include Aws::Structure
|
4039
4239
|
end
|
4040
4240
|
|
@@ -4048,6 +4248,7 @@ module Aws::Macie2
|
|
4048
4248
|
#
|
4049
4249
|
class ServiceQuotaExceededException < Struct.new(
|
4050
4250
|
:message)
|
4251
|
+
SENSITIVE = []
|
4051
4252
|
include Aws::Structure
|
4052
4253
|
end
|
4053
4254
|
|
@@ -4069,6 +4270,7 @@ module Aws::Macie2
|
|
4069
4270
|
class SessionContext < Struct.new(
|
4070
4271
|
:attributes,
|
4071
4272
|
:session_issuer)
|
4273
|
+
SENSITIVE = []
|
4072
4274
|
include Aws::Structure
|
4073
4275
|
end
|
4074
4276
|
|
@@ -4086,6 +4288,7 @@ module Aws::Macie2
|
|
4086
4288
|
class SessionContextAttributes < Struct.new(
|
4087
4289
|
:creation_date,
|
4088
4290
|
:mfa_authenticated)
|
4291
|
+
SENSITIVE = []
|
4089
4292
|
include Aws::Structure
|
4090
4293
|
end
|
4091
4294
|
|
@@ -4115,6 +4318,7 @@ module Aws::Macie2
|
|
4115
4318
|
:principal_id,
|
4116
4319
|
:type,
|
4117
4320
|
:user_name)
|
4321
|
+
SENSITIVE = []
|
4118
4322
|
include Aws::Structure
|
4119
4323
|
end
|
4120
4324
|
|
@@ -4122,8 +4326,8 @@ module Aws::Macie2
|
|
4122
4326
|
# value.
|
4123
4327
|
#
|
4124
4328
|
# @!attribute [rw] description
|
4125
|
-
# The textual representation of the finding's severity.
|
4126
|
-
# are:
|
4329
|
+
# The textual representation of the finding's severity. Possible
|
4330
|
+
# values are:
|
4127
4331
|
# @return [String]
|
4128
4332
|
#
|
4129
4333
|
# @!attribute [rw] score
|
@@ -4134,6 +4338,7 @@ module Aws::Macie2
|
|
4134
4338
|
class Severity < Struct.new(
|
4135
4339
|
:description,
|
4136
4340
|
:score)
|
4341
|
+
SENSITIVE = []
|
4137
4342
|
include Aws::Structure
|
4138
4343
|
end
|
4139
4344
|
|
@@ -4167,6 +4372,7 @@ module Aws::Macie2
|
|
4167
4372
|
:comparator,
|
4168
4373
|
:key,
|
4169
4374
|
:values)
|
4375
|
+
SENSITIVE = []
|
4170
4376
|
include Aws::Structure
|
4171
4377
|
end
|
4172
4378
|
|
@@ -4192,6 +4398,7 @@ module Aws::Macie2
|
|
4192
4398
|
class SortCriteria < Struct.new(
|
4193
4399
|
:attribute_name,
|
4194
4400
|
:order_by)
|
4401
|
+
SENSITIVE = []
|
4195
4402
|
include Aws::Structure
|
4196
4403
|
end
|
4197
4404
|
|
@@ -4208,6 +4415,7 @@ module Aws::Macie2
|
|
4208
4415
|
class Statistics < Struct.new(
|
4209
4416
|
:approximate_number_of_objects_to_process,
|
4210
4417
|
:number_of_runs)
|
4418
|
+
SENSITIVE = []
|
4211
4419
|
include Aws::Structure
|
4212
4420
|
end
|
4213
4421
|
|
@@ -4239,6 +4447,7 @@ module Aws::Macie2
|
|
4239
4447
|
class TagResourceRequest < Struct.new(
|
4240
4448
|
:resource_arn,
|
4241
4449
|
:tags)
|
4450
|
+
SENSITIVE = []
|
4242
4451
|
include Aws::Structure
|
4243
4452
|
end
|
4244
4453
|
|
@@ -4288,6 +4497,7 @@ module Aws::Macie2
|
|
4288
4497
|
:key,
|
4289
4498
|
:tag_values,
|
4290
4499
|
:target)
|
4500
|
+
SENSITIVE = []
|
4291
4501
|
include Aws::Structure
|
4292
4502
|
end
|
4293
4503
|
|
@@ -4313,6 +4523,7 @@ module Aws::Macie2
|
|
4313
4523
|
class TagValuePair < Struct.new(
|
4314
4524
|
:key,
|
4315
4525
|
:value)
|
4526
|
+
SENSITIVE = []
|
4316
4527
|
include Aws::Structure
|
4317
4528
|
end
|
4318
4529
|
|
@@ -4352,6 +4563,7 @@ module Aws::Macie2
|
|
4352
4563
|
:maximum_match_distance,
|
4353
4564
|
:regex,
|
4354
4565
|
:sample_text)
|
4566
|
+
SENSITIVE = []
|
4355
4567
|
include Aws::Structure
|
4356
4568
|
end
|
4357
4569
|
|
@@ -4364,6 +4576,7 @@ module Aws::Macie2
|
|
4364
4576
|
#
|
4365
4577
|
class TestCustomDataIdentifierResponse < Struct.new(
|
4366
4578
|
:match_count)
|
4579
|
+
SENSITIVE = []
|
4367
4580
|
include Aws::Structure
|
4368
4581
|
end
|
4369
4582
|
|
@@ -4377,6 +4590,7 @@ module Aws::Macie2
|
|
4377
4590
|
#
|
4378
4591
|
class ThrottlingException < Struct.new(
|
4379
4592
|
:message)
|
4593
|
+
SENSITIVE = []
|
4380
4594
|
include Aws::Structure
|
4381
4595
|
end
|
4382
4596
|
|
@@ -4399,6 +4613,7 @@ module Aws::Macie2
|
|
4399
4613
|
:account_id,
|
4400
4614
|
:error_code,
|
4401
4615
|
:error_message)
|
4616
|
+
SENSITIVE = []
|
4402
4617
|
include Aws::Structure
|
4403
4618
|
end
|
4404
4619
|
|
@@ -4421,6 +4636,7 @@ module Aws::Macie2
|
|
4421
4636
|
class UntagResourceRequest < Struct.new(
|
4422
4637
|
:resource_arn,
|
4423
4638
|
:tag_keys)
|
4639
|
+
SENSITIVE = []
|
4424
4640
|
include Aws::Structure
|
4425
4641
|
end
|
4426
4642
|
|
@@ -4445,7 +4661,7 @@ module Aws::Macie2
|
|
4445
4661
|
# @return [String]
|
4446
4662
|
#
|
4447
4663
|
# @!attribute [rw] job_status
|
4448
|
-
# The current status of a classification job.
|
4664
|
+
# The current status of a classification job. Possible values are:
|
4449
4665
|
# @return [String]
|
4450
4666
|
#
|
4451
4667
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/UpdateClassificationJobRequest AWS API Documentation
|
@@ -4453,6 +4669,7 @@ module Aws::Macie2
|
|
4453
4669
|
class UpdateClassificationJobRequest < Struct.new(
|
4454
4670
|
:job_id,
|
4455
4671
|
:job_status)
|
4672
|
+
SENSITIVE = []
|
4456
4673
|
include Aws::Structure
|
4457
4674
|
end
|
4458
4675
|
|
@@ -4517,6 +4734,7 @@ module Aws::Macie2
|
|
4517
4734
|
:id,
|
4518
4735
|
:name,
|
4519
4736
|
:position)
|
4737
|
+
SENSITIVE = []
|
4520
4738
|
include Aws::Structure
|
4521
4739
|
end
|
4522
4740
|
|
@@ -4534,6 +4752,7 @@ module Aws::Macie2
|
|
4534
4752
|
class UpdateFindingsFilterResponse < Struct.new(
|
4535
4753
|
:arn,
|
4536
4754
|
:id)
|
4755
|
+
SENSITIVE = []
|
4537
4756
|
include Aws::Structure
|
4538
4757
|
end
|
4539
4758
|
|
@@ -4564,6 +4783,7 @@ module Aws::Macie2
|
|
4564
4783
|
class UpdateMacieSessionRequest < Struct.new(
|
4565
4784
|
:finding_publishing_frequency,
|
4566
4785
|
:status)
|
4786
|
+
SENSITIVE = []
|
4567
4787
|
include Aws::Structure
|
4568
4788
|
end
|
4569
4789
|
|
@@ -4593,6 +4813,7 @@ module Aws::Macie2
|
|
4593
4813
|
class UpdateMemberSessionRequest < Struct.new(
|
4594
4814
|
:id,
|
4595
4815
|
:status)
|
4816
|
+
SENSITIVE = []
|
4596
4817
|
include Aws::Structure
|
4597
4818
|
end
|
4598
4819
|
|
@@ -4617,6 +4838,7 @@ module Aws::Macie2
|
|
4617
4838
|
#
|
4618
4839
|
class UpdateOrganizationConfigurationRequest < Struct.new(
|
4619
4840
|
:auto_enable)
|
4841
|
+
SENSITIVE = []
|
4620
4842
|
include Aws::Structure
|
4621
4843
|
end
|
4622
4844
|
|
@@ -4651,6 +4873,7 @@ module Aws::Macie2
|
|
4651
4873
|
:estimated_cost,
|
4652
4874
|
:service_limit,
|
4653
4875
|
:type)
|
4876
|
+
SENSITIVE = []
|
4654
4877
|
include Aws::Structure
|
4655
4878
|
end
|
4656
4879
|
|
@@ -4671,23 +4894,30 @@ module Aws::Macie2
|
|
4671
4894
|
:account_id,
|
4672
4895
|
:free_trial_start_date,
|
4673
4896
|
:usage)
|
4897
|
+
SENSITIVE = []
|
4674
4898
|
include Aws::Structure
|
4675
4899
|
end
|
4676
4900
|
|
4677
|
-
# Specifies
|
4901
|
+
# Specifies a condition for filtering the results of a query for account
|
4678
4902
|
# quotas and usage data.
|
4679
4903
|
#
|
4680
4904
|
# @note When making an API call, you may pass UsageStatisticsFilter
|
4681
4905
|
# data as a hash:
|
4682
4906
|
#
|
4683
4907
|
# {
|
4684
|
-
#
|
4908
|
+
# comparator: "GT", # accepts GT, GTE, LT, LTE, EQ, NE, CONTAINS
|
4909
|
+
# key: "accountId", # accepts accountId, serviceLimit, freeTrialStartDate, total
|
4685
4910
|
# values: ["__string"],
|
4686
4911
|
# }
|
4687
4912
|
#
|
4913
|
+
# @!attribute [rw] comparator
|
4914
|
+
# The operator to use in a condition that filters the results of a
|
4915
|
+
# query for account quotas and usage data. Valid values are:
|
4916
|
+
# @return [String]
|
4917
|
+
#
|
4688
4918
|
# @!attribute [rw] key
|
4689
|
-
# The field to use
|
4690
|
-
# and usage data.
|
4919
|
+
# The field to use in a condition that filters the results of a query
|
4920
|
+
# for account quotas and usage data. Valid values are:
|
4691
4921
|
# @return [String]
|
4692
4922
|
#
|
4693
4923
|
# @!attribute [rw] values
|
@@ -4696,8 +4926,10 @@ module Aws::Macie2
|
|
4696
4926
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/UsageStatisticsFilter AWS API Documentation
|
4697
4927
|
#
|
4698
4928
|
class UsageStatisticsFilter < Struct.new(
|
4929
|
+
:comparator,
|
4699
4930
|
:key,
|
4700
4931
|
:values)
|
4932
|
+
SENSITIVE = []
|
4701
4933
|
include Aws::Structure
|
4702
4934
|
end
|
4703
4935
|
|
@@ -4708,13 +4940,13 @@ module Aws::Macie2
|
|
4708
4940
|
# data as a hash:
|
4709
4941
|
#
|
4710
4942
|
# {
|
4711
|
-
# key: "accountId", # accepts accountId, total
|
4943
|
+
# key: "accountId", # accepts accountId, total, serviceLimitValue, freeTrialStartDate
|
4712
4944
|
# order_by: "ASC", # accepts ASC, DESC
|
4713
4945
|
# }
|
4714
4946
|
#
|
4715
4947
|
# @!attribute [rw] key
|
4716
4948
|
# The field to use to sort the results of a query for account quotas
|
4717
|
-
# and usage data.
|
4949
|
+
# and usage data. Valid values are:
|
4718
4950
|
# @return [String]
|
4719
4951
|
#
|
4720
4952
|
# @!attribute [rw] order_by
|
@@ -4725,6 +4957,7 @@ module Aws::Macie2
|
|
4725
4957
|
class UsageStatisticsSortBy < Struct.new(
|
4726
4958
|
:key,
|
4727
4959
|
:order_by)
|
4960
|
+
SENSITIVE = []
|
4728
4961
|
include Aws::Structure
|
4729
4962
|
end
|
4730
4963
|
|
@@ -4749,35 +4982,52 @@ module Aws::Macie2
|
|
4749
4982
|
:currency,
|
4750
4983
|
:estimated_cost,
|
4751
4984
|
:type)
|
4985
|
+
SENSITIVE = []
|
4752
4986
|
include Aws::Structure
|
4753
4987
|
end
|
4754
4988
|
|
4989
|
+
# Provides information about the type and other characteristics of an
|
4990
|
+
# entity that performed an action on an affected resource.
|
4991
|
+
#
|
4755
4992
|
# @!attribute [rw] assumed_role
|
4756
|
-
#
|
4993
|
+
# Provides information about an identity that performed an action on
|
4994
|
+
# an affected resource by using temporary security credentials. The
|
4995
|
+
# credentials were obtained using the AssumeRole operation of the AWS
|
4996
|
+
# Security Token Service (AWS STS) API.
|
4757
4997
|
# @return [Types::AssumedRole]
|
4758
4998
|
#
|
4759
4999
|
# @!attribute [rw] aws_account
|
4760
|
-
#
|
5000
|
+
# Provides information about an AWS account and entity that performed
|
5001
|
+
# an action on an affected resource. The action was performed using
|
5002
|
+
# the credentials for an AWS account other than your own account.
|
4761
5003
|
# @return [Types::AwsAccount]
|
4762
5004
|
#
|
4763
5005
|
# @!attribute [rw] aws_service
|
4764
|
-
#
|
5006
|
+
# Provides information about an AWS service that performed an action
|
5007
|
+
# on an affected resource.
|
4765
5008
|
# @return [Types::AwsService]
|
4766
5009
|
#
|
4767
5010
|
# @!attribute [rw] federated_user
|
4768
|
-
#
|
5011
|
+
# Provides information about an identity that performed an action on
|
5012
|
+
# an affected resource by using temporary security credentials. The
|
5013
|
+
# credentials were obtained using the GetFederationToken operation of
|
5014
|
+
# the AWS Security Token Service (AWS STS) API.
|
4769
5015
|
# @return [Types::FederatedUser]
|
4770
5016
|
#
|
4771
5017
|
# @!attribute [rw] iam_user
|
4772
|
-
#
|
5018
|
+
# Provides information about an AWS Identity and Access Management
|
5019
|
+
# (IAM) user who performed an action on an affected resource.
|
4773
5020
|
# @return [Types::IamUser]
|
4774
5021
|
#
|
4775
5022
|
# @!attribute [rw] root
|
4776
|
-
#
|
5023
|
+
# Provides information about an AWS account and entity that performed
|
5024
|
+
# an action on an affected resource. The action was performed using
|
5025
|
+
# the credentials for your AWS account.
|
4777
5026
|
# @return [Types::UserIdentityRoot]
|
4778
5027
|
#
|
4779
5028
|
# @!attribute [rw] type
|
4780
|
-
#
|
5029
|
+
# The type of entity that performed the action on the affected
|
5030
|
+
# resource. Possible values are:
|
4781
5031
|
# @return [String]
|
4782
5032
|
#
|
4783
5033
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/UserIdentity AWS API Documentation
|
@@ -4790,10 +5040,13 @@ module Aws::Macie2
|
|
4790
5040
|
:iam_user,
|
4791
5041
|
:root,
|
4792
5042
|
:type)
|
5043
|
+
SENSITIVE = []
|
4793
5044
|
include Aws::Structure
|
4794
5045
|
end
|
4795
5046
|
|
4796
|
-
#
|
5047
|
+
# Provides information about an AWS account and entity that performed an
|
5048
|
+
# action on an affected resource. The action was performed using the
|
5049
|
+
# credentials for your AWS account.
|
4797
5050
|
#
|
4798
5051
|
# @!attribute [rw] account_id
|
4799
5052
|
# @return [String]
|
@@ -4810,6 +5063,7 @@ module Aws::Macie2
|
|
4810
5063
|
:account_id,
|
4811
5064
|
:arn,
|
4812
5065
|
:principal_id)
|
5066
|
+
SENSITIVE = []
|
4813
5067
|
include Aws::Structure
|
4814
5068
|
end
|
4815
5069
|
|
@@ -4823,9 +5077,13 @@ module Aws::Macie2
|
|
4823
5077
|
#
|
4824
5078
|
class ValidationException < Struct.new(
|
4825
5079
|
:message)
|
5080
|
+
SENSITIVE = []
|
4826
5081
|
include Aws::Structure
|
4827
5082
|
end
|
4828
5083
|
|
5084
|
+
# Specifies a weekly recurrence pattern for running a classification
|
5085
|
+
# job.
|
5086
|
+
#
|
4829
5087
|
# @note When making an API call, you may pass WeeklySchedule
|
4830
5088
|
# data as a hash:
|
4831
5089
|
#
|
@@ -4840,6 +5098,7 @@ module Aws::Macie2
|
|
4840
5098
|
#
|
4841
5099
|
class WeeklySchedule < Struct.new(
|
4842
5100
|
:day_of_week)
|
5101
|
+
SENSITIVE = []
|
4843
5102
|
include Aws::Structure
|
4844
5103
|
end
|
4845
5104
|
|