aws-sdk-rds 1.114.0 → 1.119.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +707 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/lib/aws-sdk-rds.rb +2 -2
  6. data/lib/aws-sdk-rds/account_quota.rb +1 -1
  7. data/lib/aws-sdk-rds/certificate.rb +1 -1
  8. data/lib/aws-sdk-rds/client.rb +423 -61
  9. data/lib/aws-sdk-rds/client_api.rb +135 -1
  10. data/lib/aws-sdk-rds/db_cluster.rb +8 -10
  11. data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +42 -1
  12. data/lib/aws-sdk-rds/db_cluster_snapshot.rb +1 -1
  13. data/lib/aws-sdk-rds/db_engine.rb +1 -1
  14. data/lib/aws-sdk-rds/db_engine_version.rb +1 -1
  15. data/lib/aws-sdk-rds/db_instance.rb +38 -17
  16. data/lib/aws-sdk-rds/db_log_file.rb +1 -1
  17. data/lib/aws-sdk-rds/db_parameter_group.rb +55 -12
  18. data/lib/aws-sdk-rds/db_parameter_group_family.rb +1 -1
  19. data/lib/aws-sdk-rds/db_security_group.rb +1 -1
  20. data/lib/aws-sdk-rds/db_snapshot.rb +1 -1
  21. data/lib/aws-sdk-rds/db_snapshot_attribute.rb +1 -1
  22. data/lib/aws-sdk-rds/db_subnet_group.rb +1 -1
  23. data/lib/aws-sdk-rds/errors.rb +45 -1
  24. data/lib/aws-sdk-rds/event.rb +1 -1
  25. data/lib/aws-sdk-rds/event_category_map.rb +1 -1
  26. data/lib/aws-sdk-rds/event_subscription.rb +2 -3
  27. data/lib/aws-sdk-rds/option_group.rb +1 -1
  28. data/lib/aws-sdk-rds/option_group_option.rb +1 -1
  29. data/lib/aws-sdk-rds/parameter.rb +1 -1
  30. data/lib/aws-sdk-rds/pending_maintenance_action.rb +1 -1
  31. data/lib/aws-sdk-rds/reserved_db_instance.rb +1 -1
  32. data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +1 -1
  33. data/lib/aws-sdk-rds/resource.rb +73 -19
  34. data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +1 -1
  35. data/lib/aws-sdk-rds/types.rb +526 -51
  36. data/lib/aws-sdk-rds/waiters.rb +1 -1
  37. metadata +9 -7
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -1922,9 +1922,9 @@ module Aws::RDS
1922
1922
  # parameter.
1923
1923
  #
1924
1924
  # The default is a 30-minute window selected at random from an 8-hour
1925
- # block of time for each AWS Region. To see the time blocks available,
1926
- # see [ Adjusting the Preferred DB Cluster Maintenance Window][1] in
1927
- # the *Amazon Aurora User Guide.*
1925
+ # block of time for each AWS Region. To view the time blocks
1926
+ # available, see [ Backup window][1] in the *Amazon Aurora User
1927
+ # Guide.*
1928
1928
  #
1929
1929
  # Constraints:
1930
1930
  #
@@ -1938,7 +1938,7 @@ module Aws::RDS
1938
1938
  #
1939
1939
  #
1940
1940
  #
1941
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
1941
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
1942
1942
  # @return [String]
1943
1943
  #
1944
1944
  # @!attribute [rw] preferred_maintenance_window
@@ -2093,7 +2093,7 @@ module Aws::RDS
2093
2093
  #
2094
2094
  # **Aurora PostgreSQL**
2095
2095
  #
2096
- # Possible values are `postgresql` and `upgrade`.
2096
+ # Possible value is `postgresql`.
2097
2097
  #
2098
2098
  #
2099
2099
  #
@@ -2301,6 +2301,31 @@ module Aws::RDS
2301
2301
  # **Aurora PostgreSQL**
2302
2302
  #
2303
2303
  # Example: `aurora-postgresql9.6`
2304
+ #
2305
+ # To list all of the available parameter group families for a DB
2306
+ # engine, use the following command:
2307
+ #
2308
+ # `aws rds describe-db-engine-versions --query
2309
+ # "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
2310
+ #
2311
+ # For example, to list all of the available parameter group families
2312
+ # for the Aurora PostgreSQL DB engine, use the following command:
2313
+ #
2314
+ # `aws rds describe-db-engine-versions --query
2315
+ # "DBEngineVersions[].DBParameterGroupFamily" --engine
2316
+ # aurora-postgresql`
2317
+ #
2318
+ # <note markdown="1"> The output contains duplicates.
2319
+ #
2320
+ # </note>
2321
+ #
2322
+ # The following are the valid DB engine values:
2323
+ #
2324
+ # * `aurora` (for MySQL 5.6-compatible Aurora)
2325
+ #
2326
+ # * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
2327
+ #
2328
+ # * `aurora-postgresql`
2304
2329
  # @return [String]
2305
2330
  #
2306
2331
  # @!attribute [rw] description
@@ -2945,19 +2970,15 @@ module Aws::RDS
2945
2970
  # @!attribute [rw] preferred_backup_window
2946
2971
  # The daily time range during which automated backups are created if
2947
2972
  # automated backups are enabled, using the `BackupRetentionPeriod`
2948
- # parameter. For more information, see [The Backup Window][1] in the
2949
- # *Amazon RDS User Guide*.
2973
+ # parameter. The default is a 30-minute window selected at random from
2974
+ # an 8-hour block of time for each AWS Region. For more information,
2975
+ # see [Backup window][1] in the *Amazon RDS User Guide*.
2950
2976
  #
2951
2977
  # **Amazon Aurora**
2952
2978
  #
2953
2979
  # Not applicable. The daily time range for creating automated backups
2954
2980
  # is managed by the DB cluster.
2955
2981
  #
2956
- # The default is a 30-minute window selected at random from an 8-hour
2957
- # block of time for each AWS Region. To see the time blocks available,
2958
- # see [ Adjusting the Preferred DB Instance Maintenance Window][2] in
2959
- # the *Amazon RDS User Guide*.
2960
- #
2961
2982
  # Constraints:
2962
2983
  #
2963
2984
  # * Must be in the format `hh24:mi-hh24:mi`.
@@ -2971,7 +2992,6 @@ module Aws::RDS
2971
2992
  #
2972
2993
  #
2973
2994
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
2974
- # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow
2975
2995
  # @return [String]
2976
2996
  #
2977
2997
  # @!attribute [rw] port
@@ -4118,15 +4138,51 @@ module Aws::RDS
4118
4138
  # be applied only to a DB instance running a database engine and
4119
4139
  # engine version compatible with that DB parameter group family.
4120
4140
  #
4121
- # To list all of the available parameter group families, use the
4122
- # following command:
4141
+ # To list all of the available parameter group families for a DB
4142
+ # engine, use the following command:
4123
4143
  #
4124
4144
  # `aws rds describe-db-engine-versions --query
4125
- # "DBEngineVersions[].DBParameterGroupFamily"`
4145
+ # "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
4146
+ #
4147
+ # For example, to list all of the available parameter group families
4148
+ # for the MySQL DB engine, use the following command:
4149
+ #
4150
+ # `aws rds describe-db-engine-versions --query
4151
+ # "DBEngineVersions[].DBParameterGroupFamily" --engine mysql`
4126
4152
  #
4127
4153
  # <note markdown="1"> The output contains duplicates.
4128
4154
  #
4129
4155
  # </note>
4156
+ #
4157
+ # The following are the valid DB engine values:
4158
+ #
4159
+ # * `aurora` (for MySQL 5.6-compatible Aurora)
4160
+ #
4161
+ # * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
4162
+ #
4163
+ # * `aurora-postgresql`
4164
+ #
4165
+ # * `mariadb`
4166
+ #
4167
+ # * `mysql`
4168
+ #
4169
+ # * `oracle-ee`
4170
+ #
4171
+ # * `oracle-se2`
4172
+ #
4173
+ # * `oracle-se1`
4174
+ #
4175
+ # * `oracle-se`
4176
+ #
4177
+ # * `postgres`
4178
+ #
4179
+ # * `sqlserver-ee`
4180
+ #
4181
+ # * `sqlserver-se`
4182
+ #
4183
+ # * `sqlserver-ex`
4184
+ #
4185
+ # * `sqlserver-web`
4130
4186
  # @return [String]
4131
4187
  #
4132
4188
  # @!attribute [rw] description
@@ -4163,6 +4219,87 @@ module Aws::RDS
4163
4219
  include Aws::Structure
4164
4220
  end
4165
4221
 
4222
+ # @note When making an API call, you may pass CreateDBProxyEndpointRequest
4223
+ # data as a hash:
4224
+ #
4225
+ # {
4226
+ # db_proxy_name: "DBProxyName", # required
4227
+ # db_proxy_endpoint_name: "DBProxyEndpointName", # required
4228
+ # vpc_subnet_ids: ["String"], # required
4229
+ # vpc_security_group_ids: ["String"],
4230
+ # target_role: "READ_WRITE", # accepts READ_WRITE, READ_ONLY
4231
+ # tags: [
4232
+ # {
4233
+ # key: "String",
4234
+ # value: "String",
4235
+ # },
4236
+ # ],
4237
+ # }
4238
+ #
4239
+ # @!attribute [rw] db_proxy_name
4240
+ # The name of the DB proxy associated with the DB proxy endpoint that
4241
+ # you create.
4242
+ # @return [String]
4243
+ #
4244
+ # @!attribute [rw] db_proxy_endpoint_name
4245
+ # The name of the DB proxy endpoint to create.
4246
+ # @return [String]
4247
+ #
4248
+ # @!attribute [rw] vpc_subnet_ids
4249
+ # The VPC subnet IDs for the DB proxy endpoint that you create. You
4250
+ # can specify a different set of subnet IDs than for the original DB
4251
+ # proxy.
4252
+ # @return [Array<String>]
4253
+ #
4254
+ # @!attribute [rw] vpc_security_group_ids
4255
+ # The VPC security group IDs for the DB proxy endpoint that you
4256
+ # create. You can specify a different set of security group IDs than
4257
+ # for the original DB proxy. The default is the default security group
4258
+ # for the VPC.
4259
+ # @return [Array<String>]
4260
+ #
4261
+ # @!attribute [rw] target_role
4262
+ # A value that indicates whether the DB proxy endpoint can be used for
4263
+ # read/write or read-only operations. The default is `READ_WRITE`.
4264
+ # @return [String]
4265
+ #
4266
+ # @!attribute [rw] tags
4267
+ # A list of tags. For more information, see [Tagging Amazon RDS
4268
+ # Resources][1] in the *Amazon RDS User Guide.*
4269
+ #
4270
+ #
4271
+ #
4272
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
4273
+ # @return [Array<Types::Tag>]
4274
+ #
4275
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyEndpointRequest AWS API Documentation
4276
+ #
4277
+ class CreateDBProxyEndpointRequest < Struct.new(
4278
+ :db_proxy_name,
4279
+ :db_proxy_endpoint_name,
4280
+ :vpc_subnet_ids,
4281
+ :vpc_security_group_ids,
4282
+ :target_role,
4283
+ :tags)
4284
+ SENSITIVE = []
4285
+ include Aws::Structure
4286
+ end
4287
+
4288
+ # @!attribute [rw] db_proxy_endpoint
4289
+ # The `DBProxyEndpoint` object that is created by the API operation.
4290
+ # The DB proxy endpoint that you create might provide capabilities
4291
+ # such as read/write or read-only operations, or using a different VPC
4292
+ # than the proxy's default VPC.
4293
+ # @return [Types::DBProxyEndpoint]
4294
+ #
4295
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyEndpointResponse AWS API Documentation
4296
+ #
4297
+ class CreateDBProxyEndpointResponse < Struct.new(
4298
+ :db_proxy_endpoint)
4299
+ SENSITIVE = []
4300
+ include Aws::Structure
4301
+ end
4302
+
4166
4303
  # @note When making an API call, you may pass CreateDBProxyRequest
4167
4304
  # data as a hash:
4168
4305
  #
@@ -4544,8 +4681,7 @@ module Aws::RDS
4544
4681
  #
4545
4682
  # Constraints:
4546
4683
  #
4547
- # * If a `SourceIds` value is supplied, `SourceType` must also be
4548
- # provided.
4684
+ # * If `SourceIds` are supplied, `SourceType` must also be provided.
4549
4685
  #
4550
4686
  # * If the source type is a DB instance, a `DBInstanceIdentifier`
4551
4687
  # value must be supplied.
@@ -6177,12 +6313,12 @@ module Aws::RDS
6177
6313
  # @!attribute [rw] db_instance_status
6178
6314
  # Specifies the current state of this database.
6179
6315
  #
6180
- # For information about DB instance statuses, see [DB Instance
6181
- # Status][1] in the *Amazon RDS User Guide.*
6316
+ # For information about DB instance statuses, see [Viewing DB instance
6317
+ # status][1] in the *Amazon RDS User Guide.*
6182
6318
  #
6183
6319
  #
6184
6320
  #
6185
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Status.html
6321
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status
6186
6322
  # @return [String]
6187
6323
  #
6188
6324
  # @!attribute [rw] master_username
@@ -6580,6 +6716,10 @@ module Aws::RDS
6580
6716
  # [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
6581
6717
  # @return [Boolean]
6582
6718
  #
6719
+ # @!attribute [rw] aws_backup_recovery_point_arn
6720
+ # The Amazon Resource Name (ARN) of the recovery point in AWS Backup.
6721
+ # @return [String]
6722
+ #
6583
6723
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
6584
6724
  #
6585
6725
  class DBInstance < Struct.new(
@@ -6645,7 +6785,8 @@ module Aws::RDS
6645
6785
  :max_allocated_storage,
6646
6786
  :tag_list,
6647
6787
  :db_instance_automated_backups_replications,
6648
- :customer_owned_ip_enabled)
6788
+ :customer_owned_ip_enabled,
6789
+ :aws_backup_recovery_point_arn)
6649
6790
  SENSITIVE = []
6650
6791
  include Aws::Structure
6651
6792
  end
@@ -7176,6 +7317,10 @@ module Aws::RDS
7176
7317
  # Aurora.
7177
7318
  # @return [String]
7178
7319
  #
7320
+ # @!attribute [rw] vpc_id
7321
+ # Provides the VPC ID of the DB proxy.
7322
+ # @return [String]
7323
+ #
7179
7324
  # @!attribute [rw] vpc_security_group_ids
7180
7325
  # Provides a list of VPC security groups that the proxy belongs to.
7181
7326
  # @return [Array<String>]
@@ -7195,9 +7340,9 @@ module Aws::RDS
7195
7340
  # @return [String]
7196
7341
  #
7197
7342
  # @!attribute [rw] endpoint
7198
- # The endpoint that you can use to connect to the proxy. You include
7199
- # the endpoint value in the connection string for a database client
7200
- # application.
7343
+ # The endpoint that you can use to connect to the DB proxy. You
7344
+ # include the endpoint value in the connection string for a database
7345
+ # client application.
7201
7346
  # @return [String]
7202
7347
  #
7203
7348
  # @!attribute [rw] require_tls
@@ -7242,6 +7387,7 @@ module Aws::RDS
7242
7387
  :db_proxy_arn,
7243
7388
  :status,
7244
7389
  :engine_family,
7390
+ :vpc_id,
7245
7391
  :vpc_security_group_ids,
7246
7392
  :vpc_subnet_ids,
7247
7393
  :auth,
@@ -7263,6 +7409,109 @@ module Aws::RDS
7263
7409
  #
7264
7410
  class DBProxyAlreadyExistsFault < Aws::EmptyStructure; end
7265
7411
 
7412
+ # The data structure representing an endpoint associated with a DB
7413
+ # proxy. RDS automatically creates one endpoint for each DB proxy. For
7414
+ # Aurora DB clusters, you can associate additional endpoints with the
7415
+ # same DB proxy. These endpoints can be read/write or read-only. They
7416
+ # can also reside in different VPCs than the associated DB proxy.
7417
+ #
7418
+ # This data type is used as a response element in the
7419
+ # `DescribeDBProxyEndpoints` operation.
7420
+ #
7421
+ # @!attribute [rw] db_proxy_endpoint_name
7422
+ # The name for the DB proxy endpoint. An identifier must begin with a
7423
+ # letter and must contain only ASCII letters, digits, and hyphens; it
7424
+ # can't end with a hyphen or contain two consecutive hyphens.
7425
+ # @return [String]
7426
+ #
7427
+ # @!attribute [rw] db_proxy_endpoint_arn
7428
+ # The Amazon Resource Name (ARN) for the DB proxy endpoint.
7429
+ # @return [String]
7430
+ #
7431
+ # @!attribute [rw] db_proxy_name
7432
+ # The identifier for the DB proxy that is associated with this DB
7433
+ # proxy endpoint.
7434
+ # @return [String]
7435
+ #
7436
+ # @!attribute [rw] status
7437
+ # The current status of this DB proxy endpoint. A status of
7438
+ # `available` means the endpoint is ready to handle requests. Other
7439
+ # values indicate that you must wait for the endpoint to be ready, or
7440
+ # take some action to resolve an issue.
7441
+ # @return [String]
7442
+ #
7443
+ # @!attribute [rw] vpc_id
7444
+ # Provides the VPC ID of the DB proxy endpoint.
7445
+ # @return [String]
7446
+ #
7447
+ # @!attribute [rw] vpc_security_group_ids
7448
+ # Provides a list of VPC security groups that the DB proxy endpoint
7449
+ # belongs to.
7450
+ # @return [Array<String>]
7451
+ #
7452
+ # @!attribute [rw] vpc_subnet_ids
7453
+ # The EC2 subnet IDs for the DB proxy endpoint.
7454
+ # @return [Array<String>]
7455
+ #
7456
+ # @!attribute [rw] endpoint
7457
+ # The endpoint that you can use to connect to the DB proxy. You
7458
+ # include the endpoint value in the connection string for a database
7459
+ # client application.
7460
+ # @return [String]
7461
+ #
7462
+ # @!attribute [rw] created_date
7463
+ # The date and time when the DB proxy endpoint was first created.
7464
+ # @return [Time]
7465
+ #
7466
+ # @!attribute [rw] target_role
7467
+ # A value that indicates whether the DB proxy endpoint can be used for
7468
+ # read/write or read-only operations.
7469
+ # @return [String]
7470
+ #
7471
+ # @!attribute [rw] is_default
7472
+ # A value that indicates whether this endpoint is the default endpoint
7473
+ # for the associated DB proxy. Default DB proxy endpoints always have
7474
+ # read/write capability. Other endpoints that you associate with the
7475
+ # DB proxy can be either read/write or read-only.
7476
+ # @return [Boolean]
7477
+ #
7478
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyEndpoint AWS API Documentation
7479
+ #
7480
+ class DBProxyEndpoint < Struct.new(
7481
+ :db_proxy_endpoint_name,
7482
+ :db_proxy_endpoint_arn,
7483
+ :db_proxy_name,
7484
+ :status,
7485
+ :vpc_id,
7486
+ :vpc_security_group_ids,
7487
+ :vpc_subnet_ids,
7488
+ :endpoint,
7489
+ :created_date,
7490
+ :target_role,
7491
+ :is_default)
7492
+ SENSITIVE = []
7493
+ include Aws::Structure
7494
+ end
7495
+
7496
+ # The specified DB proxy endpoint name must be unique for all DB proxy
7497
+ # endpoints owned by your AWS account in the specified AWS Region.
7498
+ #
7499
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyEndpointAlreadyExistsFault AWS API Documentation
7500
+ #
7501
+ class DBProxyEndpointAlreadyExistsFault < Aws::EmptyStructure; end
7502
+
7503
+ # The DB proxy endpoint doesn't exist.
7504
+ #
7505
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyEndpointNotFoundFault AWS API Documentation
7506
+ #
7507
+ class DBProxyEndpointNotFoundFault < Aws::EmptyStructure; end
7508
+
7509
+ # The DB proxy already has the maximum number of endpoints.
7510
+ #
7511
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyEndpointQuotaExceededFault AWS API Documentation
7512
+ #
7513
+ class DBProxyEndpointQuotaExceededFault < Aws::EmptyStructure; end
7514
+
7266
7515
  # The specified proxy name doesn't correspond to a proxy owned by your
7267
7516
  # AWS account in the specified AWS Region.
7268
7517
  #
@@ -7315,6 +7564,11 @@ module Aws::RDS
7315
7564
  # Aurora DB cluster, that the target represents.
7316
7565
  # @return [String]
7317
7566
  #
7567
+ # @!attribute [rw] role
7568
+ # A value that indicates whether the target of the proxy can be used
7569
+ # for read/write or read-only operations.
7570
+ # @return [String]
7571
+ #
7318
7572
  # @!attribute [rw] target_health
7319
7573
  # Information about the connection health of the RDS Proxy target.
7320
7574
  # @return [Types::TargetHealth]
@@ -7328,6 +7582,7 @@ module Aws::RDS
7328
7582
  :rds_resource_id,
7329
7583
  :port,
7330
7584
  :type,
7585
+ :role,
7331
7586
  :target_health)
7332
7587
  SENSITIVE = []
7333
7588
  include Aws::Structure
@@ -8290,6 +8545,38 @@ module Aws::RDS
8290
8545
  include Aws::Structure
8291
8546
  end
8292
8547
 
8548
+ # @note When making an API call, you may pass DeleteDBProxyEndpointRequest
8549
+ # data as a hash:
8550
+ #
8551
+ # {
8552
+ # db_proxy_endpoint_name: "DBProxyEndpointName", # required
8553
+ # }
8554
+ #
8555
+ # @!attribute [rw] db_proxy_endpoint_name
8556
+ # The name of the DB proxy endpoint to delete.
8557
+ # @return [String]
8558
+ #
8559
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBProxyEndpointRequest AWS API Documentation
8560
+ #
8561
+ class DeleteDBProxyEndpointRequest < Struct.new(
8562
+ :db_proxy_endpoint_name)
8563
+ SENSITIVE = []
8564
+ include Aws::Structure
8565
+ end
8566
+
8567
+ # @!attribute [rw] db_proxy_endpoint
8568
+ # The data structure representing the details of the DB proxy endpoint
8569
+ # that you delete.
8570
+ # @return [Types::DBProxyEndpoint]
8571
+ #
8572
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBProxyEndpointResponse AWS API Documentation
8573
+ #
8574
+ class DeleteDBProxyEndpointResponse < Struct.new(
8575
+ :db_proxy_endpoint)
8576
+ SENSITIVE = []
8577
+ include Aws::Structure
8578
+ end
8579
+
8293
8580
  # @note When making an API call, you may pass DeleteDBProxyRequest
8294
8581
  # data as a hash:
8295
8582
  #
@@ -9825,7 +10112,9 @@ module Aws::RDS
9825
10112
  # }
9826
10113
  #
9827
10114
  # @!attribute [rw] db_proxy_name
9828
- # The name of the DB proxy.
10115
+ # The name of the DB proxy. If you omit this parameter, the output
10116
+ # includes information about all DB proxies owned by your AWS account
10117
+ # ID.
9829
10118
  # @return [String]
9830
10119
  #
9831
10120
  # @!attribute [rw] filters
@@ -9880,6 +10169,86 @@ module Aws::RDS
9880
10169
  include Aws::Structure
9881
10170
  end
9882
10171
 
10172
+ # @note When making an API call, you may pass DescribeDBProxyEndpointsRequest
10173
+ # data as a hash:
10174
+ #
10175
+ # {
10176
+ # db_proxy_name: "DBProxyName",
10177
+ # db_proxy_endpoint_name: "DBProxyEndpointName",
10178
+ # filters: [
10179
+ # {
10180
+ # name: "String", # required
10181
+ # values: ["String"], # required
10182
+ # },
10183
+ # ],
10184
+ # marker: "String",
10185
+ # max_records: 1,
10186
+ # }
10187
+ #
10188
+ # @!attribute [rw] db_proxy_name
10189
+ # The name of the DB proxy whose endpoints you want to describe. If
10190
+ # you omit this parameter, the output includes information about all
10191
+ # DB proxy endpoints associated with all your DB proxies.
10192
+ # @return [String]
10193
+ #
10194
+ # @!attribute [rw] db_proxy_endpoint_name
10195
+ # The name of a DB proxy endpoint to describe. If you omit this
10196
+ # parameter, the output includes information about all DB proxy
10197
+ # endpoints associated with the specified proxy.
10198
+ # @return [String]
10199
+ #
10200
+ # @!attribute [rw] filters
10201
+ # This parameter is not currently supported.
10202
+ # @return [Array<Types::Filter>]
10203
+ #
10204
+ # @!attribute [rw] marker
10205
+ # An optional pagination token provided by a previous request. If this
10206
+ # parameter is specified, the response includes only records beyond
10207
+ # the marker, up to the value specified by `MaxRecords`.
10208
+ # @return [String]
10209
+ #
10210
+ # @!attribute [rw] max_records
10211
+ # The maximum number of records to include in the response. If more
10212
+ # records exist than the specified `MaxRecords` value, a pagination
10213
+ # token called a marker is included in the response so that the
10214
+ # remaining results can be retrieved.
10215
+ #
10216
+ # Default: 100
10217
+ #
10218
+ # Constraints: Minimum 20, maximum 100.
10219
+ # @return [Integer]
10220
+ #
10221
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyEndpointsRequest AWS API Documentation
10222
+ #
10223
+ class DescribeDBProxyEndpointsRequest < Struct.new(
10224
+ :db_proxy_name,
10225
+ :db_proxy_endpoint_name,
10226
+ :filters,
10227
+ :marker,
10228
+ :max_records)
10229
+ SENSITIVE = []
10230
+ include Aws::Structure
10231
+ end
10232
+
10233
+ # @!attribute [rw] db_proxy_endpoints
10234
+ # The list of `ProxyEndpoint` objects returned by the API operation.
10235
+ # @return [Array<Types::DBProxyEndpoint>]
10236
+ #
10237
+ # @!attribute [rw] marker
10238
+ # An optional pagination token provided by a previous request. If this
10239
+ # parameter is specified, the response includes only records beyond
10240
+ # the marker, up to the value specified by `MaxRecords`.
10241
+ # @return [String]
10242
+ #
10243
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyEndpointsResponse AWS API Documentation
10244
+ #
10245
+ class DescribeDBProxyEndpointsResponse < Struct.new(
10246
+ :db_proxy_endpoints,
10247
+ :marker)
10248
+ SENSITIVE = []
10249
+ include Aws::Structure
10250
+ end
10251
+
9883
10252
  # @note When making an API call, you may pass DescribeDBProxyTargetGroupsRequest
9884
10253
  # data as a hash:
9885
10254
  #
@@ -12786,6 +13155,13 @@ module Aws::RDS
12786
13155
  #
12787
13156
  class InvalidDBParameterGroupStateFault < Aws::EmptyStructure; end
12788
13157
 
13158
+ # You can't perform this operation while the DB proxy endpoint is in a
13159
+ # particular state.
13160
+ #
13161
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidDBProxyEndpointStateFault AWS API Documentation
13162
+ #
13163
+ class InvalidDBProxyEndpointStateFault < Aws::EmptyStructure; end
13164
+
12789
13165
  # The requested operation can't be performed while the proxy is in this
12790
13166
  # state.
12791
13167
  #
@@ -13248,9 +13624,9 @@ module Aws::RDS
13248
13624
  # parameter.
13249
13625
  #
13250
13626
  # The default is a 30-minute window selected at random from an 8-hour
13251
- # block of time for each AWS Region. To see the time blocks available,
13252
- # see [ Adjusting the Preferred DB Cluster Maintenance Window][1] in
13253
- # the *Amazon Aurora User Guide.*
13627
+ # block of time for each AWS Region. To view the time blocks
13628
+ # available, see [ Backup window][1] in the *Amazon Aurora User
13629
+ # Guide.*
13254
13630
  #
13255
13631
  # Constraints:
13256
13632
  #
@@ -13264,7 +13640,7 @@ module Aws::RDS
13264
13640
  #
13265
13641
  #
13266
13642
  #
13267
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
13643
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
13268
13644
  # @return [String]
13269
13645
  #
13270
13646
  # @!attribute [rw] preferred_maintenance_window
@@ -13507,6 +13883,22 @@ module Aws::RDS
13507
13883
  #
13508
13884
  # @!attribute [rw] parameters
13509
13885
  # A list of parameters in the DB cluster parameter group to modify.
13886
+ #
13887
+ # Valid Values (for the application method): `immediate |
13888
+ # pending-reboot`
13889
+ #
13890
+ # <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
13891
+ # can use the `pending-reboot` value for both dynamic and static
13892
+ # parameters.
13893
+ #
13894
+ # When the application method is `immediate`, changes to dynamic
13895
+ # parameters are applied immediately to the DB clusters associated
13896
+ # with the parameter group. When the application method is
13897
+ # `pending-reboot`, changes to dynamic and static parameters are
13898
+ # applied after a reboot without failover to the DB clusters
13899
+ # associated with the parameter group.
13900
+ #
13901
+ # </note>
13510
13902
  # @return [Array<Types::Parameter>]
13511
13903
  #
13512
13904
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterParameterGroupMessage AWS API Documentation
@@ -13670,6 +14062,7 @@ module Aws::RDS
13670
14062
  # certificate_rotation_restart: false,
13671
14063
  # replica_mode: "open-read-only", # accepts open-read-only, mounted
13672
14064
  # enable_customer_owned_ip: false,
14065
+ # aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
13673
14066
  # }
13674
14067
  #
13675
14068
  # @!attribute [rw] db_instance_identifier
@@ -13849,10 +14242,14 @@ module Aws::RDS
13849
14242
  # parameter to a positive number enables backups. Setting this
13850
14243
  # parameter to 0 disables automated backups.
13851
14244
  #
13852
- # Changing this parameter can result in an outage if you change from 0
13853
- # to a non-zero value or from a non-zero value to 0. These changes are
13854
- # applied during the next maintenance window unless the
13855
- # `ApplyImmediately` parameter is enabled for this request. If you
14245
+ # <note markdown="1"> Enabling and disabling backups can result in a brief I/O suspension
14246
+ # that lasts from a few seconds to a few minutes, depending on the
14247
+ # size and class of your DB instance.
14248
+ #
14249
+ # </note>
14250
+ #
14251
+ # These changes are applied during the next maintenance window unless
14252
+ # the `ApplyImmediately` parameter is enabled for this request. If you
13856
14253
  # change the parameter from one non-zero value to another non-zero
13857
14254
  # value, the change is asynchronously applied as soon as possible.
13858
14255
  #
@@ -13882,7 +14279,9 @@ module Aws::RDS
13882
14279
  # automated backups are enabled, as determined by the
13883
14280
  # `BackupRetentionPeriod` parameter. Changing this parameter doesn't
13884
14281
  # result in an outage and the change is asynchronously applied as soon
13885
- # as possible.
14282
+ # as possible. The default is a 30-minute window selected at random
14283
+ # from an 8-hour block of time for each AWS Region. For more
14284
+ # information, see [Backup window][1] in the *Amazon RDS User Guide.*
13886
14285
  #
13887
14286
  # **Amazon Aurora**
13888
14287
  #
@@ -13899,6 +14298,10 @@ module Aws::RDS
13899
14298
  # * Must not conflict with the preferred maintenance window
13900
14299
  #
13901
14300
  # * Must be at least 30 minutes
14301
+ #
14302
+ #
14303
+ #
14304
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
13902
14305
  # @return [String]
13903
14306
  #
13904
14307
  # @!attribute [rw] preferred_maintenance_window
@@ -13912,6 +14315,9 @@ module Aws::RDS
13912
14315
  # current time, there must be at least 30 minutes between the current
13913
14316
  # time and end of the window to ensure pending changes are applied.
13914
14317
  #
14318
+ # For more information, see [Amazon RDS Maintenance Window][1] in the
14319
+ # *Amazon RDS User Guide.*
14320
+ #
13915
14321
  # Default: Uses existing setting
13916
14322
  #
13917
14323
  # Format: ddd:hh24:mi-ddd:hh24:mi
@@ -13919,6 +14325,10 @@ module Aws::RDS
13919
14325
  # Valid Days: Mon \| Tue \| Wed \| Thu \| Fri \| Sat \| Sun
13920
14326
  #
13921
14327
  # Constraints: Must be at least 30 minutes
14328
+ #
14329
+ #
14330
+ #
14331
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
13922
14332
  # @return [String]
13923
14333
  #
13924
14334
  # @!attribute [rw] multi_az
@@ -14392,6 +14802,10 @@ module Aws::RDS
14392
14802
  # [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
14393
14803
  # @return [Boolean]
14394
14804
  #
14805
+ # @!attribute [rw] aws_backup_recovery_point_arn
14806
+ # The Amazon Resource Name (ARN) of the recovery point in AWS Backup.
14807
+ # @return [String]
14808
+ #
14395
14809
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
14396
14810
  #
14397
14811
  class ModifyDBInstanceMessage < Struct.new(
@@ -14438,7 +14852,8 @@ module Aws::RDS
14438
14852
  :max_allocated_storage,
14439
14853
  :certificate_rotation_restart,
14440
14854
  :replica_mode,
14441
- :enable_customer_owned_ip)
14855
+ :enable_customer_owned_ip,
14856
+ :aws_backup_recovery_point_arn)
14442
14857
  SENSITIVE = []
14443
14858
  include Aws::Structure
14444
14859
  end
@@ -14492,18 +14907,25 @@ module Aws::RDS
14492
14907
  # @return [String]
14493
14908
  #
14494
14909
  # @!attribute [rw] parameters
14495
- # An array of parameter names, values, and the apply method for the
14496
- # parameter update. At least one parameter name, value, and apply
14497
- # method must be supplied; later arguments are optional. A maximum of
14498
- # 20 parameters can be modified in a single request.
14910
+ # An array of parameter names, values, and the application methods for
14911
+ # the parameter update. At least one parameter name, value, and
14912
+ # application method method must be supplied; later arguments are
14913
+ # optional. A maximum of 20 parameters can be modified in a single
14914
+ # request.
14499
14915
  #
14500
14916
  # Valid Values (for the application method): `immediate |
14501
14917
  # pending-reboot`
14502
14918
  #
14503
- # <note markdown="1"> You can use the immediate value with dynamic parameters only. You
14504
- # can use the pending-reboot value for both dynamic and static
14505
- # parameters, and changes are applied when you reboot the DB instance
14506
- # without failover.
14919
+ # <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
14920
+ # can use the `pending-reboot` value for both dynamic and static
14921
+ # parameters.
14922
+ #
14923
+ # When the application method is `immediate`, changes to dynamic
14924
+ # parameters are applied immediately to the DB instances associated
14925
+ # with the parameter group. When the application method is
14926
+ # `pending-reboot`, changes to dynamic and static parameters are
14927
+ # applied after a reboot without failover to the DB instances
14928
+ # associated with the parameter group.
14507
14929
  #
14508
14930
  # </note>
14509
14931
  # @return [Array<Types::Parameter>]
@@ -14517,6 +14939,57 @@ module Aws::RDS
14517
14939
  include Aws::Structure
14518
14940
  end
14519
14941
 
14942
+ # @note When making an API call, you may pass ModifyDBProxyEndpointRequest
14943
+ # data as a hash:
14944
+ #
14945
+ # {
14946
+ # db_proxy_endpoint_name: "DBProxyEndpointName", # required
14947
+ # new_db_proxy_endpoint_name: "DBProxyEndpointName",
14948
+ # vpc_security_group_ids: ["String"],
14949
+ # }
14950
+ #
14951
+ # @!attribute [rw] db_proxy_endpoint_name
14952
+ # The name of the DB proxy sociated with the DB proxy endpoint that
14953
+ # you want to modify.
14954
+ # @return [String]
14955
+ #
14956
+ # @!attribute [rw] new_db_proxy_endpoint_name
14957
+ # The new identifier for the `DBProxyEndpoint`. An identifier must
14958
+ # begin with a letter and must contain only ASCII letters, digits, and
14959
+ # hyphens; it can't end with a hyphen or contain two consecutive
14960
+ # hyphens.
14961
+ # @return [String]
14962
+ #
14963
+ # @!attribute [rw] vpc_security_group_ids
14964
+ # The VPC security group IDs for the DB proxy endpoint. When the DB
14965
+ # proxy endpoint uses a different VPC than the original proxy, you
14966
+ # also specify a different set of security group IDs than for the
14967
+ # original proxy.
14968
+ # @return [Array<String>]
14969
+ #
14970
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxyEndpointRequest AWS API Documentation
14971
+ #
14972
+ class ModifyDBProxyEndpointRequest < Struct.new(
14973
+ :db_proxy_endpoint_name,
14974
+ :new_db_proxy_endpoint_name,
14975
+ :vpc_security_group_ids)
14976
+ SENSITIVE = []
14977
+ include Aws::Structure
14978
+ end
14979
+
14980
+ # @!attribute [rw] db_proxy_endpoint
14981
+ # The `DBProxyEndpoint` object representing the new settings for the
14982
+ # DB proxy endpoint.
14983
+ # @return [Types::DBProxyEndpoint]
14984
+ #
14985
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxyEndpointResponse AWS API Documentation
14986
+ #
14987
+ class ModifyDBProxyEndpointResponse < Struct.new(
14988
+ :db_proxy_endpoint)
14989
+ SENSITIVE = []
14990
+ include Aws::Structure
14991
+ end
14992
+
14520
14993
  # @note When making an API call, you may pass ModifyDBProxyRequest
14521
14994
  # data as a hash:
14522
14995
  #
@@ -17331,9 +17804,9 @@ module Aws::RDS
17331
17804
  # parameter.
17332
17805
  #
17333
17806
  # The default is a 30-minute window selected at random from an 8-hour
17334
- # block of time for each AWS Region. To see the time blocks available,
17335
- # see [ Adjusting the Preferred Maintenance Window][1] in the *Amazon
17336
- # Aurora User Guide.*
17807
+ # block of time for each AWS Region. To view the time blocks
17808
+ # available, see [ Backup window][1] in the *Amazon Aurora User
17809
+ # Guide.*
17337
17810
  #
17338
17811
  # Constraints:
17339
17812
  #
@@ -17347,7 +17820,7 @@ module Aws::RDS
17347
17820
  #
17348
17821
  #
17349
17822
  #
17350
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
17823
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
17351
17824
  # @return [String]
17352
17825
  #
17353
17826
  # @!attribute [rw] preferred_maintenance_window
@@ -18797,8 +19270,8 @@ module Aws::RDS
18797
19270
  #
18798
19271
  # @!attribute [rw] preferred_backup_window
18799
19272
  # The time range each day during which automated backups are created
18800
- # if automated backups are enabled. For more information, see [The
18801
- # Backup Window][1] in the *Amazon RDS User Guide.*
19273
+ # if automated backups are enabled. For more information, see [Backup
19274
+ # window][1] in the *Amazon RDS User Guide.*
18802
19275
  #
18803
19276
  # Constraints:
18804
19277
  #
@@ -19778,6 +20251,8 @@ module Aws::RDS
19778
20251
  # @!attribute [rw] seconds_until_auto_pause
19779
20252
  # The time, in seconds, before an Aurora DB cluster in `serverless`
19780
20253
  # mode is paused.
20254
+ #
20255
+ # Specify a value between 300 and 86,400 seconds.
19781
20256
  # @return [Integer]
19782
20257
  #
19783
20258
  # @!attribute [rw] timeout_action