aws-sdk-rds 1.21.0 → 1.22.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 44aeac6d5389d68a27ef0a131203a6abd55d5ac3
4
- data.tar.gz: 41abc6771d314526395b9f758085fca16e0d6577
3
+ metadata.gz: def0c408ed5452e6272a0bb4286ef76c9b443794
4
+ data.tar.gz: cbf58cc577a2e121178f7e7fa24633b082a3d19e
5
5
  SHA512:
6
- metadata.gz: b7a68f33cfb4485332f72a590d96c7e59e14fe72ad91a539b4d282650e35d6a1cd96bb7d0f027038e210ef4ce5bec6901fffb11e9dcb8047ecf9ab373296dff6
7
- data.tar.gz: b6c08083170691b36ec5dbb7e5558e6bab61162e7a029ee926cef70ffd0af827843fe30f8fcf6e386ea04718900e4dca89fb2c3225c63ce14410573869e7651c
6
+ metadata.gz: babf081beefc649153f528f57fc0f71b4afe0a577ad19fddd6191999bcac6c72f6fce841da66b17e8c48611626e45e476876fcafbea3b2a8535f69a60b1acfb8
7
+ data.tar.gz: 68cf181afb01bcaad4224337c5368d6813b660d245c8b231c21d93c66b7d4125c7091d2300666c59de23acb19cbb7c2f3f3df2b79bcc06c878246e75bdc9ff03
@@ -68,6 +68,6 @@ require_relative 'aws-sdk-rds/customizations'
68
68
  # @service
69
69
  module Aws::RDS
70
70
 
71
- GEM_VERSION = '1.21.0'
71
+ GEM_VERSION = '1.22.0'
72
72
 
73
73
  end
@@ -2824,6 +2824,10 @@ module Aws::RDS
2824
2824
  # data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
2825
2825
  # identifier, or the KMS key alias for the KMS encryption key.
2826
2826
  #
2827
+ # @option params [Integer] :performance_insights_retention_period
2828
+ # The amount of time, in days, to retain Performance Insights data.
2829
+ # Valid values are 7 or 731 (2 years).
2830
+ #
2827
2831
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
2828
2832
  # The list of log types that need to be enabled for exporting to
2829
2833
  # CloudWatch Logs.
@@ -2905,6 +2909,7 @@ module Aws::RDS
2905
2909
  # enable_iam_database_authentication: false,
2906
2910
  # enable_performance_insights: false,
2907
2911
  # performance_insights_kms_key_id: "String",
2912
+ # performance_insights_retention_period: 1,
2908
2913
  # enable_cloudwatch_logs_exports: ["String"],
2909
2914
  # processor_features: [
2910
2915
  # {
@@ -3014,6 +3019,7 @@ module Aws::RDS
3014
3019
  # resp.db_instance.iam_database_authentication_enabled #=> Boolean
3015
3020
  # resp.db_instance.performance_insights_enabled #=> Boolean
3016
3021
  # resp.db_instance.performance_insights_kms_key_id #=> String
3022
+ # resp.db_instance.performance_insights_retention_period #=> Integer
3017
3023
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
3018
3024
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
3019
3025
  # resp.db_instance.processor_features #=> Array
@@ -3332,6 +3338,10 @@ module Aws::RDS
3332
3338
  # data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
3333
3339
  # identifier, or the KMS key alias for the KMS encryption key.
3334
3340
  #
3341
+ # @option params [Integer] :performance_insights_retention_period
3342
+ # The amount of time, in days, to retain Performance Insights data.
3343
+ # Valid values are 7 or 731 (2 years).
3344
+ #
3335
3345
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
3336
3346
  # The list of logs that the new DB instance is to export to CloudWatch
3337
3347
  # Logs.
@@ -3408,6 +3418,7 @@ module Aws::RDS
3408
3418
  # enable_iam_database_authentication: false,
3409
3419
  # enable_performance_insights: false,
3410
3420
  # performance_insights_kms_key_id: "String",
3421
+ # performance_insights_retention_period: 1,
3411
3422
  # enable_cloudwatch_logs_exports: ["String"],
3412
3423
  # processor_features: [
3413
3424
  # {
@@ -3519,6 +3530,7 @@ module Aws::RDS
3519
3530
  # resp.db_instance.iam_database_authentication_enabled #=> Boolean
3520
3531
  # resp.db_instance.performance_insights_enabled #=> Boolean
3521
3532
  # resp.db_instance.performance_insights_kms_key_id #=> String
3533
+ # resp.db_instance.performance_insights_retention_period #=> Integer
3522
3534
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
3523
3535
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
3524
3536
  # resp.db_instance.processor_features #=> Array
@@ -3583,6 +3595,16 @@ module Aws::RDS
3583
3595
  # applied only to a DB instance running a database engine and engine
3584
3596
  # version compatible with that DB parameter group family.
3585
3597
  #
3598
+ # To list all of the available parameter group families, use the
3599
+ # following command:
3600
+ #
3601
+ # `aws rds describe-db-engine-versions --query
3602
+ # "DBEngineVersions[].DBParameterGroupFamily"`
3603
+ #
3604
+ # <note markdown="1"> The output contains duplicates.
3605
+ #
3606
+ # </note>
3607
+ #
3586
3608
  # @option params [required, String] :description
3587
3609
  # The description for the DB parameter group.
3588
3610
  #
@@ -4682,6 +4704,7 @@ module Aws::RDS
4682
4704
  # resp.db_instance.iam_database_authentication_enabled #=> Boolean
4683
4705
  # resp.db_instance.performance_insights_enabled #=> Boolean
4684
4706
  # resp.db_instance.performance_insights_kms_key_id #=> String
4707
+ # resp.db_instance.performance_insights_retention_period #=> Integer
4685
4708
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
4686
4709
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
4687
4710
  # resp.db_instance.processor_features #=> Array
@@ -6125,6 +6148,7 @@ module Aws::RDS
6125
6148
  # resp.db_instances[0].iam_database_authentication_enabled #=> Boolean
6126
6149
  # resp.db_instances[0].performance_insights_enabled #=> Boolean
6127
6150
  # resp.db_instances[0].performance_insights_kms_key_id #=> String
6151
+ # resp.db_instances[0].performance_insights_retention_period #=> Integer
6128
6152
  # resp.db_instances[0].enabled_cloudwatch_logs_exports #=> Array
6129
6153
  # resp.db_instances[0].enabled_cloudwatch_logs_exports[0] #=> String
6130
6154
  # resp.db_instances[0].processor_features #=> Array
@@ -9452,6 +9476,10 @@ module Aws::RDS
9452
9476
  # data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
9453
9477
  # identifier, or the KMS key alias for the KMS encryption key.
9454
9478
  #
9479
+ # @option params [Integer] :performance_insights_retention_period
9480
+ # The amount of time, in days, to retain Performance Insights data.
9481
+ # Valid values are 7 or 731 (2 years).
9482
+ #
9455
9483
  # @option params [Types::CloudwatchLogsExportConfiguration] :cloudwatch_logs_export_configuration
9456
9484
  # The configuration setting for the log types to be enabled for export
9457
9485
  # to CloudWatch Logs for a specific DB instance.
@@ -9528,6 +9556,7 @@ module Aws::RDS
9528
9556
  # enable_iam_database_authentication: false,
9529
9557
  # enable_performance_insights: false,
9530
9558
  # performance_insights_kms_key_id: "String",
9559
+ # performance_insights_retention_period: 1,
9531
9560
  # cloudwatch_logs_export_configuration: {
9532
9561
  # enable_log_types: ["String"],
9533
9562
  # disable_log_types: ["String"],
@@ -9641,6 +9670,7 @@ module Aws::RDS
9641
9670
  # resp.db_instance.iam_database_authentication_enabled #=> Boolean
9642
9671
  # resp.db_instance.performance_insights_enabled #=> Boolean
9643
9672
  # resp.db_instance.performance_insights_kms_key_id #=> String
9673
+ # resp.db_instance.performance_insights_retention_period #=> Integer
9644
9674
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
9645
9675
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
9646
9676
  # resp.db_instance.processor_features #=> Array
@@ -10445,6 +10475,7 @@ module Aws::RDS
10445
10475
  # resp.db_instance.iam_database_authentication_enabled #=> Boolean
10446
10476
  # resp.db_instance.performance_insights_enabled #=> Boolean
10447
10477
  # resp.db_instance.performance_insights_kms_key_id #=> String
10478
+ # resp.db_instance.performance_insights_retention_period #=> Integer
10448
10479
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
10449
10480
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
10450
10481
  # resp.db_instance.processor_features #=> Array
@@ -10795,6 +10826,7 @@ module Aws::RDS
10795
10826
  # resp.db_instance.iam_database_authentication_enabled #=> Boolean
10796
10827
  # resp.db_instance.performance_insights_enabled #=> Boolean
10797
10828
  # resp.db_instance.performance_insights_kms_key_id #=> String
10829
+ # resp.db_instance.performance_insights_retention_period #=> Integer
10798
10830
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
10799
10831
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
10800
10832
  # resp.db_instance.processor_features #=> Array
@@ -12503,6 +12535,7 @@ module Aws::RDS
12503
12535
  # resp.db_instance.iam_database_authentication_enabled #=> Boolean
12504
12536
  # resp.db_instance.performance_insights_enabled #=> Boolean
12505
12537
  # resp.db_instance.performance_insights_kms_key_id #=> String
12538
+ # resp.db_instance.performance_insights_retention_period #=> Integer
12506
12539
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
12507
12540
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
12508
12541
  # resp.db_instance.processor_features #=> Array
@@ -12830,6 +12863,10 @@ module Aws::RDS
12830
12863
  # data. The KMS key ID is the Amazon Resource Name (ARN), the KMS key
12831
12864
  # identifier, or the KMS key alias for the KMS encryption key.
12832
12865
  #
12866
+ # @option params [Integer] :performance_insights_retention_period
12867
+ # The amount of time, in days, to retain Performance Insights data.
12868
+ # Valid values are 7 or 731 (2 years).
12869
+ #
12833
12870
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
12834
12871
  # The list of logs that the restored DB instance is to export to
12835
12872
  # CloudWatch Logs.
@@ -12892,6 +12929,7 @@ module Aws::RDS
12892
12929
  # s3_ingestion_role_arn: "String", # required
12893
12930
  # enable_performance_insights: false,
12894
12931
  # performance_insights_kms_key_id: "String",
12932
+ # performance_insights_retention_period: 1,
12895
12933
  # enable_cloudwatch_logs_exports: ["String"],
12896
12934
  # processor_features: [
12897
12935
  # {
@@ -13002,6 +13040,7 @@ module Aws::RDS
13002
13040
  # resp.db_instance.iam_database_authentication_enabled #=> Boolean
13003
13041
  # resp.db_instance.performance_insights_enabled #=> Boolean
13004
13042
  # resp.db_instance.performance_insights_kms_key_id #=> String
13043
+ # resp.db_instance.performance_insights_retention_period #=> Integer
13005
13044
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
13006
13045
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
13007
13046
  # resp.db_instance.processor_features #=> Array
@@ -13517,6 +13556,7 @@ module Aws::RDS
13517
13556
  # resp.db_instance.iam_database_authentication_enabled #=> Boolean
13518
13557
  # resp.db_instance.performance_insights_enabled #=> Boolean
13519
13558
  # resp.db_instance.performance_insights_kms_key_id #=> String
13559
+ # resp.db_instance.performance_insights_retention_period #=> Integer
13520
13560
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
13521
13561
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
13522
13562
  # resp.db_instance.processor_features #=> Array
@@ -13743,6 +13783,7 @@ module Aws::RDS
13743
13783
  # resp.db_instance.iam_database_authentication_enabled #=> Boolean
13744
13784
  # resp.db_instance.performance_insights_enabled #=> Boolean
13745
13785
  # resp.db_instance.performance_insights_kms_key_id #=> String
13786
+ # resp.db_instance.performance_insights_retention_period #=> Integer
13746
13787
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
13747
13788
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
13748
13789
  # resp.db_instance.processor_features #=> Array
@@ -13887,6 +13928,7 @@ module Aws::RDS
13887
13928
  # resp.db_instance.iam_database_authentication_enabled #=> Boolean
13888
13929
  # resp.db_instance.performance_insights_enabled #=> Boolean
13889
13930
  # resp.db_instance.performance_insights_kms_key_id #=> String
13931
+ # resp.db_instance.performance_insights_retention_period #=> Integer
13890
13932
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
13891
13933
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
13892
13934
  # resp.db_instance.processor_features #=> Array
@@ -13915,7 +13957,7 @@ module Aws::RDS
13915
13957
  params: params,
13916
13958
  config: config)
13917
13959
  context[:gem_name] = 'aws-sdk-rds'
13918
- context[:gem_version] = '1.21.0'
13960
+ context[:gem_version] = '1.22.0'
13919
13961
  Seahorse::Client::Request.new(handlers, context)
13920
13962
  end
13921
13963
 
@@ -642,6 +642,7 @@ module Aws::RDS
642
642
  CreateDBInstanceMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
643
643
  CreateDBInstanceMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
644
644
  CreateDBInstanceMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
645
+ CreateDBInstanceMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
645
646
  CreateDBInstanceMessage.add_member(:enable_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnableCloudwatchLogsExports"))
646
647
  CreateDBInstanceMessage.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
647
648
  CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
@@ -667,6 +668,7 @@ module Aws::RDS
667
668
  CreateDBInstanceReadReplicaMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
668
669
  CreateDBInstanceReadReplicaMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
669
670
  CreateDBInstanceReadReplicaMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
671
+ CreateDBInstanceReadReplicaMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
670
672
  CreateDBInstanceReadReplicaMessage.add_member(:enable_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnableCloudwatchLogsExports"))
671
673
  CreateDBInstanceReadReplicaMessage.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
672
674
  CreateDBInstanceReadReplicaMessage.add_member(:use_default_processor_features, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseDefaultProcessorFeatures"))
@@ -945,6 +947,7 @@ module Aws::RDS
945
947
  DBInstance.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
946
948
  DBInstance.add_member(:performance_insights_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PerformanceInsightsEnabled"))
947
949
  DBInstance.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
950
+ DBInstance.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
948
951
  DBInstance.add_member(:enabled_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnabledCloudwatchLogsExports"))
949
952
  DBInstance.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
950
953
  DBInstance.struct_class = Types::DBInstance
@@ -1535,6 +1538,7 @@ module Aws::RDS
1535
1538
  ModifyDBInstanceMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
1536
1539
  ModifyDBInstanceMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
1537
1540
  ModifyDBInstanceMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
1541
+ ModifyDBInstanceMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
1538
1542
  ModifyDBInstanceMessage.add_member(:cloudwatch_logs_export_configuration, Shapes::ShapeRef.new(shape: CloudwatchLogsExportConfiguration, location_name: "CloudwatchLogsExportConfiguration"))
1539
1543
  ModifyDBInstanceMessage.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
1540
1544
  ModifyDBInstanceMessage.add_member(:use_default_processor_features, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseDefaultProcessorFeatures"))
@@ -2041,6 +2045,7 @@ module Aws::RDS
2041
2045
  RestoreDBInstanceFromS3Message.add_member(:s3_ingestion_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "S3IngestionRoleArn"))
2042
2046
  RestoreDBInstanceFromS3Message.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
2043
2047
  RestoreDBInstanceFromS3Message.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
2048
+ RestoreDBInstanceFromS3Message.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
2044
2049
  RestoreDBInstanceFromS3Message.add_member(:enable_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnableCloudwatchLogsExports"))
2045
2050
  RestoreDBInstanceFromS3Message.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
2046
2051
  RestoreDBInstanceFromS3Message.add_member(:use_default_processor_features, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseDefaultProcessorFeatures"))
@@ -3251,6 +3256,7 @@ module Aws::RDS
3251
3256
  o.errors << Shapes::ShapeRef.new(shape: InvalidSubnet)
3252
3257
  o.errors << Shapes::ShapeRef.new(shape: OptionGroupNotFoundFault)
3253
3258
  o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
3259
+ o.errors << Shapes::ShapeRef.new(shape: DBClusterParameterGroupNotFoundFault)
3254
3260
  end)
3255
3261
 
3256
3262
  api.add_operation(:restore_db_cluster_to_point_in_time, Seahorse::Model::Operation.new.tap do |o|
@@ -3275,6 +3281,7 @@ module Aws::RDS
3275
3281
  o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
3276
3282
  o.errors << Shapes::ShapeRef.new(shape: OptionGroupNotFoundFault)
3277
3283
  o.errors << Shapes::ShapeRef.new(shape: StorageQuotaExceededFault)
3284
+ o.errors << Shapes::ShapeRef.new(shape: DBClusterParameterGroupNotFoundFault)
3278
3285
  end)
3279
3286
 
3280
3287
  api.add_operation(:restore_db_instance_from_db_snapshot, Seahorse::Model::Operation.new.tap do |o|
@@ -3301,6 +3308,7 @@ module Aws::RDS
3301
3308
  o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
3302
3309
  o.errors << Shapes::ShapeRef.new(shape: DBSecurityGroupNotFoundFault)
3303
3310
  o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
3311
+ o.errors << Shapes::ShapeRef.new(shape: DBParameterGroupNotFoundFault)
3304
3312
  end)
3305
3313
 
3306
3314
  api.add_operation(:restore_db_instance_from_s3, Seahorse::Model::Operation.new.tap do |o|
@@ -3352,6 +3360,7 @@ module Aws::RDS
3352
3360
  o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
3353
3361
  o.errors << Shapes::ShapeRef.new(shape: DBSecurityGroupNotFoundFault)
3354
3362
  o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
3363
+ o.errors << Shapes::ShapeRef.new(shape: DBParameterGroupNotFoundFault)
3355
3364
  end)
3356
3365
 
3357
3366
  api.add_operation(:revoke_db_security_group_ingress, Seahorse::Model::Operation.new.tap do |o|
@@ -422,6 +422,13 @@ module Aws::RDS
422
422
  data[:performance_insights_kms_key_id]
423
423
  end
424
424
 
425
+ # The amount of time, in days, to retain Performance Insights data.
426
+ # Valid values are 7 or 731 (2 years).
427
+ # @return [Integer]
428
+ def performance_insights_retention_period
429
+ data[:performance_insights_retention_period]
430
+ end
431
+
425
432
  # A list of log types that this DB instance is configured to export to
426
433
  # CloudWatch Logs.
427
434
  # @return [Array<String>]
@@ -616,6 +623,7 @@ module Aws::RDS
616
623
  # enable_iam_database_authentication: false,
617
624
  # enable_performance_insights: false,
618
625
  # performance_insights_kms_key_id: "String",
626
+ # performance_insights_retention_period: 1,
619
627
  # enable_cloudwatch_logs_exports: ["String"],
620
628
  # processor_features: [
621
629
  # {
@@ -1331,6 +1339,9 @@ module Aws::RDS
1331
1339
  # The AWS KMS key identifier for encryption of Performance Insights
1332
1340
  # data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
1333
1341
  # identifier, or the KMS key alias for the KMS encryption key.
1342
+ # @option options [Integer] :performance_insights_retention_period
1343
+ # The amount of time, in days, to retain Performance Insights data.
1344
+ # Valid values are 7 or 731 (2 years).
1334
1345
  # @option options [Array<String>] :enable_cloudwatch_logs_exports
1335
1346
  # The list of log types that need to be enabled for exporting to
1336
1347
  # CloudWatch Logs.
@@ -1376,6 +1387,7 @@ module Aws::RDS
1376
1387
  # enable_iam_database_authentication: false,
1377
1388
  # enable_performance_insights: false,
1378
1389
  # performance_insights_kms_key_id: "String",
1390
+ # performance_insights_retention_period: 1,
1379
1391
  # enable_cloudwatch_logs_exports: ["String"],
1380
1392
  # processor_features: [
1381
1393
  # {
@@ -1620,6 +1632,9 @@ module Aws::RDS
1620
1632
  # The AWS KMS key identifier for encryption of Performance Insights
1621
1633
  # data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
1622
1634
  # identifier, or the KMS key alias for the KMS encryption key.
1635
+ # @option options [Integer] :performance_insights_retention_period
1636
+ # The amount of time, in days, to retain Performance Insights data.
1637
+ # Valid values are 7 or 731 (2 years).
1623
1638
  # @option options [Array<String>] :enable_cloudwatch_logs_exports
1624
1639
  # The list of logs that the new DB instance is to export to CloudWatch
1625
1640
  # Logs.
@@ -1781,6 +1796,7 @@ module Aws::RDS
1781
1796
  # enable_iam_database_authentication: false,
1782
1797
  # enable_performance_insights: false,
1783
1798
  # performance_insights_kms_key_id: "String",
1799
+ # performance_insights_retention_period: 1,
1784
1800
  # cloudwatch_logs_export_configuration: {
1785
1801
  # enable_log_types: ["String"],
1786
1802
  # disable_log_types: ["String"],
@@ -2286,6 +2302,9 @@ module Aws::RDS
2286
2302
  # The AWS KMS key identifier for encryption of Performance Insights
2287
2303
  # data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
2288
2304
  # identifier, or the KMS key alias for the KMS encryption key.
2305
+ # @option options [Integer] :performance_insights_retention_period
2306
+ # The amount of time, in days, to retain Performance Insights data.
2307
+ # Valid values are 7 or 731 (2 years).
2289
2308
  # @option options [Types::CloudwatchLogsExportConfiguration] :cloudwatch_logs_export_configuration
2290
2309
  # The configuration setting for the log types to be enabled for export
2291
2310
  # to CloudWatch Logs for a specific DB instance.
@@ -201,6 +201,16 @@ module Aws::RDS
201
201
  # associated with one and only one DB parameter group family, and can be
202
202
  # applied only to a DB instance running a database engine and engine
203
203
  # version compatible with that DB parameter group family.
204
+ #
205
+ # To list all of the available parameter group families, use the
206
+ # following command:
207
+ #
208
+ # `aws rds describe-db-engine-versions --query
209
+ # "DBEngineVersions[].DBParameterGroupFamily"`
210
+ #
211
+ # <note markdown="1"> The output contains duplicates.
212
+ #
213
+ # </note>
204
214
  # @option options [required, String] :description
205
215
  # The description for the DB parameter group.
206
216
  # @option options [Array<Types::Tag>] :tags
@@ -419,6 +419,7 @@ module Aws::RDS
419
419
  # enable_iam_database_authentication: false,
420
420
  # enable_performance_insights: false,
421
421
  # performance_insights_kms_key_id: "String",
422
+ # performance_insights_retention_period: 1,
422
423
  # enable_cloudwatch_logs_exports: ["String"],
423
424
  # processor_features: [
424
425
  # {
@@ -1147,6 +1148,9 @@ module Aws::RDS
1147
1148
  # The AWS KMS key identifier for encryption of Performance Insights
1148
1149
  # data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
1149
1150
  # identifier, or the KMS key alias for the KMS encryption key.
1151
+ # @option options [Integer] :performance_insights_retention_period
1152
+ # The amount of time, in days, to retain Performance Insights data.
1153
+ # Valid values are 7 or 731 (2 years).
1150
1154
  # @option options [Array<String>] :enable_cloudwatch_logs_exports
1151
1155
  # The list of log types that need to be enabled for exporting to
1152
1156
  # CloudWatch Logs.
@@ -1196,6 +1200,16 @@ module Aws::RDS
1196
1200
  # associated with one and only one DB parameter group family, and can be
1197
1201
  # applied only to a DB instance running a database engine and engine
1198
1202
  # version compatible with that DB parameter group family.
1203
+ #
1204
+ # To list all of the available parameter group families, use the
1205
+ # following command:
1206
+ #
1207
+ # `aws rds describe-db-engine-versions --query
1208
+ # "DBEngineVersions[].DBParameterGroupFamily"`
1209
+ #
1210
+ # <note markdown="1"> The output contains duplicates.
1211
+ #
1212
+ # </note>
1199
1213
  # @option options [required, String] :description
1200
1214
  # The description for the DB parameter group.
1201
1215
  # @option options [Array<Types::Tag>] :tags
@@ -1743,6 +1743,7 @@ module Aws::RDS
1743
1743
  # enable_iam_database_authentication: false,
1744
1744
  # enable_performance_insights: false,
1745
1745
  # performance_insights_kms_key_id: "String",
1746
+ # performance_insights_retention_period: 1,
1746
1747
  # enable_cloudwatch_logs_exports: ["String"],
1747
1748
  # processor_features: [
1748
1749
  # {
@@ -2560,6 +2561,11 @@ module Aws::RDS
2560
2561
  # identifier, or the KMS key alias for the KMS encryption key.
2561
2562
  # @return [String]
2562
2563
  #
2564
+ # @!attribute [rw] performance_insights_retention_period
2565
+ # The amount of time, in days, to retain Performance Insights data.
2566
+ # Valid values are 7 or 731 (2 years).
2567
+ # @return [Integer]
2568
+ #
2563
2569
  # @!attribute [rw] enable_cloudwatch_logs_exports
2564
2570
  # The list of log types that need to be enabled for exporting to
2565
2571
  # CloudWatch Logs.
@@ -2614,6 +2620,7 @@ module Aws::RDS
2614
2620
  :enable_iam_database_authentication,
2615
2621
  :enable_performance_insights,
2616
2622
  :performance_insights_kms_key_id,
2623
+ :performance_insights_retention_period,
2617
2624
  :enable_cloudwatch_logs_exports,
2618
2625
  :processor_features)
2619
2626
  include Aws::Structure
@@ -2649,6 +2656,7 @@ module Aws::RDS
2649
2656
  # enable_iam_database_authentication: false,
2650
2657
  # enable_performance_insights: false,
2651
2658
  # performance_insights_kms_key_id: "String",
2659
+ # performance_insights_retention_period: 1,
2652
2660
  # enable_cloudwatch_logs_exports: ["String"],
2653
2661
  # processor_features: [
2654
2662
  # {
@@ -2968,6 +2976,11 @@ module Aws::RDS
2968
2976
  # identifier, or the KMS key alias for the KMS encryption key.
2969
2977
  # @return [String]
2970
2978
  #
2979
+ # @!attribute [rw] performance_insights_retention_period
2980
+ # The amount of time, in days, to retain Performance Insights data.
2981
+ # Valid values are 7 or 731 (2 years).
2982
+ # @return [Integer]
2983
+ #
2971
2984
  # @!attribute [rw] enable_cloudwatch_logs_exports
2972
2985
  # The list of logs that the new DB instance is to export to CloudWatch
2973
2986
  # Logs.
@@ -3015,6 +3028,7 @@ module Aws::RDS
3015
3028
  :enable_iam_database_authentication,
3016
3029
  :enable_performance_insights,
3017
3030
  :performance_insights_kms_key_id,
3031
+ :performance_insights_retention_period,
3018
3032
  :enable_cloudwatch_logs_exports,
3019
3033
  :processor_features,
3020
3034
  :use_default_processor_features,
@@ -3087,6 +3101,16 @@ module Aws::RDS
3087
3101
  # associated with one and only one DB parameter group family, and can
3088
3102
  # be applied only to a DB instance running a database engine and
3089
3103
  # engine version compatible with that DB parameter group family.
3104
+ #
3105
+ # To list all of the available parameter group families, use the
3106
+ # following command:
3107
+ #
3108
+ # `aws rds describe-db-engine-versions --query
3109
+ # "DBEngineVersions[].DBParameterGroupFamily"`
3110
+ #
3111
+ # <note markdown="1"> The output contains duplicates.
3112
+ #
3113
+ # </note>
3090
3114
  # @return [String]
3091
3115
  #
3092
3116
  # @!attribute [rw] description
@@ -4656,6 +4680,11 @@ module Aws::RDS
4656
4680
  # identifier, or the KMS key alias for the KMS encryption key.
4657
4681
  # @return [String]
4658
4682
  #
4683
+ # @!attribute [rw] performance_insights_retention_period
4684
+ # The amount of time, in days, to retain Performance Insights data.
4685
+ # Valid values are 7 or 731 (2 years).
4686
+ # @return [Integer]
4687
+ #
4659
4688
  # @!attribute [rw] enabled_cloudwatch_logs_exports
4660
4689
  # A list of log types that this DB instance is configured to export to
4661
4690
  # CloudWatch Logs.
@@ -4720,6 +4749,7 @@ module Aws::RDS
4720
4749
  :iam_database_authentication_enabled,
4721
4750
  :performance_insights_enabled,
4722
4751
  :performance_insights_kms_key_id,
4752
+ :performance_insights_retention_period,
4723
4753
  :enabled_cloudwatch_logs_exports,
4724
4754
  :processor_features)
4725
4755
  include Aws::Structure
@@ -8728,6 +8758,7 @@ module Aws::RDS
8728
8758
  # enable_iam_database_authentication: false,
8729
8759
  # enable_performance_insights: false,
8730
8760
  # performance_insights_kms_key_id: "String",
8761
+ # performance_insights_retention_period: 1,
8731
8762
  # cloudwatch_logs_export_configuration: {
8732
8763
  # enable_log_types: ["String"],
8733
8764
  # disable_log_types: ["String"],
@@ -9320,6 +9351,11 @@ module Aws::RDS
9320
9351
  # identifier, or the KMS key alias for the KMS encryption key.
9321
9352
  # @return [String]
9322
9353
  #
9354
+ # @!attribute [rw] performance_insights_retention_period
9355
+ # The amount of time, in days, to retain Performance Insights data.
9356
+ # Valid values are 7 or 731 (2 years).
9357
+ # @return [Integer]
9358
+ #
9323
9359
  # @!attribute [rw] cloudwatch_logs_export_configuration
9324
9360
  # The configuration setting for the log types to be enabled for export
9325
9361
  # to CloudWatch Logs for a specific DB instance.
@@ -9373,6 +9409,7 @@ module Aws::RDS
9373
9409
  :enable_iam_database_authentication,
9374
9410
  :enable_performance_insights,
9375
9411
  :performance_insights_kms_key_id,
9412
+ :performance_insights_retention_period,
9376
9413
  :cloudwatch_logs_export_configuration,
9377
9414
  :processor_features,
9378
9415
  :use_default_processor_features)
@@ -12581,6 +12618,7 @@ module Aws::RDS
12581
12618
  # s3_ingestion_role_arn: "String", # required
12582
12619
  # enable_performance_insights: false,
12583
12620
  # performance_insights_kms_key_id: "String",
12621
+ # performance_insights_retention_period: 1,
12584
12622
  # enable_cloudwatch_logs_exports: ["String"],
12585
12623
  # processor_features: [
12586
12624
  # {
@@ -12934,6 +12972,11 @@ module Aws::RDS
12934
12972
  # identifier, or the KMS key alias for the KMS encryption key.
12935
12973
  # @return [String]
12936
12974
  #
12975
+ # @!attribute [rw] performance_insights_retention_period
12976
+ # The amount of time, in days, to retain Performance Insights data.
12977
+ # Valid values are 7 or 731 (2 years).
12978
+ # @return [Integer]
12979
+ #
12937
12980
  # @!attribute [rw] enable_cloudwatch_logs_exports
12938
12981
  # The list of logs that the restored DB instance is to export to
12939
12982
  # CloudWatch Logs.
@@ -12990,6 +13033,7 @@ module Aws::RDS
12990
13033
  :s3_ingestion_role_arn,
12991
13034
  :enable_performance_insights,
12992
13035
  :performance_insights_kms_key_id,
13036
+ :performance_insights_retention_period,
12993
13037
  :enable_cloudwatch_logs_exports,
12994
13038
  :processor_features,
12995
13039
  :use_default_processor_features)
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.21.0
4
+ version: 1.22.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: 2018-06-11 00:00:00.000000000 Z
11
+ date: 2018-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4