aws-sdk-rds 1.293.0 → 1.295.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +1368 -1389
- data/lib/aws-sdk-rds/client_api.rb +202 -158
- data/lib/aws-sdk-rds/db_cluster.rb +340 -349
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +25 -25
- data/lib/aws-sdk-rds/db_engine_version.rb +55 -55
- data/lib/aws-sdk-rds/db_instance.rb +300 -309
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +74 -74
- data/lib/aws-sdk-rds/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-rds/option_group.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +210 -228
- data/lib/aws-sdk-rds/types.rb +1040 -1061
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +100 -100
- data/sig/db_cluster.rbs +65 -65
- data/sig/db_cluster_snapshot.rbs +6 -6
- data/sig/db_engine_version.rbs +21 -21
- data/sig/db_instance.rbs +44 -44
- data/sig/db_snapshot.rbs +14 -14
- data/sig/event.rbs +1 -1
- data/sig/resource.rbs +21 -21
- data/sig/types.rbs +120 -120
- metadata +1 -1
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -50,7 +50,7 @@ module Aws::RDS
|
|
50
50
|
# engine_version: "String",
|
51
51
|
# port: 1,
|
52
52
|
# master_username: "String",
|
53
|
-
# master_user_password: "
|
53
|
+
# master_user_password: "SensitiveString",
|
54
54
|
# option_group_name: "String",
|
55
55
|
# preferred_backup_window: "String",
|
56
56
|
# preferred_maintenance_window: "String",
|
@@ -63,7 +63,7 @@ module Aws::RDS
|
|
63
63
|
# ],
|
64
64
|
# storage_encrypted: false,
|
65
65
|
# kms_key_id: "String",
|
66
|
-
# pre_signed_url: "
|
66
|
+
# pre_signed_url: "SensitiveString",
|
67
67
|
# enable_iam_database_authentication: false,
|
68
68
|
# backtrack_window: 1,
|
69
69
|
# enable_cloudwatch_logs_exports: ["String"],
|
@@ -81,19 +81,25 @@ module Aws::RDS
|
|
81
81
|
# transit_gateway_multicast_domain_id: "String",
|
82
82
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
83
83
|
# },
|
84
|
-
# deletion_protection: false,
|
85
|
-
# global_cluster_identifier: "String",
|
86
|
-
# enable_http_endpoint: false,
|
87
|
-
# copy_tags_to_snapshot: false,
|
88
|
-
# domain: "String",
|
89
|
-
# domain_iam_role_name: "String",
|
90
|
-
# enable_global_write_forwarding: false,
|
91
84
|
# db_cluster_instance_class: "String",
|
92
85
|
# allocated_storage: 1,
|
93
86
|
# storage_type: "String",
|
94
87
|
# iops: 1,
|
95
88
|
# publicly_accessible: false,
|
96
89
|
# auto_minor_version_upgrade: false,
|
90
|
+
# deletion_protection: false,
|
91
|
+
# global_cluster_identifier: "GlobalClusterIdentifier",
|
92
|
+
# enable_http_endpoint: false,
|
93
|
+
# copy_tags_to_snapshot: false,
|
94
|
+
# domain: "String",
|
95
|
+
# domain_iam_role_name: "String",
|
96
|
+
# enable_global_write_forwarding: false,
|
97
|
+
# network_type: "String",
|
98
|
+
# serverless_v2_scaling_configuration: {
|
99
|
+
# min_capacity: 1.0,
|
100
|
+
# max_capacity: 1.0,
|
101
|
+
# seconds_until_auto_pause: 1,
|
102
|
+
# },
|
97
103
|
# monitoring_interval: 1,
|
98
104
|
# monitoring_role_arn: "String",
|
99
105
|
# database_insights_mode: "standard", # accepts standard, advanced
|
@@ -101,17 +107,11 @@ module Aws::RDS
|
|
101
107
|
# performance_insights_kms_key_id: "String",
|
102
108
|
# performance_insights_retention_period: 1,
|
103
109
|
# enable_limitless_database: false,
|
104
|
-
#
|
105
|
-
# min_capacity: 1.0,
|
106
|
-
# max_capacity: 1.0,
|
107
|
-
# seconds_until_auto_pause: 1,
|
108
|
-
# },
|
109
|
-
# network_type: "String",
|
110
|
-
# cluster_scalability_type: "standard", # accepts standard, limitless
|
110
|
+
# cluster_scalability_type: "standard", # accepts standard, limitless, scaleout
|
111
111
|
# db_system_id: "String",
|
112
112
|
# manage_master_user_password: false,
|
113
|
-
# master_user_secret_kms_key_id: "String",
|
114
113
|
# enable_local_write_forwarding: false,
|
114
|
+
# master_user_secret_kms_key_id: "String",
|
115
115
|
# ca_certificate_identifier: "String",
|
116
116
|
# engine_lifecycle_support: "String",
|
117
117
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
@@ -564,73 +564,6 @@ module Aws::RDS
|
|
564
564
|
# Valid for Cluster Type: Aurora DB clusters only
|
565
565
|
# @option options [Types::RdsCustomClusterConfiguration] :rds_custom_cluster_configuration
|
566
566
|
# Reserved for future use.
|
567
|
-
# @option options [Boolean] :deletion_protection
|
568
|
-
# Specifies whether the DB cluster has deletion protection enabled. The
|
569
|
-
# database can't be deleted when deletion protection is enabled. By
|
570
|
-
# default, deletion protection isn't enabled.
|
571
|
-
#
|
572
|
-
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
573
|
-
# @option options [String] :global_cluster_identifier
|
574
|
-
# The global cluster ID of an Aurora cluster that becomes the primary
|
575
|
-
# cluster in the new global database cluster.
|
576
|
-
#
|
577
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
578
|
-
# @option options [Boolean] :enable_http_endpoint
|
579
|
-
# Specifies whether to enable the HTTP endpoint for the DB cluster. By
|
580
|
-
# default, the HTTP endpoint isn't enabled.
|
581
|
-
#
|
582
|
-
# When enabled, the HTTP endpoint provides a connectionless web service
|
583
|
-
# API (RDS Data API) for running SQL queries on the DB cluster. You can
|
584
|
-
# also query your database from inside the RDS console with the RDS
|
585
|
-
# query editor.
|
586
|
-
#
|
587
|
-
# For more information, see [Using RDS Data API][1] in the *Amazon
|
588
|
-
# Aurora User Guide*.
|
589
|
-
#
|
590
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
591
|
-
#
|
592
|
-
#
|
593
|
-
#
|
594
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
|
595
|
-
# @option options [Boolean] :copy_tags_to_snapshot
|
596
|
-
# Specifies whether to copy all tags from the DB cluster to snapshots of
|
597
|
-
# the DB cluster. The default is not to copy them.
|
598
|
-
#
|
599
|
-
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
600
|
-
# @option options [String] :domain
|
601
|
-
# The Active Directory directory ID to create the DB cluster in.
|
602
|
-
#
|
603
|
-
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
604
|
-
# authentication to authenticate users that connect to the DB cluster.
|
605
|
-
#
|
606
|
-
# For more information, see [Kerberos authentication][1] in the *Amazon
|
607
|
-
# Aurora User Guide*.
|
608
|
-
#
|
609
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
610
|
-
#
|
611
|
-
#
|
612
|
-
#
|
613
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
614
|
-
# @option options [String] :domain_iam_role_name
|
615
|
-
# The name of the IAM role to use when making API calls to the Directory
|
616
|
-
# Service.
|
617
|
-
#
|
618
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
619
|
-
# @option options [Boolean] :enable_global_write_forwarding
|
620
|
-
# Specifies whether to enable this DB cluster to forward write
|
621
|
-
# operations to the primary cluster of a global cluster (Aurora global
|
622
|
-
# database). By default, write operations are not allowed on Aurora DB
|
623
|
-
# clusters that are secondary clusters in an Aurora global database.
|
624
|
-
#
|
625
|
-
# You can set this value only on Aurora DB clusters that are members of
|
626
|
-
# an Aurora global database. With this parameter enabled, a secondary
|
627
|
-
# cluster can forward writes to the current primary cluster, and the
|
628
|
-
# resulting changes are replicated back to this cluster. For the primary
|
629
|
-
# DB cluster of an Aurora global database, this value is used
|
630
|
-
# immediately if the primary is demoted by a global cluster API
|
631
|
-
# operation, but it does nothing until then.
|
632
|
-
#
|
633
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
634
567
|
# @option options [String] :db_cluster_instance_class
|
635
568
|
# The compute and memory capacity of each DB instance in the Multi-AZ DB
|
636
569
|
# cluster, for example `db.m6gd.xlarge`. Not all DB instance classes are
|
@@ -716,40 +649,31 @@ module Aws::RDS
|
|
716
649
|
# @option options [Boolean] :publicly_accessible
|
717
650
|
# Specifies whether the DB cluster is publicly accessible.
|
718
651
|
#
|
652
|
+
# Valid for Cluster Type: Multi-AZ DB clusters only
|
653
|
+
#
|
719
654
|
# When the DB cluster is publicly accessible and you connect from
|
720
|
-
# outside of the DB cluster's virtual private cloud (VPC), its
|
721
|
-
#
|
655
|
+
# outside of the DB cluster's virtual private cloud (VPC), its domain
|
656
|
+
# name system (DNS) endpoint resolves to the public IP address. When you
|
722
657
|
# connect from within the same VPC as the DB cluster, the endpoint
|
723
658
|
# resolves to the private IP address. Access to the DB cluster is
|
724
|
-
#
|
725
|
-
# access isn't permitted if the security group assigned to the DB
|
726
|
-
# cluster doesn't permit it.
|
659
|
+
# controlled by its security group settings.
|
727
660
|
#
|
728
661
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
729
662
|
# cluster with a DNS name that resolves to a private IP address.
|
730
663
|
#
|
731
|
-
#
|
732
|
-
#
|
733
|
-
# Default: The default behavior varies depending on whether
|
734
|
-
# `DBSubnetGroupName` is specified.
|
735
|
-
#
|
736
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
737
|
-
# isn't specified, the following applies:
|
738
|
-
#
|
739
|
-
# * If the default VPC in the target Region doesn’t have an internet
|
740
|
-
# gateway attached to it, the DB cluster is private.
|
664
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
665
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
741
666
|
#
|
742
|
-
#
|
743
|
-
#
|
667
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
|
668
|
+
# `true`.
|
744
669
|
#
|
745
|
-
# If `
|
746
|
-
#
|
670
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
671
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
672
|
+
# case `PubliclyAccessible` defaults to `true`.
|
747
673
|
#
|
748
|
-
#
|
749
|
-
#
|
750
|
-
#
|
751
|
-
# * If the subnets are part of a VPC that has an internet gateway
|
752
|
-
# attached to it, the DB cluster is public.
|
674
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
675
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
676
|
+
# returns an error.
|
753
677
|
# @option options [Boolean] :auto_minor_version_upgrade
|
754
678
|
# Specifies whether minor engine upgrades are applied automatically to
|
755
679
|
# the DB cluster during the maintenance window. By default, minor engine
|
@@ -763,6 +687,100 @@ module Aws::RDS
|
|
763
687
|
#
|
764
688
|
#
|
765
689
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
690
|
+
# @option options [Boolean] :deletion_protection
|
691
|
+
# Specifies whether the DB cluster has deletion protection enabled. The
|
692
|
+
# database can't be deleted when deletion protection is enabled. By
|
693
|
+
# default, deletion protection isn't enabled.
|
694
|
+
#
|
695
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
696
|
+
# @option options [String] :global_cluster_identifier
|
697
|
+
# The global cluster ID of an Aurora cluster that becomes the primary
|
698
|
+
# cluster in the new global database cluster.
|
699
|
+
#
|
700
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
701
|
+
# @option options [Boolean] :enable_http_endpoint
|
702
|
+
# Specifies whether to enable the HTTP endpoint for the DB cluster. By
|
703
|
+
# default, the HTTP endpoint isn't enabled.
|
704
|
+
#
|
705
|
+
# When enabled, the HTTP endpoint provides a connectionless web service
|
706
|
+
# API (RDS Data API) for running SQL queries on the DB cluster. You can
|
707
|
+
# also query your database from inside the RDS console with the RDS
|
708
|
+
# query editor.
|
709
|
+
#
|
710
|
+
# For more information, see [Using RDS Data API][1] in the *Amazon
|
711
|
+
# Aurora User Guide*.
|
712
|
+
#
|
713
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
714
|
+
#
|
715
|
+
#
|
716
|
+
#
|
717
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
|
718
|
+
# @option options [Boolean] :copy_tags_to_snapshot
|
719
|
+
# Specifies whether to copy all tags from the DB cluster to snapshots of
|
720
|
+
# the DB cluster. The default is not to copy them.
|
721
|
+
#
|
722
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
723
|
+
# @option options [String] :domain
|
724
|
+
# The Active Directory directory ID to create the DB cluster in.
|
725
|
+
#
|
726
|
+
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
727
|
+
# authentication to authenticate users that connect to the DB cluster.
|
728
|
+
#
|
729
|
+
# For more information, see [Kerberos authentication][1] in the *Amazon
|
730
|
+
# Aurora User Guide*.
|
731
|
+
#
|
732
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
733
|
+
#
|
734
|
+
#
|
735
|
+
#
|
736
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
737
|
+
# @option options [String] :domain_iam_role_name
|
738
|
+
# The name of the IAM role to use when making API calls to the Directory
|
739
|
+
# Service.
|
740
|
+
#
|
741
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
742
|
+
# @option options [Boolean] :enable_global_write_forwarding
|
743
|
+
# Specifies whether to enable this DB cluster to forward write
|
744
|
+
# operations to the primary cluster of a global cluster (Aurora global
|
745
|
+
# database). By default, write operations are not allowed on Aurora DB
|
746
|
+
# clusters that are secondary clusters in an Aurora global database.
|
747
|
+
#
|
748
|
+
# You can set this value only on Aurora DB clusters that are members of
|
749
|
+
# an Aurora global database. With this parameter enabled, a secondary
|
750
|
+
# cluster can forward writes to the current primary cluster, and the
|
751
|
+
# resulting changes are replicated back to this cluster. For the primary
|
752
|
+
# DB cluster of an Aurora global database, this value is used
|
753
|
+
# immediately if the primary is demoted by a global cluster API
|
754
|
+
# operation, but it does nothing until then.
|
755
|
+
#
|
756
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
757
|
+
# @option options [String] :network_type
|
758
|
+
# The network type of the DB cluster.
|
759
|
+
#
|
760
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
761
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
762
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
763
|
+
#
|
764
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
765
|
+
# the *Amazon Aurora User Guide.*
|
766
|
+
#
|
767
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
768
|
+
#
|
769
|
+
# Valid Values: `IPV4 | DUAL`
|
770
|
+
#
|
771
|
+
#
|
772
|
+
#
|
773
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
774
|
+
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
775
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
776
|
+
# cluster.
|
777
|
+
#
|
778
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
779
|
+
# the *Amazon Aurora User Guide*.
|
780
|
+
#
|
781
|
+
#
|
782
|
+
#
|
783
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
766
784
|
# @option options [Integer] :monitoring_interval
|
767
785
|
# The interval, in seconds, between points when Enhanced Monitoring
|
768
786
|
# metrics are collected for the DB cluster. To turn off collecting
|
@@ -852,33 +870,6 @@ module Aws::RDS
|
|
852
870
|
# `ClusterScalabilityType` setting.
|
853
871
|
#
|
854
872
|
# </note>
|
855
|
-
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
856
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
857
|
-
# cluster.
|
858
|
-
#
|
859
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
860
|
-
# the *Amazon Aurora User Guide*.
|
861
|
-
#
|
862
|
-
#
|
863
|
-
#
|
864
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
865
|
-
# @option options [String] :network_type
|
866
|
-
# The network type of the DB cluster.
|
867
|
-
#
|
868
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
869
|
-
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
870
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
871
|
-
#
|
872
|
-
# For more information, see [ Working with a DB instance in a VPC][1] in
|
873
|
-
# the *Amazon Aurora User Guide.*
|
874
|
-
#
|
875
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
876
|
-
#
|
877
|
-
# Valid Values: `IPV4 | DUAL`
|
878
|
-
#
|
879
|
-
#
|
880
|
-
#
|
881
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
882
873
|
# @option options [String] :cluster_scalability_type
|
883
874
|
# Specifies the scalability mode of the Aurora DB cluster. When set to
|
884
875
|
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
@@ -914,6 +905,12 @@ module Aws::RDS
|
|
914
905
|
#
|
915
906
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
916
907
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
908
|
+
# @option options [Boolean] :enable_local_write_forwarding
|
909
|
+
# Specifies whether read replicas can forward write operations to the
|
910
|
+
# writer DB instance in the DB cluster. By default, write operations
|
911
|
+
# aren't allowed on reader DB instances.
|
912
|
+
#
|
913
|
+
# Valid for: Aurora DB clusters only
|
917
914
|
# @option options [String] :master_user_secret_kms_key_id
|
918
915
|
# The Amazon Web Services KMS key identifier to encrypt a secret that is
|
919
916
|
# automatically generated and managed in Amazon Web Services Secrets
|
@@ -938,12 +935,6 @@ module Aws::RDS
|
|
938
935
|
# Amazon Web Services Region.
|
939
936
|
#
|
940
937
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
941
|
-
# @option options [Boolean] :enable_local_write_forwarding
|
942
|
-
# Specifies whether read replicas can forward write operations to the
|
943
|
-
# writer DB instance in the DB cluster. By default, write operations
|
944
|
-
# aren't allowed on reader DB instances.
|
945
|
-
#
|
946
|
-
# Valid for: Aurora DB clusters only
|
947
938
|
# @option options [String] :ca_certificate_identifier
|
948
939
|
# The CA certificate identifier to use for the DB cluster's server
|
949
940
|
# certificate.
|
@@ -1121,7 +1112,7 @@ module Aws::RDS
|
|
1121
1112
|
# db_instance_class: "String", # required
|
1122
1113
|
# engine: "String", # required
|
1123
1114
|
# master_username: "String",
|
1124
|
-
# master_user_password: "
|
1115
|
+
# master_user_password: "SensitiveString",
|
1125
1116
|
# db_security_groups: ["String"],
|
1126
1117
|
# vpc_security_group_ids: ["String"],
|
1127
1118
|
# availability_zone: "String",
|
@@ -1136,6 +1127,7 @@ module Aws::RDS
|
|
1136
1127
|
# auto_minor_version_upgrade: false,
|
1137
1128
|
# license_model: "String",
|
1138
1129
|
# iops: 1,
|
1130
|
+
# storage_throughput: 1,
|
1139
1131
|
# option_group_name: "String",
|
1140
1132
|
# character_set_name: "String",
|
1141
1133
|
# nchar_character_set_name: "String",
|
@@ -1149,7 +1141,7 @@ module Aws::RDS
|
|
1149
1141
|
# db_cluster_identifier: "String",
|
1150
1142
|
# storage_type: "String",
|
1151
1143
|
# tde_credential_arn: "String",
|
1152
|
-
# tde_credential_password: "
|
1144
|
+
# tde_credential_password: "SensitiveString",
|
1153
1145
|
# storage_encrypted: false,
|
1154
1146
|
# kms_key_id: "String",
|
1155
1147
|
# domain: "String",
|
@@ -1178,16 +1170,15 @@ module Aws::RDS
|
|
1178
1170
|
# deletion_protection: false,
|
1179
1171
|
# max_allocated_storage: 1,
|
1180
1172
|
# enable_customer_owned_ip: false,
|
1181
|
-
# custom_iam_instance_profile: "String",
|
1182
|
-
# backup_target: "String",
|
1183
1173
|
# network_type: "String",
|
1184
|
-
#
|
1174
|
+
# backup_target: "String",
|
1175
|
+
# custom_iam_instance_profile: "String",
|
1176
|
+
# db_system_id: "String",
|
1177
|
+
# ca_certificate_identifier: "String",
|
1185
1178
|
# manage_master_user_password: false,
|
1186
1179
|
# master_user_secret_kms_key_id: "String",
|
1187
|
-
# ca_certificate_identifier: "String",
|
1188
|
-
# db_system_id: "String",
|
1189
|
-
# dedicated_log_volume: false,
|
1190
1180
|
# multi_tenant: false,
|
1181
|
+
# dedicated_log_volume: false,
|
1191
1182
|
# engine_lifecycle_support: "String",
|
1192
1183
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
1193
1184
|
# })
|
@@ -1864,6 +1855,14 @@ module Aws::RDS
|
|
1864
1855
|
#
|
1865
1856
|
#
|
1866
1857
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
1858
|
+
# @option options [Integer] :storage_throughput
|
1859
|
+
# The storage throughput value, in mebibyte per second (MiBps), for the
|
1860
|
+
# DB instance.
|
1861
|
+
#
|
1862
|
+
# This setting applies only to the `gp3` storage type.
|
1863
|
+
#
|
1864
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
1865
|
+
# instances.
|
1867
1866
|
# @option options [String] :option_group_name
|
1868
1867
|
# The option group to associate the DB instance with.
|
1869
1868
|
#
|
@@ -1893,37 +1892,28 @@ module Aws::RDS
|
|
1893
1892
|
# Specifies whether the DB instance is publicly accessible.
|
1894
1893
|
#
|
1895
1894
|
# When the DB instance is publicly accessible and you connect from
|
1896
|
-
# outside of the DB instance's virtual private cloud (VPC), its
|
1897
|
-
#
|
1895
|
+
# outside of the DB instance's virtual private cloud (VPC), its domain
|
1896
|
+
# name system (DNS) endpoint resolves to the public IP address. When you
|
1898
1897
|
# connect from within the same VPC as the DB instance, the endpoint
|
1899
1898
|
# resolves to the private IP address. Access to the DB instance is
|
1900
|
-
#
|
1901
|
-
# access is not permitted if the security group assigned to the DB
|
1902
|
-
# instance doesn't permit it.
|
1899
|
+
# controlled by its security group settings.
|
1903
1900
|
#
|
1904
1901
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
1905
1902
|
# instance with a DNS name that resolves to a private IP address.
|
1906
1903
|
#
|
1907
|
-
#
|
1908
|
-
# `
|
1909
|
-
#
|
1910
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
1911
|
-
# isn't specified, the following applies:
|
1904
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
1905
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
1912
1906
|
#
|
1913
|
-
#
|
1914
|
-
#
|
1907
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
|
1908
|
+
# `false` for Aurora instances and `true` for non-Aurora instances.
|
1915
1909
|
#
|
1916
|
-
#
|
1917
|
-
#
|
1910
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
1911
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
1912
|
+
# case `PubliclyAccessible` defaults to `true`.
|
1918
1913
|
#
|
1919
|
-
# If `
|
1920
|
-
#
|
1921
|
-
#
|
1922
|
-
# * If the subnets are part of a VPC that doesn’t have an internet
|
1923
|
-
# gateway attached to it, the DB instance is private.
|
1924
|
-
#
|
1925
|
-
# * If the subnets are part of a VPC that has an internet gateway
|
1926
|
-
# attached to it, the DB instance is public.
|
1914
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
1915
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
1916
|
+
# returns an error.
|
1927
1917
|
# @option options [Array<Types::Tag>] :tags
|
1928
1918
|
# Tags to assign to the DB instance.
|
1929
1919
|
# @option options [String] :db_cluster_identifier
|
@@ -2267,28 +2257,21 @@ module Aws::RDS
|
|
2267
2257
|
#
|
2268
2258
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
2269
2259
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
2270
|
-
# @option options [String] :
|
2271
|
-
# The
|
2272
|
-
# instance of an RDS Custom DB instance.
|
2273
|
-
#
|
2274
|
-
# This setting is required for RDS Custom.
|
2275
|
-
#
|
2276
|
-
# Constraints:
|
2277
|
-
#
|
2278
|
-
# * The profile must exist in your account.
|
2260
|
+
# @option options [String] :network_type
|
2261
|
+
# The network type of the DB instance.
|
2279
2262
|
#
|
2280
|
-
#
|
2281
|
-
#
|
2263
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
2264
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
|
2265
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
2282
2266
|
#
|
2283
|
-
#
|
2284
|
-
#
|
2267
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
2268
|
+
# the *Amazon RDS User Guide.*
|
2285
2269
|
#
|
2286
|
-
#
|
2287
|
-
# IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
2270
|
+
# Valid Values: `IPV4 | DUAL`
|
2288
2271
|
#
|
2289
2272
|
#
|
2290
2273
|
#
|
2291
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
2274
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
2292
2275
|
# @option options [String] :backup_target
|
2293
2276
|
# The location for storing automated backups and manual snapshots.
|
2294
2277
|
#
|
@@ -2308,29 +2291,50 @@ module Aws::RDS
|
|
2308
2291
|
#
|
2309
2292
|
#
|
2310
2293
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
2311
|
-
# @option options [String] :
|
2312
|
-
# The
|
2294
|
+
# @option options [String] :custom_iam_instance_profile
|
2295
|
+
# The instance profile associated with the underlying Amazon EC2
|
2296
|
+
# instance of an RDS Custom DB instance.
|
2313
2297
|
#
|
2314
|
-
#
|
2315
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
|
2316
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
2298
|
+
# This setting is required for RDS Custom.
|
2317
2299
|
#
|
2318
|
-
#
|
2319
|
-
# the *Amazon RDS User Guide.*
|
2300
|
+
# Constraints:
|
2320
2301
|
#
|
2321
|
-
#
|
2302
|
+
# * The profile must exist in your account.
|
2322
2303
|
#
|
2304
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions to
|
2305
|
+
# assume.
|
2323
2306
|
#
|
2307
|
+
# * The instance profile name and the associated IAM role name must
|
2308
|
+
# start with the prefix `AWSRDSCustom`.
|
2324
2309
|
#
|
2325
|
-
# [
|
2326
|
-
#
|
2327
|
-
# The storage throughput value, in mebibyte per second (MiBps), for the
|
2328
|
-
# DB instance.
|
2310
|
+
# For the list of permissions required for the IAM role, see [ Configure
|
2311
|
+
# IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
2329
2312
|
#
|
2330
|
-
# This setting applies only to the `gp3` storage type.
|
2331
2313
|
#
|
2332
|
-
#
|
2333
|
-
#
|
2314
|
+
#
|
2315
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
2316
|
+
# @option options [String] :db_system_id
|
2317
|
+
# The Oracle system identifier (SID), which is the name of the Oracle
|
2318
|
+
# database instance that manages your database files. In this context,
|
2319
|
+
# the term "Oracle database instance" refers exclusively to the system
|
2320
|
+
# global area (SGA) and Oracle background processes. If you don't
|
2321
|
+
# specify a SID, the value defaults to `RDSCDB`. The Oracle SID is also
|
2322
|
+
# the name of your CDB.
|
2323
|
+
# @option options [String] :ca_certificate_identifier
|
2324
|
+
# The CA certificate identifier to use for the DB instance's server
|
2325
|
+
# certificate.
|
2326
|
+
#
|
2327
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
2328
|
+
#
|
2329
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
2330
|
+
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
2331
|
+
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
2332
|
+
# Guide*.
|
2333
|
+
#
|
2334
|
+
#
|
2335
|
+
#
|
2336
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
2337
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
2334
2338
|
# @option options [Boolean] :manage_master_user_password
|
2335
2339
|
# Specifies whether to manage the master user password with Amazon Web
|
2336
2340
|
# Services Secrets Manager.
|
@@ -2370,31 +2374,6 @@ module Aws::RDS
|
|
2370
2374
|
# There is a default KMS key for your Amazon Web Services account. Your
|
2371
2375
|
# Amazon Web Services account has a different default KMS key for each
|
2372
2376
|
# Amazon Web Services Region.
|
2373
|
-
# @option options [String] :ca_certificate_identifier
|
2374
|
-
# The CA certificate identifier to use for the DB instance's server
|
2375
|
-
# certificate.
|
2376
|
-
#
|
2377
|
-
# This setting doesn't apply to RDS Custom DB instances.
|
2378
|
-
#
|
2379
|
-
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
2380
|
-
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
2381
|
-
# encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
|
2382
|
-
# Guide*.
|
2383
|
-
#
|
2384
|
-
#
|
2385
|
-
#
|
2386
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
2387
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
2388
|
-
# @option options [String] :db_system_id
|
2389
|
-
# The Oracle system identifier (SID), which is the name of the Oracle
|
2390
|
-
# database instance that manages your database files. In this context,
|
2391
|
-
# the term "Oracle database instance" refers exclusively to the system
|
2392
|
-
# global area (SGA) and Oracle background processes. If you don't
|
2393
|
-
# specify a SID, the value defaults to `RDSCDB`. The Oracle SID is also
|
2394
|
-
# the name of your CDB.
|
2395
|
-
# @option options [Boolean] :dedicated_log_volume
|
2396
|
-
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
2397
|
-
# enabled.
|
2398
2377
|
# @option options [Boolean] :multi_tenant
|
2399
2378
|
# Specifies whether to use the multi-tenant configuration or the
|
2400
2379
|
# single-tenant configuration (default). This parameter only applies to
|
@@ -2410,6 +2389,9 @@ module Aws::RDS
|
|
2410
2389
|
# * If you specify the multi-tenant configuration when you create your
|
2411
2390
|
# DB instance, you can't later modify this DB instance to use the
|
2412
2391
|
# single-tenant configuration.
|
2392
|
+
# @option options [Boolean] :dedicated_log_volume
|
2393
|
+
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
2394
|
+
# enabled.
|
2413
2395
|
# @option options [String] :engine_lifecycle_support
|
2414
2396
|
# The life cycle type for this DB instance.
|
2415
2397
|
#
|
@@ -3696,7 +3678,7 @@ module Aws::RDS
|
|
3696
3678
|
#
|
3697
3679
|
# events = rds.events({
|
3698
3680
|
# source_identifier: "String",
|
3699
|
-
# 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, blue-green-deployment
|
3681
|
+
# 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, blue-green-deployment, db-shard-group, zero-etl
|
3700
3682
|
# start_time: Time.now,
|
3701
3683
|
# end_time: Time.now,
|
3702
3684
|
# duration: 1,
|