aws-sdk-rds 1.135.0 → 1.136.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 335aea28167c625bbc2ed88ef01a232ed4b4ac45337f09ce710be54b7a794443
4
- data.tar.gz: aef87fdce082a55b49641750e0358f7688e766ee870b7b8163c1fe87a28eab8b
3
+ metadata.gz: a5fcfcded153cad20395398aaf964427578146c6d303c2b1737c0c5af31a2298
4
+ data.tar.gz: 938ca4a33e95d9ea95f63923027884c6a98c485a43154fe524f10fa0c45f2ae5
5
5
  SHA512:
6
- metadata.gz: fd15cbd1b55a19a1fbbac68758f8b7a46b76943fcd71ea0644db431dec94f75146dcb26cc54139f6e64488365ec91965dfe530437cf3f07c314074a4f29614d7
7
- data.tar.gz: 9f5c02c351b5218144ae126ddf9d7d1b56a7051a51124eb727fb12a524aff85c6d6347f1a932882df2fe8c8adb20737f954843525c7ed90ac0cd8874fe130210
6
+ metadata.gz: 4e7ee5200f349222ef4f74335cd28e9d1b4d9c9d413038b43a600c6f135fbfc4081342ceba82c4d120f1ec60c542ec4226eb605dde1a9b57e5f9ad5a98887fa3
7
+ data.tar.gz: 8269766054a06d005fba5c38931510a906e4b3ae4d52c30d1edb56f493c6e184ea7d32eefc07b9af591cdb67da8d815b8076089b89b7d17a411900d0f72a82fe
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.136.0 (2022-01-11)
5
+ ------------------
6
+
7
+ * Feature - This release adds the db-proxy event type to support subscribing to RDS Proxy events.
8
+
4
9
  1.135.0 (2022-01-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.135.0
1
+ 1.136.0
@@ -455,6 +455,9 @@ module Aws::RDS
455
455
  # * If the source type is a DB cluster snapshot, a
456
456
  # `DBClusterSnapshotIdentifier` value must be supplied.
457
457
  #
458
+ # * If the source type is an RDS Proxy, a `DBProxyName` value must be
459
+ # supplied.
460
+ #
458
461
  # @return [Types::AddSourceIdentifierToSubscriptionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
459
462
  #
460
463
  # * {Types::AddSourceIdentifierToSubscriptionResult#event_subscription #event_subscription} => Types::EventSubscription
@@ -6048,13 +6051,13 @@ module Aws::RDS
6048
6051
  # `Availability`, `Backup`.
6049
6052
  #
6050
6053
  # If you specify both the `SourceType` and `SourceIds`, such as
6051
- # `SourceType` = `db-instance` and `SourceIdentifier` = `myDBInstance1`,
6052
- # you are notified of all the `db-instance` events for the specified
6053
- # source. If you specify a `SourceType` but do not specify a
6054
- # `SourceIdentifier`, you receive notice of the events for that source
6055
- # type for all your RDS sources. If you don't specify either the
6056
- # SourceType or the `SourceIdentifier`, you are notified of events
6057
- # generated from all RDS sources belonging to your customer account.
6054
+ # `SourceType` = `db-instance` and `SourceIds` = `myDBInstance1`, you
6055
+ # are notified of all the `db-instance` events for the specified source.
6056
+ # If you specify a `SourceType` but do not specify `SourceIds`, you
6057
+ # receive notice of the events for that source type for all your RDS
6058
+ # sources. If you don't specify either the SourceType or the
6059
+ # `SourceIds`, you are notified of events generated from all RDS sources
6060
+ # belonging to your customer account.
6058
6061
  #
6059
6062
  # <note markdown="1"> RDS event notification is only available for unencrypted SNS topics.
6060
6063
  # If you specify an encrypted SNS topic, event notifications aren't
@@ -6075,21 +6078,25 @@ module Aws::RDS
6075
6078
  # @option params [String] :source_type
6076
6079
  # The type of source that is generating the events. For example, if you
6077
6080
  # want to be notified of events generated by a DB instance, you set this
6078
- # parameter to `db-instance`. If this value isn't specified, all events
6079
- # are returned.
6081
+ # parameter to `db-instance`. For RDS Proxy events, specify `db-proxy`.
6082
+ # If this value isn't specified, all events are returned.
6080
6083
  #
6081
6084
  # Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
6082
- # `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
6085
+ # `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
6086
+ # `db-proxy`
6083
6087
  #
6084
6088
  # @option params [Array<String>] :event_categories
6085
6089
  # A list of event categories for a particular source type (`SourceType`)
6086
6090
  # that you want to subscribe to. You can see a list of the categories
6087
- # for a given source type in [Events][1] in the *Amazon RDS User Guide*
6088
- # or by using the `DescribeEventCategories` operation.
6091
+ # for a given source type in the "Amazon RDS event categories and event
6092
+ # messages" section of the [ *Amazon RDS User Guide* ][1] or the [
6093
+ # *Amazon Aurora User Guide* ][2]. You can also see this list by using
6094
+ # the `DescribeEventCategories` operation.
6089
6095
  #
6090
6096
  #
6091
6097
  #
6092
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
6098
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.Messages.html
6099
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Events.Messages.html
6093
6100
  #
6094
6101
  # @option params [Array<String>] :source_ids
6095
6102
  # The list of identifiers of the event sources for which events are
@@ -6120,6 +6127,9 @@ module Aws::RDS
6120
6127
  # * If the source type is a DB cluster snapshot, a
6121
6128
  # `DBClusterSnapshotIdentifier` value must be supplied.
6122
6129
  #
6130
+ # * If the source type is an RDS Proxy, a `DBProxyName` value must be
6131
+ # supplied.
6132
+ #
6123
6133
  # @option params [Boolean] :enabled
6124
6134
  # A value that indicates whether to activate the subscription. If the
6125
6135
  # event notification subscription isn't activated, the subscription is
@@ -10826,19 +10836,23 @@ module Aws::RDS
10826
10836
  end
10827
10837
 
10828
10838
  # Displays a list of categories for all event source types, or, if
10829
- # specified, for a specified source type. You can see a list of the
10830
- # event categories and source types in [ Events][1] in the *Amazon RDS
10831
- # User Guide.*
10839
+ # specified, for a specified source type. You can also see this list in
10840
+ # the "Amazon RDS event categories and event messages" section of the
10841
+ # [ *Amazon RDS User Guide* ][1] or the [ *Amazon Aurora User Guide*
10842
+ # ][2].
10832
10843
  #
10833
10844
  #
10834
10845
  #
10835
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
10846
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.Messages.html
10847
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Events.Messages.html
10836
10848
  #
10837
10849
  # @option params [String] :source_type
10838
- # The type of source that is generating the events.
10850
+ # The type of source that is generating the events. For RDS Proxy
10851
+ # events, specify `db-proxy`.
10839
10852
  #
10840
10853
  # Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
10841
- # `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
10854
+ # `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
10855
+ # `db-proxy`
10842
10856
  #
10843
10857
  # @option params [Array<Types::Filter>] :filters
10844
10858
  # This parameter isn't currently supported.
@@ -10980,13 +10994,13 @@ module Aws::RDS
10980
10994
  end
10981
10995
 
10982
10996
  # Returns events related to DB instances, DB clusters, DB parameter
10983
- # groups, DB security groups, DB snapshots, and DB cluster snapshots for
10984
- # the past 14 days. Events specific to a particular DB instances, DB
10985
- # clusters, DB parameter groups, DB security groups, DB snapshots, and
10986
- # DB cluster snapshots group can be obtained by providing the name as a
10987
- # parameter.
10997
+ # groups, DB security groups, DB snapshots, DB cluster snapshots, and
10998
+ # RDS Proxies for the past 14 days. Events specific to a particular DB
10999
+ # instance, DB cluster, DB parameter group, DB security group, DB
11000
+ # snapshot, DB cluster snapshot group, or RDS Proxy can be obtained by
11001
+ # providing the name as a parameter.
10988
11002
  #
10989
- # <note markdown="1"> By default, the past hour of events are returned.
11003
+ # <note markdown="1"> By default, RDS returns events that were generated in the past hour.
10990
11004
  #
10991
11005
  # </note>
10992
11006
  #
@@ -11017,6 +11031,9 @@ module Aws::RDS
11017
11031
  # * If the source type is a DB cluster snapshot, a
11018
11032
  # `DBClusterSnapshotIdentifier` value must be supplied.
11019
11033
  #
11034
+ # * If the source type is an RDS Proxy, a `DBProxyName` value must be
11035
+ # supplied.
11036
+ #
11020
11037
  # * Can't end with a hyphen or contain two consecutive hyphens.
11021
11038
  #
11022
11039
  # @option params [String] :source_type
@@ -11102,7 +11119,7 @@ module Aws::RDS
11102
11119
  #
11103
11120
  # resp = client.describe_events({
11104
11121
  # source_identifier: "String",
11105
- # source_type: "db-instance", # accepts db-instance, db-parameter-group, db-security-group, db-snapshot, db-cluster, db-cluster-snapshot, custom-engine-version
11122
+ # source_type: "db-instance", # accepts db-instance, db-parameter-group, db-security-group, db-snapshot, db-cluster, db-cluster-snapshot, custom-engine-version, db-proxy
11106
11123
  # start_time: Time.now,
11107
11124
  # end_time: Time.now,
11108
11125
  # duration: 1,
@@ -11122,7 +11139,7 @@ module Aws::RDS
11122
11139
  # resp.marker #=> String
11123
11140
  # resp.events #=> Array
11124
11141
  # resp.events[0].source_identifier #=> String
11125
- # resp.events[0].source_type #=> String, one of "db-instance", "db-parameter-group", "db-security-group", "db-snapshot", "db-cluster", "db-cluster-snapshot", "custom-engine-version"
11142
+ # resp.events[0].source_type #=> String, one of "db-instance", "db-parameter-group", "db-security-group", "db-snapshot", "db-cluster", "db-cluster-snapshot", "custom-engine-version", "db-proxy"
11126
11143
  # resp.events[0].message #=> String
11127
11144
  # resp.events[0].event_categories #=> Array
11128
11145
  # resp.events[0].event_categories[0] #=> String
@@ -15918,11 +15935,12 @@ module Aws::RDS
15918
15935
  # @option params [String] :source_type
15919
15936
  # The type of source that is generating the events. For example, if you
15920
15937
  # want to be notified of events generated by a DB instance, you would
15921
- # set this parameter to db-instance. If this value isn't specified, all
15922
- # events are returned.
15938
+ # set this parameter to db-instance. For RDS Proxy events, specify
15939
+ # `db-proxy`. If this value isn't specified, all events are returned.
15923
15940
  #
15924
15941
  # Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
15925
- # `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
15942
+ # `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
15943
+ # `db-proxy`
15926
15944
  #
15927
15945
  # @option params [Array<String>] :event_categories
15928
15946
  # A list of event categories for a source type (`SourceType`) that you
@@ -22337,7 +22355,7 @@ module Aws::RDS
22337
22355
  params: params,
22338
22356
  config: config)
22339
22357
  context[:gem_name] = 'aws-sdk-rds'
22340
- context[:gem_version] = '1.135.0'
22358
+ context[:gem_version] = '1.136.0'
22341
22359
  Seahorse::Client::Request.new(handlers, context)
22342
22360
  end
22343
22361
 
@@ -264,6 +264,9 @@ module Aws::RDS
264
264
  #
265
265
  # * If the source type is a DB cluster snapshot, a
266
266
  # `DBClusterSnapshotIdentifier` value must be supplied.
267
+ #
268
+ # * If the source type is an RDS Proxy, a `DBProxyName` value must be
269
+ # supplied.
267
270
  # @return [EventSubscription]
268
271
  def add_subscriber(options = {})
269
272
  options = options.merge(subscription_name: @name)
@@ -298,20 +301,24 @@ module Aws::RDS
298
301
  # @option options [String] :source_type
299
302
  # The type of source that is generating the events. For example, if you
300
303
  # want to be notified of events generated by a DB instance, you set this
301
- # parameter to `db-instance`. If this value isn't specified, all events
302
- # are returned.
304
+ # parameter to `db-instance`. For RDS Proxy events, specify `db-proxy`.
305
+ # If this value isn't specified, all events are returned.
303
306
  #
304
307
  # Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
305
- # `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
308
+ # `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
309
+ # `db-proxy`
306
310
  # @option options [Array<String>] :event_categories
307
311
  # A list of event categories for a particular source type (`SourceType`)
308
312
  # that you want to subscribe to. You can see a list of the categories
309
- # for a given source type in [Events][1] in the *Amazon RDS User Guide*
310
- # or by using the `DescribeEventCategories` operation.
313
+ # for a given source type in the "Amazon RDS event categories and event
314
+ # messages" section of the [ *Amazon RDS User Guide* ][1] or the [
315
+ # *Amazon Aurora User Guide* ][2]. You can also see this list by using
316
+ # the `DescribeEventCategories` operation.
311
317
  #
312
318
  #
313
319
  #
314
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
320
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.Messages.html
321
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Events.Messages.html
315
322
  # @option options [Array<String>] :source_ids
316
323
  # The list of identifiers of the event sources for which events are
317
324
  # returned. If not specified, then all sources are included in the
@@ -340,6 +347,9 @@ module Aws::RDS
340
347
  #
341
348
  # * If the source type is a DB cluster snapshot, a
342
349
  # `DBClusterSnapshotIdentifier` value must be supplied.
350
+ #
351
+ # * If the source type is an RDS Proxy, a `DBProxyName` value must be
352
+ # supplied.
343
353
  # @option options [Boolean] :enabled
344
354
  # A value that indicates whether to activate the subscription. If the
345
355
  # event notification subscription isn't activated, the subscription is
@@ -393,11 +403,12 @@ module Aws::RDS
393
403
  # @option options [String] :source_type
394
404
  # The type of source that is generating the events. For example, if you
395
405
  # want to be notified of events generated by a DB instance, you would
396
- # set this parameter to db-instance. If this value isn't specified, all
397
- # events are returned.
406
+ # set this parameter to db-instance. For RDS Proxy events, specify
407
+ # `db-proxy`. If this value isn't specified, all events are returned.
398
408
  #
399
409
  # Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
400
- # `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
410
+ # `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
411
+ # `db-proxy`
401
412
  # @option options [Array<String>] :event_categories
402
413
  # A list of event categories for a source type (`SourceType`) that you
403
414
  # want to subscribe to. You can see a list of the categories for a given
@@ -2096,20 +2096,24 @@ module Aws::RDS
2096
2096
  # @option options [String] :source_type
2097
2097
  # The type of source that is generating the events. For example, if you
2098
2098
  # want to be notified of events generated by a DB instance, you set this
2099
- # parameter to `db-instance`. If this value isn't specified, all events
2100
- # are returned.
2099
+ # parameter to `db-instance`. For RDS Proxy events, specify `db-proxy`.
2100
+ # If this value isn't specified, all events are returned.
2101
2101
  #
2102
2102
  # Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
2103
- # `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
2103
+ # `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
2104
+ # `db-proxy`
2104
2105
  # @option options [Array<String>] :event_categories
2105
2106
  # A list of event categories for a particular source type (`SourceType`)
2106
2107
  # that you want to subscribe to. You can see a list of the categories
2107
- # for a given source type in [Events][1] in the *Amazon RDS User Guide*
2108
- # or by using the `DescribeEventCategories` operation.
2108
+ # for a given source type in the "Amazon RDS event categories and event
2109
+ # messages" section of the [ *Amazon RDS User Guide* ][1] or the [
2110
+ # *Amazon Aurora User Guide* ][2]. You can also see this list by using
2111
+ # the `DescribeEventCategories` operation.
2109
2112
  #
2110
2113
  #
2111
2114
  #
2112
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
2115
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.Messages.html
2116
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Events.Messages.html
2113
2117
  # @option options [Array<String>] :source_ids
2114
2118
  # The list of identifiers of the event sources for which events are
2115
2119
  # returned. If not specified, then all sources are included in the
@@ -2138,6 +2142,9 @@ module Aws::RDS
2138
2142
  #
2139
2143
  # * If the source type is a DB cluster snapshot, a
2140
2144
  # `DBClusterSnapshotIdentifier` value must be supplied.
2145
+ #
2146
+ # * If the source type is an RDS Proxy, a `DBProxyName` value must be
2147
+ # supplied.
2141
2148
  # @option options [Boolean] :enabled
2142
2149
  # A value that indicates whether to activate the subscription. If the
2143
2150
  # event notification subscription isn't activated, the subscription is
@@ -2944,10 +2951,12 @@ module Aws::RDS
2944
2951
  # })
2945
2952
  # @param [Hash] options ({})
2946
2953
  # @option options [String] :source_type
2947
- # The type of source that is generating the events.
2954
+ # The type of source that is generating the events. For RDS Proxy
2955
+ # events, specify `db-proxy`.
2948
2956
  #
2949
2957
  # Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
2950
- # `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
2958
+ # `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
2959
+ # `db-proxy`
2951
2960
  # @option options [Array<Types::Filter>] :filters
2952
2961
  # This parameter isn't currently supported.
2953
2962
  # @return [EventCategoryMap::Collection]
@@ -3016,7 +3025,7 @@ module Aws::RDS
3016
3025
  #
3017
3026
  # events = rds.events({
3018
3027
  # source_identifier: "String",
3019
- # source_type: "db-instance", # accepts db-instance, db-parameter-group, db-security-group, db-snapshot, db-cluster, db-cluster-snapshot, custom-engine-version
3028
+ # source_type: "db-instance", # accepts db-instance, db-parameter-group, db-security-group, db-snapshot, db-cluster, db-cluster-snapshot, custom-engine-version, db-proxy
3020
3029
  # start_time: Time.now,
3021
3030
  # end_time: Time.now,
3022
3031
  # duration: 1,
@@ -3056,6 +3065,9 @@ module Aws::RDS
3056
3065
  # * If the source type is a DB cluster snapshot, a
3057
3066
  # `DBClusterSnapshotIdentifier` value must be supplied.
3058
3067
  #
3068
+ # * If the source type is an RDS Proxy, a `DBProxyName` value must be
3069
+ # supplied.
3070
+ #
3059
3071
  # * Can't end with a hyphen or contain two consecutive hyphens.
3060
3072
  # @option options [String] :source_type
3061
3073
  # The event source to retrieve events for. If no value is specified, all
@@ -248,6 +248,9 @@ module Aws::RDS
248
248
  #
249
249
  # * If the source type is a DB cluster snapshot, a
250
250
  # `DBClusterSnapshotIdentifier` value must be supplied.
251
+ #
252
+ # * If the source type is an RDS Proxy, a `DBProxyName` value must be
253
+ # supplied.
251
254
  # @return [String]
252
255
  #
253
256
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/AddSourceIdentifierToSubscriptionMessage AWS API Documentation
@@ -813,7 +816,7 @@ module Aws::RDS
813
816
  #
814
817
  # @!attribute [rw] max_connections_percent
815
818
  # The maximum size of the connection pool for each target in a target
816
- # group. For Aurora MySQL, it is expressed as a percentage of the
819
+ # group. The value is expressed as a percentage of the
817
820
  # `max_connections` setting for the RDS DB instance or Aurora DB
818
821
  # cluster used by the target group.
819
822
  #
@@ -824,12 +827,12 @@ module Aws::RDS
824
827
  #
825
828
  # @!attribute [rw] max_idle_connections_percent
826
829
  # Controls how actively the proxy closes idle database connections in
827
- # the connection pool. A high value enables the proxy to leave a high
828
- # percentage of idle connections open. A low value causes the proxy to
829
- # close idle client connections and return the underlying database
830
- # connections to the connection pool. For Aurora MySQL, it is
831
- # expressed as a percentage of the `max_connections` setting for the
832
- # RDS DB instance or Aurora DB cluster used by the target group.
830
+ # the connection pool. The value is expressed as a percentage of the
831
+ # `max_connections` setting for the RDS DB instance or Aurora DB
832
+ # cluster used by the target group. With a high value, the proxy
833
+ # leaves a high percentage of idle database connections open. A low
834
+ # value causes the proxy to close more idle connections and return
835
+ # them to the database.
833
836
  #
834
837
  # Default: 50
835
838
  #
@@ -885,19 +888,19 @@ module Aws::RDS
885
888
  #
886
889
  # @!attribute [rw] max_connections_percent
887
890
  # The maximum size of the connection pool for each target in a target
888
- # group. For Aurora MySQL, it is expressed as a percentage of the
891
+ # group. The value is expressed as a percentage of the
889
892
  # `max_connections` setting for the RDS DB instance or Aurora DB
890
893
  # cluster used by the target group.
891
894
  # @return [Integer]
892
895
  #
893
896
  # @!attribute [rw] max_idle_connections_percent
894
897
  # Controls how actively the proxy closes idle database connections in
895
- # the connection pool. A high value enables the proxy to leave a high
896
- # percentage of idle connections open. A low value causes the proxy to
897
- # close idle client connections and return the underlying database
898
- # connections to the connection pool. For Aurora MySQL, it is
899
- # expressed as a percentage of the `max_connections` setting for the
900
- # RDS DB instance or Aurora DB cluster used by the target group.
898
+ # the connection pool. The value is expressed as a percentage of the
899
+ # `max_connections` setting for the RDS DB instance or Aurora DB
900
+ # cluster used by the target group. With a high value, the proxy
901
+ # leaves a high percentage of idle database connections open. A low
902
+ # value causes the proxy to close more idle connections and return
903
+ # them to the database.
901
904
  # @return [Integer]
902
905
  #
903
906
  # @!attribute [rw] connection_borrow_timeout
@@ -5375,22 +5378,26 @@ module Aws::RDS
5375
5378
  # @!attribute [rw] source_type
5376
5379
  # The type of source that is generating the events. For example, if
5377
5380
  # you want to be notified of events generated by a DB instance, you
5378
- # set this parameter to `db-instance`. If this value isn't specified,
5379
- # all events are returned.
5381
+ # set this parameter to `db-instance`. For RDS Proxy events, specify
5382
+ # `db-proxy`. If this value isn't specified, all events are returned.
5380
5383
  #
5381
5384
  # Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group`
5382
- # \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
5385
+ # \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
5386
+ # `db-proxy`
5383
5387
  # @return [String]
5384
5388
  #
5385
5389
  # @!attribute [rw] event_categories
5386
5390
  # A list of event categories for a particular source type
5387
5391
  # (`SourceType`) that you want to subscribe to. You can see a list of
5388
- # the categories for a given source type in [Events][1] in the *Amazon
5389
- # RDS User Guide* or by using the `DescribeEventCategories` operation.
5392
+ # the categories for a given source type in the "Amazon RDS event
5393
+ # categories and event messages" section of the [ *Amazon RDS User
5394
+ # Guide* ][1] or the [ *Amazon Aurora User Guide* ][2]. You can also
5395
+ # see this list by using the `DescribeEventCategories` operation.
5390
5396
  #
5391
5397
  #
5392
5398
  #
5393
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
5399
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.Messages.html
5400
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Events.Messages.html
5394
5401
  # @return [Array<String>]
5395
5402
  #
5396
5403
  # @!attribute [rw] source_ids
@@ -5421,6 +5428,9 @@ module Aws::RDS
5421
5428
  #
5422
5429
  # * If the source type is a DB cluster snapshot, a
5423
5430
  # `DBClusterSnapshotIdentifier` value must be supplied.
5431
+ #
5432
+ # * If the source type is an RDS Proxy, a `DBProxyName` value must be
5433
+ # supplied.
5424
5434
  # @return [Array<String>]
5425
5435
  #
5426
5436
  # @!attribute [rw] enabled
@@ -12011,10 +12021,12 @@ module Aws::RDS
12011
12021
  # }
12012
12022
  #
12013
12023
  # @!attribute [rw] source_type
12014
- # The type of source that is generating the events.
12024
+ # The type of source that is generating the events. For RDS Proxy
12025
+ # events, specify `db-proxy`.
12015
12026
  #
12016
12027
  # Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group`
12017
- # \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
12028
+ # \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
12029
+ # `db-proxy`
12018
12030
  # @return [String]
12019
12031
  #
12020
12032
  # @!attribute [rw] filters
@@ -12088,7 +12100,7 @@ module Aws::RDS
12088
12100
  #
12089
12101
  # {
12090
12102
  # source_identifier: "String",
12091
- # source_type: "db-instance", # accepts db-instance, db-parameter-group, db-security-group, db-snapshot, db-cluster, db-cluster-snapshot, custom-engine-version
12103
+ # source_type: "db-instance", # accepts db-instance, db-parameter-group, db-security-group, db-snapshot, db-cluster, db-cluster-snapshot, custom-engine-version, db-proxy
12092
12104
  # start_time: Time.now,
12093
12105
  # end_time: Time.now,
12094
12106
  # duration: 1,
@@ -12130,6 +12142,9 @@ module Aws::RDS
12130
12142
  # * If the source type is a DB cluster snapshot, a
12131
12143
  # `DBClusterSnapshotIdentifier` value must be supplied.
12132
12144
  #
12145
+ # * If the source type is an RDS Proxy, a `DBProxyName` value must be
12146
+ # supplied.
12147
+ #
12133
12148
  # * Can't end with a hyphen or contain two consecutive hyphens.
12134
12149
  # @return [String]
12135
12150
  #
@@ -17002,11 +17017,13 @@ module Aws::RDS
17002
17017
  # @!attribute [rw] source_type
17003
17018
  # The type of source that is generating the events. For example, if
17004
17019
  # you want to be notified of events generated by a DB instance, you
17005
- # would set this parameter to db-instance. If this value isn't
17006
- # specified, all events are returned.
17020
+ # would set this parameter to db-instance. For RDS Proxy events,
17021
+ # specify `db-proxy`. If this value isn't specified, all events are
17022
+ # returned.
17007
17023
  #
17008
17024
  # Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group`
17009
- # \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
17025
+ # \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
17026
+ # `db-proxy`
17010
17027
  # @return [String]
17011
17028
  #
17012
17029
  # @!attribute [rw] event_categories
data/lib/aws-sdk-rds.rb CHANGED
@@ -74,6 +74,6 @@ require_relative 'aws-sdk-rds/customizations'
74
74
  # @!group service
75
75
  module Aws::RDS
76
76
 
77
- GEM_VERSION = '1.135.0'
77
+ GEM_VERSION = '1.136.0'
78
78
 
79
79
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.135.0
4
+ version: 1.136.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: 2022-01-03 00:00:00.000000000 Z
11
+ date: 2022-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4