aws-sdk-detective 1.22.0 → 1.26.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -32,8 +32,8 @@ module Aws::Detective
32
32
  include Aws::Structure
33
33
  end
34
34
 
35
- # An AWS account that is the administrator account of or a member of a
36
- # behavior graph.
35
+ # An Amazon Web Services account that is the administrator account of or
36
+ # a member of a behavior graph.
37
37
  #
38
38
  # @note When making an API call, you may pass Account
39
39
  # data as a hash:
@@ -44,11 +44,12 @@ module Aws::Detective
44
44
  # }
45
45
  #
46
46
  # @!attribute [rw] account_id
47
- # The account identifier of the AWS account.
47
+ # The account identifier of the Amazon Web Services account.
48
48
  # @return [String]
49
49
  #
50
50
  # @!attribute [rw] email_address
51
- # The AWS account root user email address for the AWS account.
51
+ # The Amazon Web Services account root user email address for the
52
+ # Amazon Web Services account.
52
53
  # @return [String]
53
54
  #
54
55
  # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/Account AWS API Documentation
@@ -60,6 +61,34 @@ module Aws::Detective
60
61
  include Aws::Structure
61
62
  end
62
63
 
64
+ # Information about the Detective administrator account for an
65
+ # organization.
66
+ #
67
+ # @!attribute [rw] account_id
68
+ # The Amazon Web Services account identifier of the Detective
69
+ # administrator account for the organization.
70
+ # @return [String]
71
+ #
72
+ # @!attribute [rw] graph_arn
73
+ # The ARN of the organization behavior graph.
74
+ # @return [String]
75
+ #
76
+ # @!attribute [rw] delegation_time
77
+ # The date and time when the Detective administrator account was
78
+ # enabled. The value is an ISO8601 formatted string. For example,
79
+ # `2021-08-18T16:35:56.284Z`.
80
+ # @return [Time]
81
+ #
82
+ # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/Administrator AWS API Documentation
83
+ #
84
+ class Administrator < Struct.new(
85
+ :account_id,
86
+ :graph_arn,
87
+ :delegation_time)
88
+ SENSITIVE = []
89
+ include Aws::Structure
90
+ end
91
+
63
92
  # The request attempted an invalid action.
64
93
  #
65
94
  # @!attribute [rw] message
@@ -125,8 +154,7 @@ module Aws::Detective
125
154
  # }
126
155
  #
127
156
  # @!attribute [rw] graph_arn
128
- # The ARN of the behavior graph to invite the member accounts to
129
- # contribute their data to.
157
+ # The ARN of the behavior graph.
130
158
  # @return [String]
131
159
  #
132
160
  # @!attribute [rw] message
@@ -135,16 +163,21 @@ module Aws::Detective
135
163
  # @return [String]
136
164
  #
137
165
  # @!attribute [rw] disable_email_notification
138
- # if set to `true`, then the member accounts do not receive email
139
- # notifications. By default, this is set to `false`, and the member
166
+ # if set to `true`, then the invited accounts do not receive email
167
+ # notifications. By default, this is set to `false`, and the invited
140
168
  # accounts receive email notifications.
169
+ #
170
+ # Organization accounts in the organization behavior graph do not
171
+ # receive email notifications.
141
172
  # @return [Boolean]
142
173
  #
143
174
  # @!attribute [rw] accounts
144
- # The list of AWS accounts to invite to become member accounts in the
145
- # behavior graph. You can invite up to 50 accounts at a time. For each
146
- # invited account, the account list contains the account identifier
147
- # and the AWS account root user email address.
175
+ # The list of Amazon Web Services accounts to invite or to enable. You
176
+ # can invite or enable up to 50 accounts at a time. For each invited
177
+ # account, the account list contains the account identifier and the
178
+ # Amazon Web Services account root user email address. For
179
+ # organization accounts in the organization behavior graph, the email
180
+ # address is not required.
148
181
  # @return [Array<Types::Account>]
149
182
  #
150
183
  # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/CreateMembersRequest AWS API Documentation
@@ -159,17 +192,18 @@ module Aws::Detective
159
192
  end
160
193
 
161
194
  # @!attribute [rw] members
162
- # The set of member account invitation requests that Detective was
163
- # able to process. This includes accounts that are being verified,
164
- # that failed verification, and that passed verification and are being
165
- # sent an invitation.
195
+ # The set of member account invitation or enablement requests that
196
+ # Detective was able to process. This includes accounts that are being
197
+ # verified, that failed verification, and that passed verification and
198
+ # are being sent an invitation or are being enabled.
166
199
  # @return [Array<Types::MemberDetail>]
167
200
  #
168
201
  # @!attribute [rw] unprocessed_accounts
169
202
  # The list of accounts for which Detective was unable to process the
170
- # invitation request. For each account, the list provides the reason
171
- # why the request could not be processed. The list includes accounts
172
- # that are already member accounts in the behavior graph.
203
+ # invitation or enablement request. For each account, the list
204
+ # provides the reason why the request could not be processed. The list
205
+ # includes accounts that are already member accounts in the behavior
206
+ # graph.
173
207
  # @return [Array<Types::UnprocessedAccount>]
174
208
  #
175
209
  # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/CreateMembersResponse AWS API Documentation
@@ -209,13 +243,13 @@ module Aws::Detective
209
243
  # }
210
244
  #
211
245
  # @!attribute [rw] graph_arn
212
- # The ARN of the behavior graph to delete members from.
246
+ # The ARN of the behavior graph to remove members from.
213
247
  # @return [String]
214
248
  #
215
249
  # @!attribute [rw] account_ids
216
- # The list of AWS account identifiers for the member accounts to
217
- # delete from the behavior graph. You can delete up to 50 member
218
- # accounts at a time.
250
+ # The list of Amazon Web Services account identifiers for the member
251
+ # accounts to remove from the behavior graph. You can remove up to 50
252
+ # member accounts at a time.
219
253
  # @return [Array<String>]
220
254
  #
221
255
  # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/DeleteMembersRequest AWS API Documentation
@@ -228,12 +262,13 @@ module Aws::Detective
228
262
  end
229
263
 
230
264
  # @!attribute [rw] account_ids
231
- # The list of AWS account identifiers for the member accounts that
232
- # Detective successfully deleted from the behavior graph.
265
+ # The list of Amazon Web Services account identifiers for the member
266
+ # accounts that Detective successfully removed from the behavior
267
+ # graph.
233
268
  # @return [Array<String>]
234
269
  #
235
270
  # @!attribute [rw] unprocessed_accounts
236
- # The list of member accounts that Detective was not able to delete
271
+ # The list of member accounts that Detective was not able to remove
237
272
  # from the behavior graph. For each member account, provides the
238
273
  # reason that the deletion could not be processed.
239
274
  # @return [Array<Types::UnprocessedAccount>]
@@ -247,6 +282,38 @@ module Aws::Detective
247
282
  include Aws::Structure
248
283
  end
249
284
 
285
+ # @note When making an API call, you may pass DescribeOrganizationConfigurationRequest
286
+ # data as a hash:
287
+ #
288
+ # {
289
+ # graph_arn: "GraphArn", # required
290
+ # }
291
+ #
292
+ # @!attribute [rw] graph_arn
293
+ # The ARN of the organization behavior graph.
294
+ # @return [String]
295
+ #
296
+ # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/DescribeOrganizationConfigurationRequest AWS API Documentation
297
+ #
298
+ class DescribeOrganizationConfigurationRequest < Struct.new(
299
+ :graph_arn)
300
+ SENSITIVE = []
301
+ include Aws::Structure
302
+ end
303
+
304
+ # @!attribute [rw] auto_enable
305
+ # Indicates whether to automatically enable new organization accounts
306
+ # as member accounts in the organization behavior graph.
307
+ # @return [Boolean]
308
+ #
309
+ # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/DescribeOrganizationConfigurationResponse AWS API Documentation
310
+ #
311
+ class DescribeOrganizationConfigurationResponse < Struct.new(
312
+ :auto_enable)
313
+ SENSITIVE = []
314
+ include Aws::Structure
315
+ end
316
+
250
317
  # @note When making an API call, you may pass DisassociateMembershipRequest
251
318
  # data as a hash:
252
319
  #
@@ -269,6 +336,27 @@ module Aws::Detective
269
336
  include Aws::Structure
270
337
  end
271
338
 
339
+ # @note When making an API call, you may pass EnableOrganizationAdminAccountRequest
340
+ # data as a hash:
341
+ #
342
+ # {
343
+ # account_id: "AccountId", # required
344
+ # }
345
+ #
346
+ # @!attribute [rw] account_id
347
+ # The Amazon Web Services account identifier of the account to
348
+ # designate as the Detective administrator account for the
349
+ # organization.
350
+ # @return [String]
351
+ #
352
+ # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/EnableOrganizationAdminAccountRequest AWS API Documentation
353
+ #
354
+ class EnableOrganizationAdminAccountRequest < Struct.new(
355
+ :account_id)
356
+ SENSITIVE = []
357
+ include Aws::Structure
358
+ end
359
+
272
360
  # @note When making an API call, you may pass GetMembersRequest
273
361
  # data as a hash:
274
362
  #
@@ -283,9 +371,9 @@ module Aws::Detective
283
371
  # @return [String]
284
372
  #
285
373
  # @!attribute [rw] account_ids
286
- # The list of AWS account identifiers for the member account for which
287
- # to return member details. You can request details for up to 50
288
- # member accounts at a time.
374
+ # The list of Amazon Web Services account identifiers for the member
375
+ # account for which to return member details. You can request details
376
+ # for up to 50 member accounts at a time.
289
377
  #
290
378
  # You cannot use `GetMembers` to retrieve information about member
291
379
  # accounts that were removed from the behavior graph.
@@ -330,7 +418,8 @@ module Aws::Detective
330
418
  #
331
419
  # @!attribute [rw] created_time
332
420
  # The date and time that the behavior graph was created. The value is
333
- # in milliseconds since the epoch.
421
+ # an ISO8601 formatted string. For example,
422
+ # `2021-08-18T16:35:56.284Z`.
334
423
  # @return [Time]
335
424
  #
336
425
  # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/Graph AWS API Documentation
@@ -493,16 +582,19 @@ module Aws::Detective
493
582
  # @!attribute [rw] member_details
494
583
  # The list of member accounts in the behavior graph.
495
584
  #
496
- # The results include member accounts that did not pass verification
497
- # and member accounts that have not yet accepted the invitation to the
498
- # behavior graph. The results do not include member accounts that were
499
- # removed from the behavior graph.
585
+ # For invited accounts, the results include member accounts that did
586
+ # not pass verification and member accounts that have not yet accepted
587
+ # the invitation to the behavior graph. The results do not include
588
+ # member accounts that were removed from the behavior graph.
589
+ #
590
+ # For the organization behavior graph, the results do not include
591
+ # organization accounts that the Detective administrator account has
592
+ # not enabled as member accounts.
500
593
  # @return [Array<Types::MemberDetail>]
501
594
  #
502
595
  # @!attribute [rw] next_token
503
- # If there are more member accounts remaining in the results, then
504
- # this is the pagination token to use to request the next page of
505
- # member accounts.
596
+ # If there are more member accounts remaining in the results, then use
597
+ # this pagination token to request the next page of member accounts.
506
598
  # @return [String]
507
599
  #
508
600
  # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/ListMembersResponse AWS API Documentation
@@ -514,6 +606,51 @@ module Aws::Detective
514
606
  include Aws::Structure
515
607
  end
516
608
 
609
+ # @note When making an API call, you may pass ListOrganizationAdminAccountsRequest
610
+ # data as a hash:
611
+ #
612
+ # {
613
+ # next_token: "PaginationToken",
614
+ # max_results: 1,
615
+ # }
616
+ #
617
+ # @!attribute [rw] next_token
618
+ # For requests to get the next page of results, the pagination token
619
+ # that was returned with the previous set of results. The initial
620
+ # request does not include a pagination token.
621
+ # @return [String]
622
+ #
623
+ # @!attribute [rw] max_results
624
+ # The maximum number of results to return.
625
+ # @return [Integer]
626
+ #
627
+ # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/ListOrganizationAdminAccountsRequest AWS API Documentation
628
+ #
629
+ class ListOrganizationAdminAccountsRequest < Struct.new(
630
+ :next_token,
631
+ :max_results)
632
+ SENSITIVE = []
633
+ include Aws::Structure
634
+ end
635
+
636
+ # @!attribute [rw] administrators
637
+ # The list of delegated administrator accounts.
638
+ # @return [Array<Types::Administrator>]
639
+ #
640
+ # @!attribute [rw] next_token
641
+ # If there are more accounts remaining in the results, then this is
642
+ # the pagination token to use to request the next page of accounts.
643
+ # @return [String]
644
+ #
645
+ # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/ListOrganizationAdminAccountsResponse AWS API Documentation
646
+ #
647
+ class ListOrganizationAdminAccountsResponse < Struct.new(
648
+ :administrators,
649
+ :next_token)
650
+ SENSITIVE = []
651
+ include Aws::Structure
652
+ end
653
+
517
654
  # @note When making an API call, you may pass ListTagsForResourceRequest
518
655
  # data as a hash:
519
656
  #
@@ -546,59 +683,70 @@ module Aws::Detective
546
683
  include Aws::Structure
547
684
  end
548
685
 
549
- # Details about a member account that was invited to contribute to a
550
- # behavior graph.
686
+ # Details about a member account in a behavior graph.
551
687
  #
552
688
  # @!attribute [rw] account_id
553
- # The AWS account identifier for the member account.
689
+ # The Amazon Web Services account identifier for the member account.
554
690
  # @return [String]
555
691
  #
556
692
  # @!attribute [rw] email_address
557
- # The AWS account root user email address for the member account.
693
+ # The Amazon Web Services account root user email address for the
694
+ # member account.
558
695
  # @return [String]
559
696
  #
560
697
  # @!attribute [rw] graph_arn
561
- # The ARN of the behavior graph that the member account was invited
562
- # to.
698
+ # The ARN of the behavior graph.
563
699
  # @return [String]
564
700
  #
565
701
  # @!attribute [rw] master_id
566
- # The AWS account identifier of the administrator account for the
567
- # behavior graph.
702
+ # The Amazon Web Services account identifier of the administrator
703
+ # account for the behavior graph.
568
704
  # @return [String]
569
705
  #
570
706
  # @!attribute [rw] administrator_id
571
- # The AWS account identifier of the administrator account for the
572
- # behavior graph.
707
+ # The Amazon Web Services account identifier of the administrator
708
+ # account for the behavior graph.
573
709
  # @return [String]
574
710
  #
575
711
  # @!attribute [rw] status
576
712
  # The current membership status of the member account. The status can
577
713
  # have one of the following values:
578
714
  #
579
- # * `INVITED` - Indicates that the member was sent an invitation but
580
- # has not yet responded.
581
- #
582
- # * `VERIFICATION_IN_PROGRESS` - Indicates that Detective is verifying
583
- # that the account identifier and email address provided for the
584
- # member account match. If they do match, then Detective sends the
585
- # invitation. If the email address and account identifier don't
586
- # match, then the member cannot be added to the behavior graph.
587
- #
588
- # * `VERIFICATION_FAILED` - Indicates that the account and email
589
- # address provided for the member account do not match, and
590
- # Detective did not send an invitation to the account.
591
- #
592
- # * `ENABLED` - Indicates that the member account accepted the
593
- # invitation to contribute to the behavior graph.
594
- #
595
- # * `ACCEPTED_BUT_DISABLED` - Indicates that the member account
596
- # accepted the invitation but is prevented from contributing data to
597
- # the behavior graph. `DisabledReason` provides the reason why the
598
- # member account is not enabled.
599
- #
600
- # Member accounts that declined an invitation or that were removed
601
- # from the behavior graph are not included.
715
+ # * `INVITED` - For invited accounts only. Indicates that the member
716
+ # was sent an invitation but has not yet responded.
717
+ #
718
+ # * `VERIFICATION_IN_PROGRESS` - For invited accounts only, indicates
719
+ # that Detective is verifying that the account identifier and email
720
+ # address provided for the member account match. If they do match,
721
+ # then Detective sends the invitation. If the email address and
722
+ # account identifier don't match, then the member cannot be added
723
+ # to the behavior graph.
724
+ #
725
+ # For organization accounts in the organization behavior graph,
726
+ # indicates that Detective is verifying that the account belongs to
727
+ # the organization.
728
+ #
729
+ # * `VERIFICATION_FAILED` - For invited accounts only. Indicates that
730
+ # the account and email address provided for the member account do
731
+ # not match, and Detective did not send an invitation to the
732
+ # account.
733
+ #
734
+ # * `ENABLED` - Indicates that the member account currently
735
+ # contributes data to the behavior graph. For invited accounts, the
736
+ # member account accepted the invitation. For organization accounts
737
+ # in the organization behavior graph, the Detective administrator
738
+ # account enabled the organization account as a member account.
739
+ #
740
+ # * `ACCEPTED_BUT_DISABLED` - The account accepted the invitation, or
741
+ # was enabled by the Detective administrator account, but is
742
+ # prevented from contributing data to the behavior graph.
743
+ # `DisabledReason` provides the reason why the member account is not
744
+ # enabled.
745
+ #
746
+ # Invited accounts that declined an invitation or that were removed
747
+ # from the behavior graph are not included. In the organization
748
+ # behavior graph, organization accounts that the Detective
749
+ # administrator account did not enable are not included.
602
750
  # @return [String]
603
751
  #
604
752
  # @!attribute [rw] disabled_reason
@@ -616,13 +764,15 @@ module Aws::Detective
616
764
  # @return [String]
617
765
  #
618
766
  # @!attribute [rw] invited_time
619
- # The date and time that Detective sent the invitation to the member
620
- # account. The value is in milliseconds since the epoch.
767
+ # For invited accounts, the date and time that Detective sent the
768
+ # invitation to the account. The value is an ISO8601 formatted string.
769
+ # For example, `2021-08-18T16:35:56.284Z`.
621
770
  # @return [Time]
622
771
  #
623
772
  # @!attribute [rw] updated_time
624
773
  # The date and time that the member account was last updated. The
625
- # value is in milliseconds since the epoch.
774
+ # value is an ISO8601 formatted string. For example,
775
+ # `2021-08-18T16:35:56.284Z`.
626
776
  # @return [Time]
627
777
  #
628
778
  # @!attribute [rw] volume_usage_in_bytes
@@ -631,7 +781,8 @@ module Aws::Detective
631
781
  #
632
782
  # @!attribute [rw] volume_usage_updated_time
633
783
  # The data and time when the member account data volume was last
634
- # updated.
784
+ # updated. The value is an ISO8601 formatted string. For example,
785
+ # `2021-08-18T16:35:56.284Z`.
635
786
  # @return [Time]
636
787
  #
637
788
  # @!attribute [rw] percent_of_graph_utilization
@@ -651,9 +802,20 @@ module Aws::Detective
651
802
  #
652
803
  # @!attribute [rw] percent_of_graph_utilization_updated_time
653
804
  # The date and time when the graph utilization percentage was last
654
- # updated.
805
+ # updated. The value is an ISO8601 formatted string. For example,
806
+ # `2021-08-18T16:35:56.284Z`.
655
807
  # @return [Time]
656
808
  #
809
+ # @!attribute [rw] invitation_type
810
+ # The type of behavior graph membership.
811
+ #
812
+ # For an organization account in the organization behavior graph, the
813
+ # type is `ORGANIZATION`.
814
+ #
815
+ # For an account that was invited to a behavior graph, the type is
816
+ # `INVITATION`.
817
+ # @return [String]
818
+ #
657
819
  # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/MemberDetail AWS API Documentation
658
820
  #
659
821
  class MemberDetail < Struct.new(
@@ -669,7 +831,8 @@ module Aws::Detective
669
831
  :volume_usage_in_bytes,
670
832
  :volume_usage_updated_time,
671
833
  :percent_of_graph_utilization,
672
- :percent_of_graph_utilization_updated_time)
834
+ :percent_of_graph_utilization_updated_time,
835
+ :invitation_type)
673
836
  SENSITIVE = []
674
837
  include Aws::Structure
675
838
  end
@@ -713,7 +876,7 @@ module Aws::Detective
713
876
  #
714
877
  # * The request would cause the number of member accounts in the
715
878
  # behavior graph to exceed the maximum allowed. A behavior graph
716
- # cannot have more than 1000 member accounts.
879
+ # cannot have more than 1200 member accounts.
717
880
  #
718
881
  # * The request would cause the data rate for the behavior graph to
719
882
  # exceed the maximum allowed.
@@ -795,12 +958,26 @@ module Aws::Detective
795
958
  #
796
959
  class TagResourceResponse < Aws::EmptyStructure; end
797
960
 
961
+ # The request cannot be completed because too many other requests are
962
+ # occurring at the same time.
963
+ #
964
+ # @!attribute [rw] message
965
+ # @return [String]
966
+ #
967
+ # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/TooManyRequestsException AWS API Documentation
968
+ #
969
+ class TooManyRequestsException < Struct.new(
970
+ :message)
971
+ SENSITIVE = []
972
+ include Aws::Structure
973
+ end
974
+
798
975
  # A member account that was included in a request but for which the
799
976
  # request could not be processed.
800
977
  #
801
978
  # @!attribute [rw] account_id
802
- # The AWS account identifier of the member account that was not
803
- # processed.
979
+ # The Amazon Web Services account identifier of the member account
980
+ # that was not processed.
804
981
  # @return [String]
805
982
  #
806
983
  # @!attribute [rw] reason
@@ -846,6 +1023,32 @@ module Aws::Detective
846
1023
  #
847
1024
  class UntagResourceResponse < Aws::EmptyStructure; end
848
1025
 
1026
+ # @note When making an API call, you may pass UpdateOrganizationConfigurationRequest
1027
+ # data as a hash:
1028
+ #
1029
+ # {
1030
+ # graph_arn: "GraphArn", # required
1031
+ # auto_enable: false,
1032
+ # }
1033
+ #
1034
+ # @!attribute [rw] graph_arn
1035
+ # The ARN of the organization behavior graph.
1036
+ # @return [String]
1037
+ #
1038
+ # @!attribute [rw] auto_enable
1039
+ # Indicates whether to automatically enable new organization accounts
1040
+ # as member accounts in the organization behavior graph.
1041
+ # @return [Boolean]
1042
+ #
1043
+ # @see http://docs.aws.amazon.com/goto/WebAPI/detective-2018-10-26/UpdateOrganizationConfigurationRequest AWS API Documentation
1044
+ #
1045
+ class UpdateOrganizationConfigurationRequest < Struct.new(
1046
+ :graph_arn,
1047
+ :auto_enable)
1048
+ SENSITIVE = []
1049
+ include Aws::Structure
1050
+ end
1051
+
849
1052
  # The request parameters are invalid.
850
1053
  #
851
1054
  # @!attribute [rw] message
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-detective/customizations'
48
48
  # @!group service
49
49
  module Aws::Detective
50
50
 
51
- GEM_VERSION = '1.22.0'
51
+ GEM_VERSION = '1.26.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-detective
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.22.0
4
+ version: 1.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-18 00:00:00.000000000 Z
11
+ date: 2022-01-03 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.121.2
22
+ version: 3.125.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.121.2
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement