aws-sdk-customerprofiles 1.57.0 → 1.59.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -269,6 +271,57 @@ module Aws
269
271
  ) -> _CreateEventStreamResponseSuccess
270
272
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventStreamResponseSuccess
271
273
 
274
+ interface _CreateEventTriggerResponseSuccess
275
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEventTriggerResponse]
276
+ def event_trigger_name: () -> ::String
277
+ def object_type_name: () -> ::String
278
+ def description: () -> ::String
279
+ def event_trigger_conditions: () -> ::Array[Types::EventTriggerCondition]
280
+ def segment_filter: () -> ::String
281
+ def event_trigger_limits: () -> Types::EventTriggerLimits
282
+ def created_at: () -> ::Time
283
+ def last_updated_at: () -> ::Time
284
+ def tags: () -> ::Hash[::String, ::String]
285
+ end
286
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#create_event_trigger-instance_method
287
+ def create_event_trigger: (
288
+ domain_name: ::String,
289
+ event_trigger_name: ::String,
290
+ object_type_name: ::String,
291
+ ?description: ::String,
292
+ event_trigger_conditions: Array[
293
+ {
294
+ event_trigger_dimensions: Array[
295
+ {
296
+ object_attributes: Array[
297
+ {
298
+ source: ::String?,
299
+ field_name: ::String?,
300
+ comparison_operator: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "EQUAL" | "BEFORE" | "AFTER" | "ON" | "BETWEEN" | "NOT_BETWEEN"),
301
+ values: Array[::String]
302
+ },
303
+ ]
304
+ },
305
+ ],
306
+ logical_operator: ("ANY" | "ALL" | "NONE")
307
+ },
308
+ ],
309
+ ?segment_filter: ::String,
310
+ ?event_trigger_limits: {
311
+ event_expiration: ::Integer?,
312
+ periods: Array[
313
+ {
314
+ unit: ("HOURS" | "DAYS" | "WEEKS" | "MONTHS"),
315
+ value: ::Integer,
316
+ max_invocations_per_profile: ::Integer?,
317
+ unlimited: bool?
318
+ },
319
+ ]?
320
+ },
321
+ ?tags: Hash[::String, ::String]
322
+ ) -> _CreateEventTriggerResponseSuccess
323
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventTriggerResponseSuccess
324
+
272
325
  interface _CreateIntegrationWorkflowResponseSuccess
273
326
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateIntegrationWorkflowResponse]
274
327
  def workflow_id: () -> ::String
@@ -914,6 +967,17 @@ module Aws
914
967
  ) -> _DeleteEventStreamResponseSuccess
915
968
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEventStreamResponseSuccess
916
969
 
970
+ interface _DeleteEventTriggerResponseSuccess
971
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEventTriggerResponse]
972
+ def message: () -> ::String
973
+ end
974
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#delete_event_trigger-instance_method
975
+ def delete_event_trigger: (
976
+ domain_name: ::String,
977
+ event_trigger_name: ::String
978
+ ) -> _DeleteEventTriggerResponseSuccess
979
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEventTriggerResponseSuccess
980
+
917
981
  interface _DeleteIntegrationResponseSuccess
918
982
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIntegrationResponse]
919
983
  def message: () -> ::String
@@ -1099,6 +1163,25 @@ module Aws
1099
1163
  ) -> _GetEventStreamResponseSuccess
1100
1164
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEventStreamResponseSuccess
1101
1165
 
1166
+ interface _GetEventTriggerResponseSuccess
1167
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEventTriggerResponse]
1168
+ def event_trigger_name: () -> ::String
1169
+ def object_type_name: () -> ::String
1170
+ def description: () -> ::String
1171
+ def event_trigger_conditions: () -> ::Array[Types::EventTriggerCondition]
1172
+ def segment_filter: () -> ::String
1173
+ def event_trigger_limits: () -> Types::EventTriggerLimits
1174
+ def created_at: () -> ::Time
1175
+ def last_updated_at: () -> ::Time
1176
+ def tags: () -> ::Hash[::String, ::String]
1177
+ end
1178
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_event_trigger-instance_method
1179
+ def get_event_trigger: (
1180
+ domain_name: ::String,
1181
+ event_trigger_name: ::String
1182
+ ) -> _GetEventTriggerResponseSuccess
1183
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEventTriggerResponseSuccess
1184
+
1102
1185
  interface _GetIdentityResolutionJobResponseSuccess
1103
1186
  include ::Seahorse::Client::_ResponseSuccess[Types::GetIdentityResolutionJobResponse]
1104
1187
  def domain_name: () -> ::String
@@ -1132,6 +1215,7 @@ module Aws
1132
1215
  def workflow_id: () -> ::String
1133
1216
  def is_unstructured: () -> bool
1134
1217
  def role_arn: () -> ::String
1218
+ def event_trigger_names: () -> ::Array[::String]
1135
1219
  end
1136
1220
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_integration-instance_method
1137
1221
  def get_integration: (
@@ -1380,6 +1464,19 @@ module Aws
1380
1464
  ) -> _ListEventStreamsResponseSuccess
1381
1465
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventStreamsResponseSuccess
1382
1466
 
1467
+ interface _ListEventTriggersResponseSuccess
1468
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEventTriggersResponse]
1469
+ def items: () -> ::Array[Types::EventTriggerSummaryItem]
1470
+ def next_token: () -> ::String
1471
+ end
1472
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#list_event_triggers-instance_method
1473
+ def list_event_triggers: (
1474
+ domain_name: ::String,
1475
+ ?next_token: ::String,
1476
+ ?max_results: ::Integer
1477
+ ) -> _ListEventTriggersResponseSuccess
1478
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventTriggersResponseSuccess
1479
+
1383
1480
  interface _ListIdentityResolutionJobsResponseSuccess
1384
1481
  include ::Seahorse::Client::_ResponseSuccess[Types::ListIdentityResolutionJobsResponse]
1385
1482
  def identity_resolution_jobs_list: () -> ::Array[Types::IdentityResolutionJob]
@@ -1579,6 +1676,7 @@ module Aws
1579
1676
  def workflow_id: () -> ::String
1580
1677
  def is_unstructured: () -> bool
1581
1678
  def role_arn: () -> ::String
1679
+ def event_trigger_names: () -> ::Array[::String]
1582
1680
  end
1583
1681
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#put_integration-instance_method
1584
1682
  def put_integration: (
@@ -1648,7 +1746,8 @@ module Aws
1648
1746
  }
1649
1747
  },
1650
1748
  ?object_type_names: Hash[::String, ::String],
1651
- ?role_arn: ::String
1749
+ ?role_arn: ::String,
1750
+ ?event_trigger_names: Array[::String]
1652
1751
  ) -> _PutIntegrationResponseSuccess
1653
1752
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutIntegrationResponseSuccess
1654
1753
 
@@ -1855,6 +1954,56 @@ module Aws
1855
1954
  ) -> _UpdateDomainResponseSuccess
1856
1955
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainResponseSuccess
1857
1956
 
1957
+ interface _UpdateEventTriggerResponseSuccess
1958
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEventTriggerResponse]
1959
+ def event_trigger_name: () -> ::String
1960
+ def object_type_name: () -> ::String
1961
+ def description: () -> ::String
1962
+ def event_trigger_conditions: () -> ::Array[Types::EventTriggerCondition]
1963
+ def segment_filter: () -> ::String
1964
+ def event_trigger_limits: () -> Types::EventTriggerLimits
1965
+ def created_at: () -> ::Time
1966
+ def last_updated_at: () -> ::Time
1967
+ def tags: () -> ::Hash[::String, ::String]
1968
+ end
1969
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#update_event_trigger-instance_method
1970
+ def update_event_trigger: (
1971
+ domain_name: ::String,
1972
+ event_trigger_name: ::String,
1973
+ ?object_type_name: ::String,
1974
+ ?description: ::String,
1975
+ ?event_trigger_conditions: Array[
1976
+ {
1977
+ event_trigger_dimensions: Array[
1978
+ {
1979
+ object_attributes: Array[
1980
+ {
1981
+ source: ::String?,
1982
+ field_name: ::String?,
1983
+ comparison_operator: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "EQUAL" | "BEFORE" | "AFTER" | "ON" | "BETWEEN" | "NOT_BETWEEN"),
1984
+ values: Array[::String]
1985
+ },
1986
+ ]
1987
+ },
1988
+ ],
1989
+ logical_operator: ("ANY" | "ALL" | "NONE")
1990
+ },
1991
+ ],
1992
+ ?segment_filter: ::String,
1993
+ ?event_trigger_limits: {
1994
+ event_expiration: ::Integer?,
1995
+ periods: Array[
1996
+ {
1997
+ unit: ("HOURS" | "DAYS" | "WEEKS" | "MONTHS"),
1998
+ value: ::Integer,
1999
+ max_invocations_per_profile: ::Integer?,
2000
+ unlimited: bool?
2001
+ },
2002
+ ]?
2003
+ }
2004
+ ) -> _UpdateEventTriggerResponseSuccess
2005
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEventTriggerResponseSuccess
2006
+
1858
2007
  interface _UpdateProfileResponseSuccess
1859
2008
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProfileResponse]
1860
2009
  def profile_id: () -> ::String
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/types.rbs CHANGED
@@ -292,6 +292,31 @@ module Aws::CustomerProfiles
292
292
  SENSITIVE: []
293
293
  end
294
294
 
295
+ class CreateEventTriggerRequest
296
+ attr_accessor domain_name: ::String
297
+ attr_accessor event_trigger_name: ::String
298
+ attr_accessor object_type_name: ::String
299
+ attr_accessor description: ::String
300
+ attr_accessor event_trigger_conditions: ::Array[Types::EventTriggerCondition]
301
+ attr_accessor segment_filter: ::String
302
+ attr_accessor event_trigger_limits: Types::EventTriggerLimits
303
+ attr_accessor tags: ::Hash[::String, ::String]
304
+ SENSITIVE: [:description, :event_trigger_conditions]
305
+ end
306
+
307
+ class CreateEventTriggerResponse
308
+ attr_accessor event_trigger_name: ::String
309
+ attr_accessor object_type_name: ::String
310
+ attr_accessor description: ::String
311
+ attr_accessor event_trigger_conditions: ::Array[Types::EventTriggerCondition]
312
+ attr_accessor segment_filter: ::String
313
+ attr_accessor event_trigger_limits: Types::EventTriggerLimits
314
+ attr_accessor created_at: ::Time
315
+ attr_accessor last_updated_at: ::Time
316
+ attr_accessor tags: ::Hash[::String, ::String]
317
+ SENSITIVE: [:description, :event_trigger_conditions]
318
+ end
319
+
295
320
  class CreateIntegrationWorkflowRequest
296
321
  attr_accessor domain_name: ::String
297
322
  attr_accessor workflow_type: ("APPFLOW_INTEGRATION")
@@ -423,6 +448,17 @@ module Aws::CustomerProfiles
423
448
  class DeleteEventStreamResponse < Aws::EmptyStructure
424
449
  end
425
450
 
451
+ class DeleteEventTriggerRequest
452
+ attr_accessor domain_name: ::String
453
+ attr_accessor event_trigger_name: ::String
454
+ SENSITIVE: []
455
+ end
456
+
457
+ class DeleteEventTriggerResponse
458
+ attr_accessor message: ::String
459
+ SENSITIVE: []
460
+ end
461
+
426
462
  class DeleteIntegrationRequest
427
463
  attr_accessor domain_name: ::String
428
464
  attr_accessor uri: ::String
@@ -568,6 +604,33 @@ module Aws::CustomerProfiles
568
604
  SENSITIVE: []
569
605
  end
570
606
 
607
+ class EventTriggerCondition
608
+ attr_accessor event_trigger_dimensions: ::Array[Types::EventTriggerDimension]
609
+ attr_accessor logical_operator: ("ANY" | "ALL" | "NONE")
610
+ SENSITIVE: []
611
+ end
612
+
613
+ class EventTriggerDimension
614
+ attr_accessor object_attributes: ::Array[Types::ObjectAttribute]
615
+ SENSITIVE: []
616
+ end
617
+
618
+ class EventTriggerLimits
619
+ attr_accessor event_expiration: ::Integer
620
+ attr_accessor periods: ::Array[Types::Period]
621
+ SENSITIVE: []
622
+ end
623
+
624
+ class EventTriggerSummaryItem
625
+ attr_accessor object_type_name: ::String
626
+ attr_accessor event_trigger_name: ::String
627
+ attr_accessor description: ::String
628
+ attr_accessor created_at: ::Time
629
+ attr_accessor last_updated_at: ::Time
630
+ attr_accessor tags: ::Hash[::String, ::String]
631
+ SENSITIVE: []
632
+ end
633
+
571
634
  class ExportingConfig
572
635
  attr_accessor s3_exporting: Types::S3ExportingConfig
573
636
  SENSITIVE: []
@@ -735,6 +798,25 @@ module Aws::CustomerProfiles
735
798
  SENSITIVE: []
736
799
  end
737
800
 
801
+ class GetEventTriggerRequest
802
+ attr_accessor domain_name: ::String
803
+ attr_accessor event_trigger_name: ::String
804
+ SENSITIVE: []
805
+ end
806
+
807
+ class GetEventTriggerResponse
808
+ attr_accessor event_trigger_name: ::String
809
+ attr_accessor object_type_name: ::String
810
+ attr_accessor description: ::String
811
+ attr_accessor event_trigger_conditions: ::Array[Types::EventTriggerCondition]
812
+ attr_accessor segment_filter: ::String
813
+ attr_accessor event_trigger_limits: Types::EventTriggerLimits
814
+ attr_accessor created_at: ::Time
815
+ attr_accessor last_updated_at: ::Time
816
+ attr_accessor tags: ::Hash[::String, ::String]
817
+ SENSITIVE: [:description, :event_trigger_conditions]
818
+ end
819
+
738
820
  class GetIdentityResolutionJobRequest
739
821
  attr_accessor domain_name: ::String
740
822
  attr_accessor job_id: ::String
@@ -773,6 +855,7 @@ module Aws::CustomerProfiles
773
855
  attr_accessor workflow_id: ::String
774
856
  attr_accessor is_unstructured: bool
775
857
  attr_accessor role_arn: ::String
858
+ attr_accessor event_trigger_names: ::Array[::String]
776
859
  SENSITIVE: []
777
860
  end
778
861
 
@@ -1090,6 +1173,19 @@ module Aws::CustomerProfiles
1090
1173
  SENSITIVE: []
1091
1174
  end
1092
1175
 
1176
+ class ListEventTriggersRequest
1177
+ attr_accessor domain_name: ::String
1178
+ attr_accessor next_token: ::String
1179
+ attr_accessor max_results: ::Integer
1180
+ SENSITIVE: []
1181
+ end
1182
+
1183
+ class ListEventTriggersResponse
1184
+ attr_accessor items: ::Array[Types::EventTriggerSummaryItem]
1185
+ attr_accessor next_token: ::String
1186
+ SENSITIVE: [:items]
1187
+ end
1188
+
1093
1189
  class ListIdentityResolutionJobsRequest
1094
1190
  attr_accessor domain_name: ::String
1095
1191
  attr_accessor next_token: ::String
@@ -1114,6 +1210,7 @@ module Aws::CustomerProfiles
1114
1210
  attr_accessor workflow_id: ::String
1115
1211
  attr_accessor is_unstructured: bool
1116
1212
  attr_accessor role_arn: ::String
1213
+ attr_accessor event_trigger_names: ::Array[::String]
1117
1214
  SENSITIVE: []
1118
1215
  end
1119
1216
 
@@ -1326,6 +1423,14 @@ module Aws::CustomerProfiles
1326
1423
  SENSITIVE: []
1327
1424
  end
1328
1425
 
1426
+ class ObjectAttribute
1427
+ attr_accessor source: ::String
1428
+ attr_accessor field_name: ::String
1429
+ attr_accessor comparison_operator: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "EQUAL" | "BEFORE" | "AFTER" | "ON" | "BETWEEN" | "NOT_BETWEEN")
1430
+ attr_accessor values: ::Array[::String]
1431
+ SENSITIVE: []
1432
+ end
1433
+
1329
1434
  class ObjectFilter
1330
1435
  attr_accessor key_name: ::String
1331
1436
  attr_accessor values: ::Array[::String]
@@ -1345,6 +1450,14 @@ module Aws::CustomerProfiles
1345
1450
  SENSITIVE: []
1346
1451
  end
1347
1452
 
1453
+ class Period
1454
+ attr_accessor unit: ("HOURS" | "DAYS" | "WEEKS" | "MONTHS")
1455
+ attr_accessor value: ::Integer
1456
+ attr_accessor max_invocations_per_profile: ::Integer
1457
+ attr_accessor unlimited: bool
1458
+ SENSITIVE: []
1459
+ end
1460
+
1348
1461
  class Profile
1349
1462
  attr_accessor profile_id: ::String
1350
1463
  attr_accessor account_number: ::String
@@ -1441,6 +1554,7 @@ module Aws::CustomerProfiles
1441
1554
  attr_accessor flow_definition: Types::FlowDefinition
1442
1555
  attr_accessor object_type_names: ::Hash[::String, ::String]
1443
1556
  attr_accessor role_arn: ::String
1557
+ attr_accessor event_trigger_names: ::Array[::String]
1444
1558
  SENSITIVE: [:flow_definition]
1445
1559
  end
1446
1560
 
@@ -1455,6 +1569,7 @@ module Aws::CustomerProfiles
1455
1569
  attr_accessor workflow_id: ::String
1456
1570
  attr_accessor is_unstructured: bool
1457
1571
  attr_accessor role_arn: ::String
1572
+ attr_accessor event_trigger_names: ::Array[::String]
1458
1573
  SENSITIVE: []
1459
1574
  end
1460
1575
 
@@ -1756,6 +1871,30 @@ module Aws::CustomerProfiles
1756
1871
  SENSITIVE: []
1757
1872
  end
1758
1873
 
1874
+ class UpdateEventTriggerRequest
1875
+ attr_accessor domain_name: ::String
1876
+ attr_accessor event_trigger_name: ::String
1877
+ attr_accessor object_type_name: ::String
1878
+ attr_accessor description: ::String
1879
+ attr_accessor event_trigger_conditions: ::Array[Types::EventTriggerCondition]
1880
+ attr_accessor segment_filter: ::String
1881
+ attr_accessor event_trigger_limits: Types::EventTriggerLimits
1882
+ SENSITIVE: [:description, :event_trigger_conditions]
1883
+ end
1884
+
1885
+ class UpdateEventTriggerResponse
1886
+ attr_accessor event_trigger_name: ::String
1887
+ attr_accessor object_type_name: ::String
1888
+ attr_accessor description: ::String
1889
+ attr_accessor event_trigger_conditions: ::Array[Types::EventTriggerCondition]
1890
+ attr_accessor segment_filter: ::String
1891
+ attr_accessor event_trigger_limits: Types::EventTriggerLimits
1892
+ attr_accessor created_at: ::Time
1893
+ attr_accessor last_updated_at: ::Time
1894
+ attr_accessor tags: ::Hash[::String, ::String]
1895
+ SENSITIVE: [:description, :event_trigger_conditions]
1896
+ end
1897
+
1759
1898
  class UpdateProfileRequest
1760
1899
  attr_accessor domain_name: ::String
1761
1900
  attr_accessor profile_id: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-customerprofiles
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.57.0
4
+ version: 1.59.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: 2024-11-18 00:00:00.000000000 Z
11
+ date: 2025-01-15 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.210.0
22
+ version: 3.216.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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement