aws-sdk-guardduty 1.38.0 → 1.43.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e16a488eb4196364c76eb70fb1f1d123ab6deda470c4453e4dce1cac0f8c3f82
4
- data.tar.gz: bbf3e047f93c47a207135af6ea51c12eebcfe434f511235bd925fd2b38a784cb
3
+ metadata.gz: 28913946912ae19b507b145452083440b6e06468fcceb7bc64ab4607a9469d08
4
+ data.tar.gz: ee0cae222a868b74653f4d94b5837f47c3058db42f91cb128b42c340e4bec43f
5
5
  SHA512:
6
- metadata.gz: 34df1ac32e164b8e8b1b8c5aceae176c23f2640110a409a964de0602a9c9c9730a6f9b1a7191dfcd88b678b34c5d8e2f05ddddb43b69c8ffaef932b81e33e453
7
- data.tar.gz: f94617eb995e5d49c949003aa0d82e4dcee24243affb9d97a43806ccf3a4d6050c7604d5dfce9ba3f407cf0a30fb05b1e819d9bfb8cca98fa4b5f7268c6e4026
6
+ metadata.gz: 582ba9a8714800a74d92e74899c2c498b6411910c91114e643cb2b5418ae9bad59dfbf588b1986734dc3821c4967df35c81359429db77f2056cd5d38f9bde24f
7
+ data.tar.gz: bba71ea8d240e970c02eb19a1710815945cd93986af71ef6bc87df5a2bd13d4762a0c1f79970ef29d45a6aba98c6bb886a3a19465b44f7afbddf773dd0a74f1e
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-guardduty/customizations'
44
45
  #
45
46
  # See {Errors} for more information.
46
47
  #
47
- # @service
48
+ # @!group service
48
49
  module Aws::GuardDuty
49
50
 
50
- GEM_VERSION = '1.38.0'
51
+ GEM_VERSION = '1.43.0'
51
52
 
52
53
  end
@@ -85,13 +85,28 @@ module Aws::GuardDuty
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::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
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::GuardDuty
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 are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
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
@@ -312,18 +327,19 @@ module Aws::GuardDuty
312
327
 
313
328
  # @!group API Operations
314
329
 
315
- # Accepts the invitation to be monitored by a master GuardDuty account.
330
+ # Accepts the invitation to be monitored by a GuardDuty administrator
331
+ # account.
316
332
  #
317
333
  # @option params [required, String] :detector_id
318
334
  # The unique ID of the detector of the GuardDuty member account.
319
335
  #
320
336
  # @option params [required, String] :master_id
321
- # The account ID of the master GuardDuty account whose invitation
337
+ # The account ID of the GuardDuty administrator account whose invitation
322
338
  # you're accepting.
323
339
  #
324
340
  # @option params [required, String] :invitation_id
325
- # The value that is used to validate the master account to the member
326
- # account.
341
+ # The value that is used to validate the administrator account to the
342
+ # member account.
327
343
  #
328
344
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
329
345
  #
@@ -347,8 +363,8 @@ module Aws::GuardDuty
347
363
  # Archives GuardDuty findings that are specified by the list of finding
348
364
  # IDs.
349
365
  #
350
- # <note markdown="1"> Only the master account can archive findings. Member accounts don't
351
- # have permission to archive findings from their accounts.
366
+ # <note markdown="1"> Only the administrator account can archive findings. Member accounts
367
+ # don't have permission to archive findings from their accounts.
352
368
  #
353
369
  # </note>
354
370
  #
@@ -393,12 +409,10 @@ module Aws::GuardDuty
393
409
  # not need to pass this option.**
394
410
  #
395
411
  # @option params [String] :finding_publishing_frequency
396
- # An enum value that specifies how frequently updated findings are
397
- # exported.
412
+ # A value that specifies how frequently updated findings are exported.
398
413
  #
399
414
  # @option params [Types::DataSourceConfigurations] :data_sources
400
- # An object that describes which data sources will be enabled for the
401
- # detector.
415
+ # Describes which data sources will be enabled for the detector.
402
416
  #
403
417
  # @option params [Hash<String,String>] :tags
404
418
  # The tags to be added to a new detector resource.
@@ -439,11 +453,13 @@ module Aws::GuardDuty
439
453
  # Creates a filter using the specified finding criteria.
440
454
  #
441
455
  # @option params [required, String] :detector_id
442
- # The unique ID of the detector of the GuardDuty account that you want
443
- # to create a filter for.
456
+ # The ID of the detector belonging to the GuardDuty account that you
457
+ # want to create a filter for.
444
458
  #
445
459
  # @option params [required, String] :name
446
- # The name of the filter.
460
+ # The name of the filter. Minimum length of 3. Maximum length of 64.
461
+ # Valid characters include alphanumeric characters, dot (.), underscore
462
+ # (\_), and dash (-). Spaces are not allowed.
447
463
  #
448
464
  # @option params [String] :description
449
465
  # The description of the filter.
@@ -515,6 +531,8 @@ module Aws::GuardDuty
515
531
  #
516
532
  # * service.action.awsApiCallAction.callerType
517
533
  #
534
+ # * service.action.awsApiCallAction.errorCode
535
+ #
518
536
  # * service.action.awsApiCallAction.remoteIpDetails.city.cityName
519
537
  #
520
538
  # * service.action.awsApiCallAction.remoteIpDetails.country.countryName
@@ -634,8 +652,8 @@ module Aws::GuardDuty
634
652
  # user interface. An IPSet is a list of IP addresses that are trusted
635
653
  # for secure communication with AWS infrastructure and applications.
636
654
  # GuardDuty doesn't generate findings for IP addresses that are
637
- # included in IPSets. Only users from the master account can use this
638
- # operation.
655
+ # included in IPSets. Only users from the administrator account can use
656
+ # this operation.
639
657
  #
640
658
  # @option params [required, String] :detector_id
641
659
  # The unique ID of the detector of the GuardDuty account that you want
@@ -705,8 +723,9 @@ module Aws::GuardDuty
705
723
  #
706
724
  # When using `Create Members` as an organizations delegated
707
725
  # administrator this action will enable GuardDuty in the added member
708
- # accounts, with the exception of the organization master account, which
709
- # must enable GuardDuty prior to being added as a member.
726
+ # accounts, with the exception of the organization delegated
727
+ # administrator account, which must enable GuardDuty prior to being
728
+ # added as a member.
710
729
  #
711
730
  # If you are adding accounts by invitation use this action after
712
731
  # GuardDuty has been enabled in potential member accounts and before
@@ -722,7 +741,7 @@ module Aws::GuardDuty
722
741
  #
723
742
  # @option params [required, Array<Types::AccountDetail>] :account_details
724
743
  # A list of account ID and email address pairs of the accounts that you
725
- # want to associate with the master GuardDuty account.
744
+ # want to associate with the GuardDuty administrator account.
726
745
  #
727
746
  # @return [Types::CreateMembersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
728
747
  #
@@ -835,7 +854,7 @@ module Aws::GuardDuty
835
854
 
836
855
  # Creates a new ThreatIntelSet. ThreatIntelSets consist of known
837
856
  # malicious IP addresses. GuardDuty generates findings based on
838
- # ThreatIntelSets. Only users of the master account can use this
857
+ # ThreatIntelSets. Only users of the administrator account can use this
839
858
  # operation.
840
859
  #
841
860
  # @option params [required, String] :detector_id
@@ -1038,8 +1057,8 @@ module Aws::GuardDuty
1038
1057
  req.send_request(options)
1039
1058
  end
1040
1059
 
1041
- # Deletes GuardDuty member accounts (to the current GuardDuty master
1042
- # account) specified by the account IDs.
1060
+ # Deletes GuardDuty member accounts (to the current GuardDuty
1061
+ # administrator account) specified by the account IDs.
1043
1062
  #
1044
1063
  # @option params [required, String] :detector_id
1045
1064
  # The unique ID of the detector of the GuardDuty account whose members
@@ -1230,8 +1249,8 @@ module Aws::GuardDuty
1230
1249
  req.send_request(options)
1231
1250
  end
1232
1251
 
1233
- # Disassociates the current GuardDuty member account from its master
1234
- # account.
1252
+ # Disassociates the current GuardDuty member account from its
1253
+ # administrator account.
1235
1254
  #
1236
1255
  # @option params [required, String] :detector_id
1237
1256
  # The unique ID of the detector of the GuardDuty member account.
@@ -1254,15 +1273,15 @@ module Aws::GuardDuty
1254
1273
  end
1255
1274
 
1256
1275
  # Disassociates GuardDuty member accounts (to the current GuardDuty
1257
- # master account) specified by the account IDs.
1276
+ # administrator account) specified by the account IDs.
1258
1277
  #
1259
1278
  # @option params [required, String] :detector_id
1260
1279
  # The unique ID of the detector of the GuardDuty account whose members
1261
- # you want to disassociate from the master account.
1280
+ # you want to disassociate from the administrator account.
1262
1281
  #
1263
1282
  # @option params [required, Array<String>] :account_ids
1264
1283
  # A list of account IDs of the GuardDuty member accounts that you want
1265
- # to disassociate from the master account.
1284
+ # to disassociate from the administrator account.
1266
1285
  #
1267
1286
  # @return [Types::DisassociateMembersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1268
1287
  #
@@ -1522,6 +1541,7 @@ module Aws::GuardDuty
1522
1541
  # resp.findings[0].service.action.aws_api_call_action.api #=> String
1523
1542
  # resp.findings[0].service.action.aws_api_call_action.caller_type #=> String
1524
1543
  # resp.findings[0].service.action.aws_api_call_action.domain_details.domain #=> String
1544
+ # resp.findings[0].service.action.aws_api_call_action.error_code #=> String
1525
1545
  # resp.findings[0].service.action.aws_api_call_action.remote_ip_details.city.city_name #=> String
1526
1546
  # resp.findings[0].service.action.aws_api_call_action.remote_ip_details.country.country_code #=> String
1527
1547
  # resp.findings[0].service.action.aws_api_call_action.remote_ip_details.country.country_name #=> String
@@ -1711,8 +1731,8 @@ module Aws::GuardDuty
1711
1731
  req.send_request(options)
1712
1732
  end
1713
1733
 
1714
- # Provides the details for the GuardDuty master account associated with
1715
- # the current GuardDuty member account.
1734
+ # Provides the details for the GuardDuty administrator account
1735
+ # associated with the current GuardDuty member account.
1716
1736
  #
1717
1737
  # @option params [required, String] :detector_id
1718
1738
  # The unique ID of the detector of the GuardDuty member account.
@@ -1747,7 +1767,7 @@ module Aws::GuardDuty
1747
1767
  # detector.
1748
1768
  #
1749
1769
  # @option params [required, String] :detector_id
1750
- # The detector ID for the master account.
1770
+ # The detector ID for the administrator account.
1751
1771
  #
1752
1772
  # @option params [required, Array<String>] :account_ids
1753
1773
  # The account ID of the member account.
@@ -1785,8 +1805,8 @@ module Aws::GuardDuty
1785
1805
  req.send_request(options)
1786
1806
  end
1787
1807
 
1788
- # Retrieves GuardDuty member accounts (to the current GuardDuty master
1789
- # account) specified by the account IDs.
1808
+ # Retrieves GuardDuty member accounts (of the current GuardDuty
1809
+ # administrator account) specified by the account IDs.
1790
1810
  #
1791
1811
  # @option params [required, String] :detector_id
1792
1812
  # The unique ID of the detector of the GuardDuty account whose members
@@ -1962,8 +1982,8 @@ module Aws::GuardDuty
1962
1982
 
1963
1983
  # Invites other AWS accounts (created as members of the current AWS
1964
1984
  # account by CreateMembers) to enable GuardDuty, and allow the current
1965
- # AWS account to view and manage these accounts' GuardDuty findings on
1966
- # their behalf as the master account.
1985
+ # AWS account to view and manage these accounts' findings on their
1986
+ # behalf as the GuardDuty administrator account.
1967
1987
  #
1968
1988
  # @option params [required, String] :detector_id
1969
1989
  # The unique ID of the detector of the GuardDuty account that you want
@@ -2285,7 +2305,7 @@ module Aws::GuardDuty
2285
2305
 
2286
2306
  # Lists the IPSets of the GuardDuty service specified by the detector
2287
2307
  # ID. If you use this operation from a member account, the IPSets
2288
- # returned are the IPSets from the associated master account.
2308
+ # returned are the IPSets from the associated administrator account.
2289
2309
  #
2290
2310
  # @option params [required, String] :detector_id
2291
2311
  # The unique ID of the detector that the IPSet is associated with.
@@ -2380,7 +2400,7 @@ module Aws::GuardDuty
2380
2400
  end
2381
2401
 
2382
2402
  # Lists details about all member accounts for the current GuardDuty
2383
- # master account.
2403
+ # administrator account.
2384
2404
  #
2385
2405
  # @option params [required, String] :detector_id
2386
2406
  # The unique ID of the detector the member is associated with.
@@ -2563,7 +2583,8 @@ module Aws::GuardDuty
2563
2583
 
2564
2584
  # Lists the ThreatIntelSets of the GuardDuty service specified by the
2565
2585
  # detector ID. If you use this operation from a member account, the
2566
- # ThreatIntelSets associated with the master account are returned.
2586
+ # ThreatIntelSets associated with the administrator account are
2587
+ # returned.
2567
2588
  #
2568
2589
  # @option params [required, String] :detector_id
2569
2590
  # The unique ID of the detector that the threatIntelSet is associated
@@ -2616,7 +2637,7 @@ module Aws::GuardDuty
2616
2637
  # monitoring with the `StopMonitoringMembers` operation.
2617
2638
  #
2618
2639
  # @option params [required, String] :detector_id
2619
- # The unique ID of the detector of the GuardDuty master account
2640
+ # The unique ID of the detector of the GuardDuty administrator account
2620
2641
  # associated with the member accounts to monitor.
2621
2642
  #
2622
2643
  # @option params [required, Array<String>] :account_ids
@@ -2654,8 +2675,8 @@ module Aws::GuardDuty
2654
2675
  # accounts.
2655
2676
  #
2656
2677
  # @option params [required, String] :detector_id
2657
- # The unique ID of the detector associated with the GuardDuty master
2658
- # account that is monitoring member accounts.
2678
+ # The unique ID of the detector associated with the GuardDuty
2679
+ # administrator account that is monitoring member accounts.
2659
2680
  #
2660
2681
  # @option params [required, Array<String>] :account_ids
2661
2682
  # A list of account IDs for the member accounts to stop monitoring.
@@ -2780,7 +2801,7 @@ module Aws::GuardDuty
2780
2801
  # such as to CloudWatch Events.
2781
2802
  #
2782
2803
  # @option params [Types::DataSourceConfigurations] :data_sources
2783
- # An object that describes which data sources will be updated.
2804
+ # Describes which data sources will be updated.
2784
2805
  #
2785
2806
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2786
2807
  #
@@ -2955,13 +2976,13 @@ module Aws::GuardDuty
2955
2976
  # Contains information on member accounts to be updated.
2956
2977
  #
2957
2978
  # @option params [required, String] :detector_id
2958
- # The detector ID of the master account.
2979
+ # The detector ID of the administrator account.
2959
2980
  #
2960
2981
  # @option params [required, Array<String>] :account_ids
2961
2982
  # A list of member account IDs to be updated.
2962
2983
  #
2963
2984
  # @option params [Types::DataSourceConfigurations] :data_sources
2964
- # An object describes which data sources will be updated.
2985
+ # Describes which data sources will be updated.
2965
2986
  #
2966
2987
  # @return [Types::UpdateMemberDetectorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2967
2988
  #
@@ -3004,7 +3025,7 @@ module Aws::GuardDuty
3004
3025
  # organization.
3005
3026
  #
3006
3027
  # @option params [Types::OrganizationDataSourceConfigurations] :data_sources
3007
- # An object describes which data sources will be updated.
3028
+ # Describes which data sources will be updated.
3008
3029
  #
3009
3030
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3010
3031
  #
@@ -3080,8 +3101,7 @@ module Aws::GuardDuty
3080
3101
  # update.
3081
3102
  #
3082
3103
  # @option params [String] :location
3083
- # The updated URI of the file that contains the ThreateIntelSet. For
3084
- # example: https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key.
3104
+ # The updated URI of the file that contains the ThreateIntelSet.
3085
3105
  #
3086
3106
  # @option params [Boolean] :activate
3087
3107
  # The updated Boolean value that specifies whether the ThreateIntelSet
@@ -3121,7 +3141,7 @@ module Aws::GuardDuty
3121
3141
  params: params,
3122
3142
  config: config)
3123
3143
  context[:gem_name] = 'aws-sdk-guardduty'
3124
- context[:gem_version] = '1.38.0'
3144
+ context[:gem_version] = '1.43.0'
3125
3145
  Seahorse::Client::Request.new(handlers, context)
3126
3146
  end
3127
3147
 
@@ -326,6 +326,7 @@ module Aws::GuardDuty
326
326
  AwsApiCallAction.add_member(:api, Shapes::ShapeRef.new(shape: String, location_name: "api"))
327
327
  AwsApiCallAction.add_member(:caller_type, Shapes::ShapeRef.new(shape: String, location_name: "callerType"))
328
328
  AwsApiCallAction.add_member(:domain_details, Shapes::ShapeRef.new(shape: DomainDetails, location_name: "domainDetails"))
329
+ AwsApiCallAction.add_member(:error_code, Shapes::ShapeRef.new(shape: String, location_name: "errorCode"))
329
330
  AwsApiCallAction.add_member(:remote_ip_details, Shapes::ShapeRef.new(shape: RemoteIpDetails, location_name: "remoteIpDetails"))
330
331
  AwsApiCallAction.add_member(:service_name, Shapes::ShapeRef.new(shape: String, location_name: "serviceName"))
331
332
  AwsApiCallAction.struct_class = Types::AwsApiCallAction
@@ -24,13 +24,13 @@ module Aws::GuardDuty
24
24
  # @return [String]
25
25
  #
26
26
  # @!attribute [rw] master_id
27
- # The account ID of the master GuardDuty account whose invitation
28
- # you're accepting.
27
+ # The account ID of the GuardDuty administrator account whose
28
+ # invitation you're accepting.
29
29
  # @return [String]
30
30
  #
31
31
  # @!attribute [rw] invitation_id
32
- # The value that is used to validate the master account to the member
33
- # account.
32
+ # The value that is used to validate the administrator account to the
33
+ # member account.
34
34
  # @return [String]
35
35
  #
36
36
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/AcceptInvitationRequest AWS API Documentation
@@ -228,7 +228,7 @@ module Aws::GuardDuty
228
228
  #
229
229
  class ArchiveFindingsResponse < Aws::EmptyStructure; end
230
230
 
231
- # Contains information about the API operation.
231
+ # Contains information about the API action.
232
232
  #
233
233
  # @!attribute [rw] api
234
234
  # The AWS API name.
@@ -242,8 +242,13 @@ module Aws::GuardDuty
242
242
  # The domain information for the AWS API call.
243
243
  # @return [Types::DomainDetails]
244
244
  #
245
+ # @!attribute [rw] error_code
246
+ # The error code of the failed AWS API action.
247
+ # @return [String]
248
+ #
245
249
  # @!attribute [rw] remote_ip_details
246
- # The remote IP information of the connection.
250
+ # The remote IP information of the connection that initiated the AWS
251
+ # API call.
247
252
  # @return [Types::RemoteIpDetails]
248
253
  #
249
254
  # @!attribute [rw] service_name
@@ -256,6 +261,7 @@ module Aws::GuardDuty
256
261
  :api,
257
262
  :caller_type,
258
263
  :domain_details,
264
+ :error_code,
259
265
  :remote_ip_details,
260
266
  :service_name)
261
267
  SENSITIVE = []
@@ -544,13 +550,11 @@ module Aws::GuardDuty
544
550
  # @return [String]
545
551
  #
546
552
  # @!attribute [rw] finding_publishing_frequency
547
- # An enum value that specifies how frequently updated findings are
548
- # exported.
553
+ # A value that specifies how frequently updated findings are exported.
549
554
  # @return [String]
550
555
  #
551
556
  # @!attribute [rw] data_sources
552
- # An object that describes which data sources will be enabled for the
553
- # detector.
557
+ # Describes which data sources will be enabled for the detector.
554
558
  # @return [Types::DataSourceConfigurations]
555
559
  #
556
560
  # @!attribute [rw] tags
@@ -615,12 +619,14 @@ module Aws::GuardDuty
615
619
  # }
616
620
  #
617
621
  # @!attribute [rw] detector_id
618
- # The unique ID of the detector of the GuardDuty account that you want
619
- # to create a filter for.
622
+ # The ID of the detector belonging to the GuardDuty account that you
623
+ # want to create a filter for.
620
624
  # @return [String]
621
625
  #
622
626
  # @!attribute [rw] name
623
- # The name of the filter.
627
+ # The name of the filter. Minimum length of 3. Maximum length of 64.
628
+ # Valid characters include alphanumeric characters, dot (.),
629
+ # underscore (\_), and dash (-). Spaces are not allowed.
624
630
  # @return [String]
625
631
  #
626
632
  # @!attribute [rw] description
@@ -696,6 +702,8 @@ module Aws::GuardDuty
696
702
  #
697
703
  # * service.action.awsApiCallAction.callerType
698
704
  #
705
+ # * service.action.awsApiCallAction.errorCode
706
+ #
699
707
  # * service.action.awsApiCallAction.remoteIpDetails.city.cityName
700
708
  #
701
709
  # * service.action.awsApiCallAction.remoteIpDetails.country.countryName
@@ -890,7 +898,7 @@ module Aws::GuardDuty
890
898
  #
891
899
  # @!attribute [rw] account_details
892
900
  # A list of account ID and email address pairs of the accounts that
893
- # you want to associate with the master GuardDuty account.
901
+ # you want to associate with the GuardDuty administrator account.
894
902
  # @return [Array<Types::AccountDetail>]
895
903
  #
896
904
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/CreateMembersRequest AWS API Documentation
@@ -1188,7 +1196,7 @@ module Aws::GuardDuty
1188
1196
  #
1189
1197
  #
1190
1198
  #
1191
- # [1]: https://docs.aws.amazon.com/AmazonS3/atest/dev/serv-side-encryption.html
1199
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/serv-side-encryption.html
1192
1200
  #
1193
1201
  # @!attribute [rw] encryption_type
1194
1202
  # The type of encryption used for objects within the S3 bucket.
@@ -1448,12 +1456,13 @@ module Aws::GuardDuty
1448
1456
  #
1449
1457
  # @!attribute [rw] member_account_limit_reached
1450
1458
  # Indicates whether the maximum number of allowed member accounts are
1451
- # already associated with the delegated administrator master account.
1459
+ # already associated with the delegated administrator account for your
1460
+ # organization.
1452
1461
  # @return [Boolean]
1453
1462
  #
1454
1463
  # @!attribute [rw] data_sources
1455
- # An object that describes which data sources are enabled
1456
- # automatically for member accounts.
1464
+ # Describes which data sources are enabled automatically for member
1465
+ # accounts.
1457
1466
  # @return [Types::OrganizationDataSourceConfigurationsResult]
1458
1467
  #
1459
1468
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/DescribeOrganizationConfigurationResponse AWS API Documentation
@@ -1639,12 +1648,12 @@ module Aws::GuardDuty
1639
1648
  #
1640
1649
  # @!attribute [rw] detector_id
1641
1650
  # The unique ID of the detector of the GuardDuty account whose members
1642
- # you want to disassociate from the master account.
1651
+ # you want to disassociate from the administrator account.
1643
1652
  # @return [String]
1644
1653
  #
1645
1654
  # @!attribute [rw] account_ids
1646
1655
  # A list of account IDs of the GuardDuty member accounts that you want
1647
- # to disassociate from the master account.
1656
+ # to disassociate from the administrator account.
1648
1657
  # @return [Array<String>]
1649
1658
  #
1650
1659
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/DisassociateMembersRequest AWS API Documentation
@@ -1947,8 +1956,7 @@ module Aws::GuardDuty
1947
1956
  # @return [String]
1948
1957
  #
1949
1958
  # @!attribute [rw] data_sources
1950
- # An object that describes which data sources are enabled for the
1951
- # detector.
1959
+ # Describes which data sources are enabled for the detector.
1952
1960
  # @return [Types::DataSourceConfigurationsResult]
1953
1961
  #
1954
1962
  # @!attribute [rw] tags
@@ -2239,7 +2247,7 @@ module Aws::GuardDuty
2239
2247
  end
2240
2248
 
2241
2249
  # @!attribute [rw] master
2242
- # The master account details.
2250
+ # The administrator account details.
2243
2251
  # @return [Types::Master]
2244
2252
  #
2245
2253
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/GetMasterAccountResponse AWS API Documentation
@@ -2259,7 +2267,7 @@ module Aws::GuardDuty
2259
2267
  # }
2260
2268
  #
2261
2269
  # @!attribute [rw] detector_id
2262
- # The detector ID for the master account.
2270
+ # The detector ID for the administrator account.
2263
2271
  # @return [String]
2264
2272
  #
2265
2273
  # @!attribute [rw] account_ids
@@ -3172,8 +3180,7 @@ module Aws::GuardDuty
3172
3180
  end
3173
3181
 
3174
3182
  # @!attribute [rw] admin_accounts
3175
- # An AdminAccounts object that includes a list of accounts configured
3176
- # as GuardDuty delegated administrators.
3183
+ # A list of accounts configured as GuardDuty delegated administrators.
3177
3184
  # @return [Array<Types::AdminAccount>]
3178
3185
  #
3179
3186
  # @!attribute [rw] next_token
@@ -3367,18 +3374,19 @@ module Aws::GuardDuty
3367
3374
  include Aws::Structure
3368
3375
  end
3369
3376
 
3370
- # Contains information about the master account and invitation.
3377
+ # Contains information about the administrator account and invitation.
3371
3378
  #
3372
3379
  # @!attribute [rw] account_id
3373
- # The ID of the account used as the master account.
3380
+ # The ID of the account used as the administrator account.
3374
3381
  # @return [String]
3375
3382
  #
3376
3383
  # @!attribute [rw] invitation_id
3377
- # The value used to validate the master account to the member account.
3384
+ # The value used to validate the administrator account to the member
3385
+ # account.
3378
3386
  # @return [String]
3379
3387
  #
3380
3388
  # @!attribute [rw] relationship_status
3381
- # The status of the relationship between the master and member
3389
+ # The status of the relationship between the administrator and member
3382
3390
  # accounts.
3383
3391
  # @return [String]
3384
3392
  #
@@ -3408,7 +3416,7 @@ module Aws::GuardDuty
3408
3416
  # @return [String]
3409
3417
  #
3410
3418
  # @!attribute [rw] master_id
3411
- # The master account ID.
3419
+ # The administrator account ID.
3412
3420
  # @return [String]
3413
3421
  #
3414
3422
  # @!attribute [rw] email
@@ -3416,7 +3424,8 @@ module Aws::GuardDuty
3416
3424
  # @return [String]
3417
3425
  #
3418
3426
  # @!attribute [rw] relationship_status
3419
- # The status of the relationship between the member and the master.
3427
+ # The status of the relationship between the member and the
3428
+ # administrator.
3420
3429
  # @return [String]
3421
3430
  #
3422
3431
  # @!attribute [rw] invited_at
@@ -4113,7 +4122,7 @@ module Aws::GuardDuty
4113
4122
  # }
4114
4123
  #
4115
4124
  # @!attribute [rw] detector_id
4116
- # The unique ID of the detector of the GuardDuty master account
4125
+ # The unique ID of the detector of the GuardDuty administrator account
4117
4126
  # associated with the member accounts to monitor.
4118
4127
  # @return [String]
4119
4128
  #
@@ -4153,8 +4162,8 @@ module Aws::GuardDuty
4153
4162
  # }
4154
4163
  #
4155
4164
  # @!attribute [rw] detector_id
4156
- # The unique ID of the detector associated with the GuardDuty master
4157
- # account that is monitoring member accounts.
4165
+ # The unique ID of the detector associated with the GuardDuty
4166
+ # administrator account that is monitoring member accounts.
4158
4167
  # @return [String]
4159
4168
  #
4160
4169
  # @!attribute [rw] account_ids
@@ -4381,7 +4390,7 @@ module Aws::GuardDuty
4381
4390
  # @return [String]
4382
4391
  #
4383
4392
  # @!attribute [rw] data_sources
4384
- # An object that describes which data sources will be updated.
4393
+ # Describes which data sources will be updated.
4385
4394
  # @return [Types::DataSourceConfigurations]
4386
4395
  #
4387
4396
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/UpdateDetectorRequest AWS API Documentation
@@ -4589,7 +4598,7 @@ module Aws::GuardDuty
4589
4598
  # }
4590
4599
  #
4591
4600
  # @!attribute [rw] detector_id
4592
- # The detector ID of the master account.
4601
+ # The detector ID of the administrator account.
4593
4602
  # @return [String]
4594
4603
  #
4595
4604
  # @!attribute [rw] account_ids
@@ -4597,7 +4606,7 @@ module Aws::GuardDuty
4597
4606
  # @return [Array<String>]
4598
4607
  #
4599
4608
  # @!attribute [rw] data_sources
4600
- # An object describes which data sources will be updated.
4609
+ # Describes which data sources will be updated.
4601
4610
  # @return [Types::DataSourceConfigurations]
4602
4611
  #
4603
4612
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/UpdateMemberDetectorsRequest AWS API Documentation
@@ -4646,7 +4655,7 @@ module Aws::GuardDuty
4646
4655
  # @return [Boolean]
4647
4656
  #
4648
4657
  # @!attribute [rw] data_sources
4649
- # An object describes which data sources will be updated.
4658
+ # Describes which data sources will be updated.
4650
4659
  # @return [Types::OrganizationDataSourceConfigurations]
4651
4660
  #
4652
4661
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/UpdateOrganizationConfigurationRequest AWS API Documentation
@@ -4730,8 +4739,7 @@ module Aws::GuardDuty
4730
4739
  # @return [String]
4731
4740
  #
4732
4741
  # @!attribute [rw] location
4733
- # The updated URI of the file that contains the ThreateIntelSet. For
4734
- # example: https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key.
4742
+ # The updated URI of the file that contains the ThreateIntelSet.
4735
4743
  # @return [String]
4736
4744
  #
4737
4745
  # @!attribute [rw] activate
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-guardduty
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.38.0
4
+ version: 1.43.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-30 00:00:00.000000000 Z
11
+ date: 2020-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.99.0
22
+ version: 3.109.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.99.0
32
+ version: 3.109.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement