aws-sdk-rds 1.0.0.rc9 → 1.0.0.rc10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +441 -164
- data/lib/aws-sdk-rds/client_api.rb +52 -0
- data/lib/aws-sdk-rds/db_cluster.rb +33 -6
- data/lib/aws-sdk-rds/db_instance.rb +100 -55
- data/lib/aws-sdk-rds/db_snapshot.rb +35 -23
- data/lib/aws-sdk-rds/resource.rb +103 -58
- data/lib/aws-sdk-rds/types.rb +321 -96
- metadata +4 -4
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -77,9 +77,9 @@ module Aws::RDS
|
|
77
77
|
# A value that indicates that the DB cluster should be associated with
|
78
78
|
# the specified CharacterSet.
|
79
79
|
# @option options [String] :database_name
|
80
|
-
# The name for your database of up to
|
81
|
-
# do not provide a name, Amazon RDS will not create a database in
|
82
|
-
# cluster you are creating.
|
80
|
+
# The name for your database of up to 64 alpha-numeric characters. If
|
81
|
+
# you do not provide a name, Amazon RDS will not create a database in
|
82
|
+
# the DB cluster you are creating.
|
83
83
|
# @option options [required, String] :db_cluster_identifier
|
84
84
|
# The DB cluster identifier. This parameter is stored as a lowercase
|
85
85
|
# string.
|
@@ -420,7 +420,9 @@ module Aws::RDS
|
|
420
420
|
#
|
421
421
|
# **Oracle**
|
422
422
|
#
|
423
|
-
# The Oracle System ID (SID) of the created DB instance.
|
423
|
+
# The Oracle System ID (SID) of the created DB instance. If you specify
|
424
|
+
# `null`, the default value `ORCL` is used. You can't specify the
|
425
|
+
# string NULL, or any other reserved word, for `DBName`.
|
424
426
|
#
|
425
427
|
# Default: `ORCL`
|
426
428
|
#
|
@@ -506,11 +508,33 @@ module Aws::RDS
|
|
506
508
|
# @option options [required, String] :engine
|
507
509
|
# The name of the database engine to be used for this instance.
|
508
510
|
#
|
509
|
-
# Valid Values: `mysql` \| `mariadb` \| `oracle-se1` \| `oracle-se2` \|
|
510
|
-
# `oracle-se` \| `oracle-ee` \| `sqlserver-ee` \| `sqlserver-se` \|
|
511
|
-
# `sqlserver-ex` \| `sqlserver-web` \| `postgres` \| `aurora`
|
512
|
-
#
|
513
511
|
# Not every database engine is available for every AWS region.
|
512
|
+
#
|
513
|
+
# Valid Values:
|
514
|
+
#
|
515
|
+
# * `aurora`
|
516
|
+
#
|
517
|
+
# * `mariadb`
|
518
|
+
#
|
519
|
+
# * `mysql`
|
520
|
+
#
|
521
|
+
# * `oracle-ee`
|
522
|
+
#
|
523
|
+
# * `oracle-se2`
|
524
|
+
#
|
525
|
+
# * `oracle-se1`
|
526
|
+
#
|
527
|
+
# * `oracle-se`
|
528
|
+
#
|
529
|
+
# * `postgres`
|
530
|
+
#
|
531
|
+
# * `sqlserver-ee`
|
532
|
+
#
|
533
|
+
# * `sqlserver-se`
|
534
|
+
#
|
535
|
+
# * `sqlserver-ex`
|
536
|
+
#
|
537
|
+
# * `sqlserver-web`
|
514
538
|
# @option options [String] :master_username
|
515
539
|
# The name for the master database user.
|
516
540
|
#
|
@@ -751,98 +775,118 @@ module Aws::RDS
|
|
751
775
|
#
|
752
776
|
# **Amazon Aurora**
|
753
777
|
#
|
754
|
-
# *
|
778
|
+
# * Version 5.6 (available in these AWS regions: ap-northeast-1,
|
755
779
|
# ap-northeast-2, ap-south-1, ap-southeast-2, eu-west-1, us-east-1,
|
756
|
-
# us-east-2, us-west-2)
|
780
|
+
# us-east-2, us-west-2): ` 5.6.10a`
|
757
781
|
#
|
758
782
|
# ^
|
759
783
|
#
|
760
784
|
# **MariaDB**
|
761
785
|
#
|
762
|
-
# *
|
763
|
-
# 10.1.16`
|
786
|
+
# * `10.1.19` (supported in all AWS regions)
|
764
787
|
#
|
765
|
-
# *
|
766
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
767
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
768
|
-
# us-west-2):** ` 10.1.14`
|
788
|
+
# * `10.1.14` (supported in all regions except us-east-2)
|
769
789
|
#
|
770
|
-
# * **Version 10.0 (available in all AWS regions):** ` 10.0.24`
|
771
790
|
#
|
772
|
-
#
|
773
|
-
#
|
774
|
-
#
|
775
|
-
#
|
791
|
+
#
|
792
|
+
# * `10.0.28` (supported in all AWS regions)
|
793
|
+
#
|
794
|
+
# * `10.0.24` (supported in all AWS regions)
|
795
|
+
#
|
796
|
+
# * `10.0.17` (supported in all regions except us-east-2, ca-central-1,
|
797
|
+
# eu-west-2)
|
776
798
|
#
|
777
799
|
# **Microsoft SQL Server 2016**
|
778
800
|
#
|
779
|
-
# * `13.00.
|
780
|
-
# except sa-east-1)
|
801
|
+
# * `13.00.4422.0.v1` (supported for all editions, and all AWS regions)
|
781
802
|
#
|
782
|
-
#
|
803
|
+
# * `13.00.2164.0.v1` (supported for all editions, and all AWS regions)
|
783
804
|
#
|
784
805
|
# **Microsoft SQL Server 2014**
|
785
806
|
#
|
807
|
+
# * `12.00.5546.0.v1` (supported for all editions, and all AWS regions)
|
808
|
+
#
|
786
809
|
# * `12.00.5000.0.v1` (supported for all editions, and all AWS regions)
|
787
810
|
#
|
788
811
|
# * `12.00.4422.0.v1` (supported for all editions except Enterprise
|
789
|
-
# Edition, and all AWS regions except
|
812
|
+
# Edition, and all AWS regions except ca-central-1 and eu-west-2)
|
790
813
|
#
|
791
814
|
# **Microsoft SQL Server 2012**
|
792
815
|
#
|
816
|
+
# * `11.00.6594.0.v1` (supported for all editions, and all AWS regions)
|
817
|
+
#
|
793
818
|
# * `11.00.6020.0.v1` (supported for all editions, and all AWS regions)
|
794
819
|
#
|
795
820
|
# * `11.00.5058.0.v1` (supported for all editions, and all AWS regions
|
796
|
-
# except us-east-2)
|
821
|
+
# except us-east-2, ca-central-1, and eu-west-2)
|
797
822
|
#
|
798
823
|
# * `11.00.2100.60.v1` (supported for all editions, and all AWS regions
|
799
|
-
# except us-east-2)
|
824
|
+
# except us-east-2, ca-central-1, and eu-west-2)
|
800
825
|
#
|
801
826
|
# **Microsoft SQL Server 2008 R2**
|
802
827
|
#
|
803
828
|
# * `10.50.6529.0.v1` (supported for all editions, and all AWS regions
|
804
|
-
# except us-east-2)
|
829
|
+
# except us-east-2, ca-central-1, and eu-west-2)
|
805
830
|
#
|
806
831
|
# * `10.50.6000.34.v1` (supported for all editions, and all AWS regions
|
807
|
-
# except us-east-2)
|
832
|
+
# except us-east-2, ca-central-1, and eu-west-2)
|
808
833
|
#
|
809
834
|
# * `10.50.2789.0.v1` (supported for all editions, and all AWS regions
|
810
|
-
# except us-east-2)
|
835
|
+
# except us-east-2, ca-central-1, and eu-west-2)
|
811
836
|
#
|
812
837
|
# **MySQL**
|
813
838
|
#
|
814
|
-
# *
|
839
|
+
# * `5.7.17` (supported in all AWS regions)
|
840
|
+
#
|
841
|
+
# * `5.7.16` (supported in all AWS regions)
|
842
|
+
#
|
843
|
+
# * `5.7.11` (supported in all AWS regions)
|
844
|
+
#
|
845
|
+
# * `5.7.10` (supported in all regions except us-east-2, ca-central-1,
|
846
|
+
# eu-west-2)
|
847
|
+
#
|
848
|
+
#
|
849
|
+
#
|
850
|
+
# * `5.6.35` (supported in all AWS regions)
|
851
|
+
#
|
852
|
+
# * `5.6.34` (supported in all AWS regions)
|
815
853
|
#
|
816
|
-
# *
|
817
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
818
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-gov-west-1,
|
819
|
-
# us-west-1, us-west-2):** ` 5.7.10`
|
854
|
+
# * `5.6.29` (supported in all AWS regions)
|
820
855
|
#
|
821
|
-
# *
|
856
|
+
# * `5.6.27` (supported in all regions except us-east-2, ca-central-1,
|
857
|
+
# eu-west-2)
|
822
858
|
#
|
823
|
-
# *
|
824
|
-
#
|
825
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-gov-west-1,
|
826
|
-
# us-west-1, us-west-2):** ` 5.6.27`
|
859
|
+
# * `5.6.23` (supported in all regions except us-east-2, ap-south-1,
|
860
|
+
# ca-central-1, eu-west-2)
|
827
861
|
#
|
828
|
-
# *
|
829
|
-
# ap-northeast-2,
|
830
|
-
# eu-west-1, sa-east-1, us-east-1, us-gov-west-1, us-west-1,
|
831
|
-
# us-west-2):** ` 5.6.23`
|
862
|
+
# * `5.6.22` (supported in all regions except us-east-2, ap-south-1,
|
863
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
832
864
|
#
|
833
|
-
# *
|
834
|
-
# ap-
|
835
|
-
# us-east-1, us-gov-west-1, us-west-1, us-west-2):** ` 5.6.19a |
|
836
|
-
# 5.6.19b | 5.6.21 | 5.6.21b | 5.6.22`
|
865
|
+
# * `5.6.21b` (supported in all regions except us-east-2, ap-south-1,
|
866
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
837
867
|
#
|
838
|
-
# *
|
868
|
+
# * `5.6.21` (supported in all regions except us-east-2, ap-south-1,
|
869
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
839
870
|
#
|
840
|
-
# *
|
841
|
-
# ap-
|
842
|
-
#
|
871
|
+
# * `5.6.19b` (supported in all regions except us-east-2, ap-south-1,
|
872
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
873
|
+
#
|
874
|
+
# * `5.6.19a` (supported in all regions except us-east-2, ap-south-1,
|
875
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
876
|
+
#
|
877
|
+
#
|
878
|
+
#
|
879
|
+
# * `5.5.54` (supported in all AWS regions)
|
880
|
+
#
|
881
|
+
# * `5.5.53` (supported in all AWS regions)
|
882
|
+
#
|
883
|
+
# * `5.5.46` (supported in all AWS regions)
|
843
884
|
#
|
844
885
|
# **Oracle 12c**
|
845
886
|
#
|
887
|
+
# * `12.1.0.2.v8` (supported for EE in all AWS regions, and SE2 in all
|
888
|
+
# AWS regions except us-gov-west-1)
|
889
|
+
#
|
846
890
|
# * `12.1.0.2.v7` (supported for EE in all AWS regions, and SE2 in all
|
847
891
|
# AWS regions except us-gov-west-1)
|
848
892
|
#
|
@@ -866,6 +910,8 @@ module Aws::RDS
|
|
866
910
|
#
|
867
911
|
# **Oracle 11g**
|
868
912
|
#
|
913
|
+
# * `11.2.0.4.v12` (supported for EE, SE1, and SE, in all AWS regions)
|
914
|
+
#
|
869
915
|
# * `11.2.0.4.v11` (supported for EE, SE1, and SE, in all AWS regions)
|
870
916
|
#
|
871
917
|
# * `11.2.0.4.v10` (supported for EE, SE1, and SE, in all AWS regions)
|
@@ -888,14 +934,13 @@ module Aws::RDS
|
|
888
934
|
#
|
889
935
|
# **PostgreSQL**
|
890
936
|
#
|
891
|
-
# * **Version 9.6:** ` 9.6.1`
|
937
|
+
# * **Version 9.6.x:** ` 9.6.1 | 9.6.2`
|
892
938
|
#
|
893
|
-
# * **Version 9.5:** `9.5.4 | 9.5.2`
|
939
|
+
# * **Version 9.5.x:** `9.5.6 | 9.5.4 | 9.5.2`
|
894
940
|
#
|
895
|
-
# * **Version 9.4:** `
|
941
|
+
# * **Version 9.4.x:** `9.4.11 | 9.4.9 | 9.4.7`
|
896
942
|
#
|
897
|
-
# * **Version 9.3:** `
|
898
|
-
# | 9.3.3 | 9.3.2 | 9.3.1`
|
943
|
+
# * **Version 9.3.x:** `9.3.16 | 9.3.14 | 9.3.12`
|
899
944
|
# @option options [Boolean] :auto_minor_version_upgrade
|
900
945
|
# Indicates that minor engine upgrades will be applied automatically to
|
901
946
|
# the DB instance during the maintenance window.
|
@@ -1042,7 +1087,7 @@ module Aws::RDS
|
|
1042
1087
|
# accounts to database accounts; otherwise false.
|
1043
1088
|
#
|
1044
1089
|
# You can enable IAM database authentication for the following database
|
1045
|
-
# engines
|
1090
|
+
# engines:
|
1046
1091
|
#
|
1047
1092
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
1048
1093
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -760,41 +760,42 @@ module Aws::RDS
|
|
760
760
|
# ],
|
761
761
|
# copy_tags: false,
|
762
762
|
# pre_signed_url: "String",
|
763
|
+
# option_group_name: "String",
|
763
764
|
# source_region: "String",
|
764
765
|
# }
|
765
766
|
#
|
766
767
|
# @!attribute [rw] source_db_snapshot_identifier
|
767
768
|
# The identifier for the source DB snapshot.
|
768
769
|
#
|
769
|
-
# If
|
770
|
-
#
|
770
|
+
# If the source snapshot is in the same region as the copy, specify a
|
771
|
+
# valid DB snapshot identifier. For example,
|
772
|
+
# `rds:mysql-instance1-snapshot-20130805`.
|
773
|
+
#
|
774
|
+
# If the source snapshot is in a different region than the copy,
|
775
|
+
# specify a valid DB snapshot ARN. For example,
|
776
|
+
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805`.
|
777
|
+
#
|
778
|
+
# If you are copying from a shared manual DB snapshot, this parameter
|
779
|
+
# must be the Amazon Resource Name (ARN) of the shared DB snapshot.
|
771
780
|
#
|
772
|
-
#
|
773
|
-
#
|
781
|
+
# If you are copying an encrypted snapshot this parameter must be in
|
782
|
+
# the ARN format for the source region, and must match the
|
783
|
+
# `SourceDBSnapshotIdentifier` in the `PreSignedUrl` parameter.
|
774
784
|
#
|
775
785
|
# Constraints:
|
776
786
|
#
|
777
787
|
# * Must specify a valid system snapshot in the "available" state.
|
778
788
|
#
|
779
|
-
#
|
780
|
-
# a valid DB snapshot identifier.
|
781
|
-
#
|
782
|
-
# * If the source snapshot is in a different region than the copy,
|
783
|
-
# specify a valid DB snapshot ARN. For more information, go to [
|
784
|
-
# Copying a DB Snapshot or DB Cluster Snapshot][1].
|
789
|
+
# ^
|
785
790
|
#
|
786
791
|
# Example: `rds:mydb-2012-04-02-00-01`
|
787
792
|
#
|
788
793
|
# Example:
|
789
794
|
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805`
|
790
|
-
#
|
791
|
-
#
|
792
|
-
#
|
793
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html
|
794
795
|
# @return [String]
|
795
796
|
#
|
796
797
|
# @!attribute [rw] target_db_snapshot_identifier
|
797
|
-
# The identifier for the
|
798
|
+
# The identifier for the copy of the snapshot.
|
798
799
|
#
|
799
800
|
# Constraints:
|
800
801
|
#
|
@@ -814,27 +815,23 @@ module Aws::RDS
|
|
814
815
|
# the Amazon Resource Name (ARN), KMS key identifier, or the KMS key
|
815
816
|
# alias for the KMS encryption key.
|
816
817
|
#
|
817
|
-
# If you copy an unencrypted DB snapshot and specify a value for the
|
818
|
-
# `KmsKeyId` parameter, Amazon RDS encrypts the target DB snapshot
|
819
|
-
# using the specified KMS encryption key.
|
820
|
-
#
|
821
818
|
# If you copy an encrypted DB snapshot from your AWS account, you can
|
822
|
-
# specify a value for
|
823
|
-
# encryption key. If you don't specify a value for
|
824
|
-
# the copy of the DB snapshot is encrypted with the
|
825
|
-
# the source DB snapshot.
|
826
|
-
#
|
827
|
-
# If you copy an encrypted snapshot to a different AWS region, then
|
828
|
-
# you must specify a KMS key for the destination AWS region.
|
819
|
+
# specify a value for this parameter to encrypt the copy with a new
|
820
|
+
# KMS encryption key. If you don't specify a value for this
|
821
|
+
# parameter, then the copy of the DB snapshot is encrypted with the
|
822
|
+
# same KMS key as the source DB snapshot.
|
829
823
|
#
|
830
824
|
# If you copy an encrypted DB snapshot that is shared from another AWS
|
831
|
-
# account, then you must specify a value for
|
825
|
+
# account, then you must specify a value for this parameter.
|
826
|
+
#
|
827
|
+
# If you specify this parameter when you copy an unencrypted snapshot,
|
828
|
+
# the copy is encrypted.
|
832
829
|
#
|
833
|
-
#
|
834
|
-
#
|
835
|
-
#
|
836
|
-
#
|
837
|
-
#
|
830
|
+
# If you copy an encrypted snapshot to a different AWS region, then
|
831
|
+
# you must specify a KMS key for the destination AWS region. KMS
|
832
|
+
# encryption keys are specific to the region that they are created in,
|
833
|
+
# and you cannot use encryption keys from one region in another
|
834
|
+
# region.
|
838
835
|
# @return [String]
|
839
836
|
#
|
840
837
|
# @!attribute [rw] tags
|
@@ -848,9 +845,14 @@ module Aws::RDS
|
|
848
845
|
#
|
849
846
|
# @!attribute [rw] pre_signed_url
|
850
847
|
# The URL that contains a Signature Version 4 signed request for the
|
851
|
-
# `CopyDBSnapshot` API action in the AWS region that contains
|
852
|
-
# source DB snapshot to copy.
|
853
|
-
#
|
848
|
+
# `CopyDBSnapshot` API action in the source AWS region that contains
|
849
|
+
# the source DB snapshot to copy.
|
850
|
+
#
|
851
|
+
# You must specify this parameter when you copy an encrypted DB
|
852
|
+
# snapshot from another AWS region by using the Amazon RDS API. You
|
853
|
+
# can specify the source region option instead of this parameter when
|
854
|
+
# you copy an encrypted DB snapshot from another AWS region by using
|
855
|
+
# the AWS CLI.
|
854
856
|
#
|
855
857
|
# The presigned URL must be a valid request for the `CopyDBSnapshot`
|
856
858
|
# API action that can be executed in the source region that contains
|
@@ -883,9 +885,9 @@ module Aws::RDS
|
|
883
885
|
# like the following example:
|
884
886
|
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20161115`.
|
885
887
|
#
|
886
|
-
# To learn how to generate a Signature Version 4 signed request, see
|
887
|
-
# Authenticating Requests: Using Query Parameters (AWS Signature
|
888
|
-
# Version 4)][1] and [
|
888
|
+
# To learn how to generate a Signature Version 4 signed request, see
|
889
|
+
# [Authenticating Requests: Using Query Parameters (AWS Signature
|
890
|
+
# Version 4)][1] and [Signature Version 4 Signing Process][2].
|
889
891
|
#
|
890
892
|
#
|
891
893
|
#
|
@@ -893,6 +895,21 @@ module Aws::RDS
|
|
893
895
|
# [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
894
896
|
# @return [String]
|
895
897
|
#
|
898
|
+
# @!attribute [rw] option_group_name
|
899
|
+
# The name of an option group to associate with the copy.
|
900
|
+
#
|
901
|
+
# Specify this option if you are copying a snapshot from one AWS
|
902
|
+
# region to another, and your DB instance uses a non-default option
|
903
|
+
# group. If your source DB instance uses Transparent Data Encryption
|
904
|
+
# for Oracle or Microsoft SQL Server, you must specify this option
|
905
|
+
# when copying across regions. For more information, see [Option Group
|
906
|
+
# Considerations][1].
|
907
|
+
#
|
908
|
+
#
|
909
|
+
#
|
910
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopySnapshot.Options
|
911
|
+
# @return [String]
|
912
|
+
#
|
896
913
|
# @!attribute [rw] destination_region
|
897
914
|
# @return [String]
|
898
915
|
#
|
@@ -910,6 +927,7 @@ module Aws::RDS
|
|
910
927
|
:tags,
|
911
928
|
:copy_tags,
|
912
929
|
:pre_signed_url,
|
930
|
+
:option_group_name,
|
913
931
|
:destination_region,
|
914
932
|
:source_region)
|
915
933
|
include Aws::Structure
|
@@ -1078,7 +1096,7 @@ module Aws::RDS
|
|
1078
1096
|
# @return [String]
|
1079
1097
|
#
|
1080
1098
|
# @!attribute [rw] database_name
|
1081
|
-
# The name for your database of up to
|
1099
|
+
# The name for your database of up to 64 alpha-numeric characters. If
|
1082
1100
|
# you do not provide a name, Amazon RDS will not create a database in
|
1083
1101
|
# the DB cluster you are creating.
|
1084
1102
|
# @return [String]
|
@@ -1613,7 +1631,9 @@ module Aws::RDS
|
|
1613
1631
|
#
|
1614
1632
|
# **Oracle**
|
1615
1633
|
#
|
1616
|
-
# The Oracle System ID (SID) of the created DB instance.
|
1634
|
+
# The Oracle System ID (SID) of the created DB instance. If you
|
1635
|
+
# specify `null`, the default value `ORCL` is used. You can't specify
|
1636
|
+
# the string NULL, or any other reserved word, for `DBName`.
|
1617
1637
|
#
|
1618
1638
|
# Default: `ORCL`
|
1619
1639
|
#
|
@@ -1708,11 +1728,33 @@ module Aws::RDS
|
|
1708
1728
|
# @!attribute [rw] engine
|
1709
1729
|
# The name of the database engine to be used for this instance.
|
1710
1730
|
#
|
1711
|
-
# Valid Values: `mysql` \| `mariadb` \| `oracle-se1` \| `oracle-se2`
|
1712
|
-
# \| `oracle-se` \| `oracle-ee` \| `sqlserver-ee` \| `sqlserver-se` \|
|
1713
|
-
# `sqlserver-ex` \| `sqlserver-web` \| `postgres` \| `aurora`
|
1714
|
-
#
|
1715
1731
|
# Not every database engine is available for every AWS region.
|
1732
|
+
#
|
1733
|
+
# Valid Values:
|
1734
|
+
#
|
1735
|
+
# * `aurora`
|
1736
|
+
#
|
1737
|
+
# * `mariadb`
|
1738
|
+
#
|
1739
|
+
# * `mysql`
|
1740
|
+
#
|
1741
|
+
# * `oracle-ee`
|
1742
|
+
#
|
1743
|
+
# * `oracle-se2`
|
1744
|
+
#
|
1745
|
+
# * `oracle-se1`
|
1746
|
+
#
|
1747
|
+
# * `oracle-se`
|
1748
|
+
#
|
1749
|
+
# * `postgres`
|
1750
|
+
#
|
1751
|
+
# * `sqlserver-ee`
|
1752
|
+
#
|
1753
|
+
# * `sqlserver-se`
|
1754
|
+
#
|
1755
|
+
# * `sqlserver-ex`
|
1756
|
+
#
|
1757
|
+
# * `sqlserver-web`
|
1716
1758
|
# @return [String]
|
1717
1759
|
#
|
1718
1760
|
# @!attribute [rw] master_username
|
@@ -1980,100 +2022,124 @@ module Aws::RDS
|
|
1980
2022
|
#
|
1981
2023
|
# **Amazon Aurora**
|
1982
2024
|
#
|
1983
|
-
# *
|
2025
|
+
# * Version 5.6 (available in these AWS regions: ap-northeast-1,
|
1984
2026
|
# ap-northeast-2, ap-south-1, ap-southeast-2, eu-west-1, us-east-1,
|
1985
|
-
# us-east-2, us-west-2)
|
2027
|
+
# us-east-2, us-west-2): ` 5.6.10a`
|
1986
2028
|
#
|
1987
2029
|
# ^
|
1988
2030
|
#
|
1989
2031
|
# **MariaDB**
|
1990
2032
|
#
|
1991
|
-
# *
|
1992
|
-
#
|
2033
|
+
# * `10.1.19` (supported in all AWS regions)
|
2034
|
+
#
|
2035
|
+
# * `10.1.14` (supported in all regions except us-east-2)
|
1993
2036
|
#
|
1994
|
-
# * **Version 10.1 (available in these AWS regions: ap-northeast-1,
|
1995
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1996
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
1997
|
-
# us-west-2):** ` 10.1.14`
|
1998
2037
|
#
|
1999
|
-
# * **Version 10.0 (available in all AWS regions):** ` 10.0.24`
|
2000
2038
|
#
|
2001
|
-
# *
|
2002
|
-
#
|
2003
|
-
#
|
2004
|
-
#
|
2039
|
+
# * `10.0.28` (supported in all AWS regions)
|
2040
|
+
#
|
2041
|
+
# * `10.0.24` (supported in all AWS regions)
|
2042
|
+
#
|
2043
|
+
# * `10.0.17` (supported in all regions except us-east-2,
|
2044
|
+
# ca-central-1, eu-west-2)
|
2005
2045
|
#
|
2006
2046
|
# **Microsoft SQL Server 2016**
|
2007
2047
|
#
|
2008
|
-
# * `13.00.
|
2009
|
-
#
|
2048
|
+
# * `13.00.4422.0.v1` (supported for all editions, and all AWS
|
2049
|
+
# regions)
|
2010
2050
|
#
|
2011
|
-
#
|
2051
|
+
# * `13.00.2164.0.v1` (supported for all editions, and all AWS
|
2052
|
+
# regions)
|
2012
2053
|
#
|
2013
2054
|
# **Microsoft SQL Server 2014**
|
2014
2055
|
#
|
2056
|
+
# * `12.00.5546.0.v1` (supported for all editions, and all AWS
|
2057
|
+
# regions)
|
2058
|
+
#
|
2015
2059
|
# * `12.00.5000.0.v1` (supported for all editions, and all AWS
|
2016
2060
|
# regions)
|
2017
2061
|
#
|
2018
2062
|
# * `12.00.4422.0.v1` (supported for all editions except Enterprise
|
2019
|
-
# Edition, and all AWS regions except
|
2063
|
+
# Edition, and all AWS regions except ca-central-1 and eu-west-2)
|
2020
2064
|
#
|
2021
2065
|
# **Microsoft SQL Server 2012**
|
2022
2066
|
#
|
2067
|
+
# * `11.00.6594.0.v1` (supported for all editions, and all AWS
|
2068
|
+
# regions)
|
2069
|
+
#
|
2023
2070
|
# * `11.00.6020.0.v1` (supported for all editions, and all AWS
|
2024
2071
|
# regions)
|
2025
2072
|
#
|
2026
2073
|
# * `11.00.5058.0.v1` (supported for all editions, and all AWS regions
|
2027
|
-
# except us-east-2)
|
2074
|
+
# except us-east-2, ca-central-1, and eu-west-2)
|
2028
2075
|
#
|
2029
2076
|
# * `11.00.2100.60.v1` (supported for all editions, and all AWS
|
2030
|
-
# regions except us-east-2)
|
2077
|
+
# regions except us-east-2, ca-central-1, and eu-west-2)
|
2031
2078
|
#
|
2032
2079
|
# **Microsoft SQL Server 2008 R2**
|
2033
2080
|
#
|
2034
2081
|
# * `10.50.6529.0.v1` (supported for all editions, and all AWS regions
|
2035
|
-
# except us-east-2)
|
2082
|
+
# except us-east-2, ca-central-1, and eu-west-2)
|
2036
2083
|
#
|
2037
2084
|
# * `10.50.6000.34.v1` (supported for all editions, and all AWS
|
2038
|
-
# regions except us-east-2)
|
2085
|
+
# regions except us-east-2, ca-central-1, and eu-west-2)
|
2039
2086
|
#
|
2040
2087
|
# * `10.50.2789.0.v1` (supported for all editions, and all AWS regions
|
2041
|
-
# except us-east-2)
|
2088
|
+
# except us-east-2, ca-central-1, and eu-west-2)
|
2042
2089
|
#
|
2043
2090
|
# **MySQL**
|
2044
2091
|
#
|
2045
|
-
# *
|
2092
|
+
# * `5.7.17` (supported in all AWS regions)
|
2093
|
+
#
|
2094
|
+
# * `5.7.16` (supported in all AWS regions)
|
2095
|
+
#
|
2096
|
+
# * `5.7.11` (supported in all AWS regions)
|
2097
|
+
#
|
2098
|
+
# * `5.7.10` (supported in all regions except us-east-2, ca-central-1,
|
2099
|
+
# eu-west-2)
|
2100
|
+
#
|
2101
|
+
#
|
2102
|
+
#
|
2103
|
+
# * `5.6.35` (supported in all AWS regions)
|
2104
|
+
#
|
2105
|
+
# * `5.6.34` (supported in all AWS regions)
|
2106
|
+
#
|
2107
|
+
# * `5.6.29` (supported in all AWS regions)
|
2108
|
+
#
|
2109
|
+
# * `5.6.27` (supported in all regions except us-east-2, ca-central-1,
|
2110
|
+
# eu-west-2)
|
2111
|
+
#
|
2112
|
+
# * `5.6.23` (supported in all regions except us-east-2, ap-south-1,
|
2113
|
+
# ca-central-1, eu-west-2)
|
2046
2114
|
#
|
2047
|
-
# *
|
2048
|
-
# ap-northeast-2,
|
2049
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-gov-west-1,
|
2050
|
-
# us-west-1, us-west-2):** ` 5.7.10`
|
2115
|
+
# * `5.6.22` (supported in all regions except us-east-2, ap-south-1,
|
2116
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
2051
2117
|
#
|
2052
|
-
# *
|
2118
|
+
# * `5.6.21b` (supported in all regions except us-east-2, ap-south-1,
|
2119
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
2053
2120
|
#
|
2054
|
-
# *
|
2055
|
-
# ap-northeast-2,
|
2056
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-gov-west-1,
|
2057
|
-
# us-west-1, us-west-2):** ` 5.6.27`
|
2121
|
+
# * `5.6.21` (supported in all regions except us-east-2, ap-south-1,
|
2122
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
2058
2123
|
#
|
2059
|
-
# *
|
2060
|
-
# ap-northeast-2,
|
2061
|
-
# eu-west-1, sa-east-1, us-east-1, us-gov-west-1, us-west-1,
|
2062
|
-
# us-west-2):** ` 5.6.23`
|
2124
|
+
# * `5.6.19b` (supported in all regions except us-east-2, ap-south-1,
|
2125
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
2063
2126
|
#
|
2064
|
-
# *
|
2065
|
-
# ap-
|
2066
|
-
# sa-east-1, us-east-1, us-gov-west-1, us-west-1, us-west-2):** `
|
2067
|
-
# 5.6.19a | 5.6.19b | 5.6.21 | 5.6.21b | 5.6.22`
|
2127
|
+
# * `5.6.19a` (supported in all regions except us-east-2, ap-south-1,
|
2128
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
2068
2129
|
#
|
2069
|
-
# * **Version 5.5 (available in all AWS regions):** ` 5.5.46`
|
2070
2130
|
#
|
2071
|
-
#
|
2072
|
-
#
|
2073
|
-
#
|
2131
|
+
#
|
2132
|
+
# * `5.5.54` (supported in all AWS regions)
|
2133
|
+
#
|
2134
|
+
# * `5.5.53` (supported in all AWS regions)
|
2135
|
+
#
|
2136
|
+
# * `5.5.46` (supported in all AWS regions)
|
2074
2137
|
#
|
2075
2138
|
# **Oracle 12c**
|
2076
2139
|
#
|
2140
|
+
# * `12.1.0.2.v8` (supported for EE in all AWS regions, and SE2 in all
|
2141
|
+
# AWS regions except us-gov-west-1)
|
2142
|
+
#
|
2077
2143
|
# * `12.1.0.2.v7` (supported for EE in all AWS regions, and SE2 in all
|
2078
2144
|
# AWS regions except us-gov-west-1)
|
2079
2145
|
#
|
@@ -2097,6 +2163,8 @@ module Aws::RDS
|
|
2097
2163
|
#
|
2098
2164
|
# **Oracle 11g**
|
2099
2165
|
#
|
2166
|
+
# * `11.2.0.4.v12` (supported for EE, SE1, and SE, in all AWS regions)
|
2167
|
+
#
|
2100
2168
|
# * `11.2.0.4.v11` (supported for EE, SE1, and SE, in all AWS regions)
|
2101
2169
|
#
|
2102
2170
|
# * `11.2.0.4.v10` (supported for EE, SE1, and SE, in all AWS regions)
|
@@ -2119,14 +2187,13 @@ module Aws::RDS
|
|
2119
2187
|
#
|
2120
2188
|
# **PostgreSQL**
|
2121
2189
|
#
|
2122
|
-
# * **Version 9.6:** ` 9.6.1`
|
2190
|
+
# * **Version 9.6.x:** ` 9.6.1 | 9.6.2`
|
2123
2191
|
#
|
2124
|
-
# * **Version 9.5:** `9.5.4 | 9.5.2`
|
2192
|
+
# * **Version 9.5.x:** `9.5.6 | 9.5.4 | 9.5.2`
|
2125
2193
|
#
|
2126
|
-
# * **Version 9.4:** `
|
2194
|
+
# * **Version 9.4.x:** `9.4.11 | 9.4.9 | 9.4.7`
|
2127
2195
|
#
|
2128
|
-
# * **Version 9.3:** `
|
2129
|
-
# 9.3.5 | 9.3.3 | 9.3.2 | 9.3.1`
|
2196
|
+
# * **Version 9.3.x:** `9.3.16 | 9.3.14 | 9.3.12`
|
2130
2197
|
# @return [String]
|
2131
2198
|
#
|
2132
2199
|
# @!attribute [rw] auto_minor_version_upgrade
|
@@ -2315,7 +2382,7 @@ module Aws::RDS
|
|
2315
2382
|
# accounts to database accounts; otherwise false.
|
2316
2383
|
#
|
2317
2384
|
# You can enable IAM database authentication for the following
|
2318
|
-
# database engines
|
2385
|
+
# database engines:
|
2319
2386
|
#
|
2320
2387
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
2321
2388
|
#
|
@@ -2716,6 +2783,10 @@ module Aws::RDS
|
|
2716
2783
|
#
|
2717
2784
|
# * ModifyDBInstance
|
2718
2785
|
#
|
2786
|
+
# * StopDBInstance
|
2787
|
+
#
|
2788
|
+
# * StartDBInstance
|
2789
|
+
#
|
2719
2790
|
# This data type is used as a response element in the
|
2720
2791
|
# DescribeDBInstances action.
|
2721
2792
|
# @return [Types::DBInstance]
|
@@ -2737,6 +2808,10 @@ module Aws::RDS
|
|
2737
2808
|
#
|
2738
2809
|
# * ModifyDBInstance
|
2739
2810
|
#
|
2811
|
+
# * StopDBInstance
|
2812
|
+
#
|
2813
|
+
# * StartDBInstance
|
2814
|
+
#
|
2740
2815
|
# This data type is used as a response element in the
|
2741
2816
|
# DescribeDBInstances action.
|
2742
2817
|
# @return [Types::DBInstance]
|
@@ -3409,6 +3484,10 @@ module Aws::RDS
|
|
3409
3484
|
# to database accounts is enabled; otherwise false.
|
3410
3485
|
# @return [Boolean]
|
3411
3486
|
#
|
3487
|
+
# @!attribute [rw] clone_group_id
|
3488
|
+
# Identifies the clone group to which the DB cluster is associated.
|
3489
|
+
# @return [String]
|
3490
|
+
#
|
3412
3491
|
# @!attribute [rw] cluster_create_time
|
3413
3492
|
# Specifies the time when the DB cluster was created, in Universal
|
3414
3493
|
# Coordinated Time (UTC).
|
@@ -3450,6 +3529,7 @@ module Aws::RDS
|
|
3450
3529
|
:db_cluster_arn,
|
3451
3530
|
:associated_roles,
|
3452
3531
|
:iam_database_authentication_enabled,
|
3532
|
+
:clone_group_id,
|
3453
3533
|
:cluster_create_time)
|
3454
3534
|
include Aws::Structure
|
3455
3535
|
end
|
@@ -3956,6 +4036,10 @@ module Aws::RDS
|
|
3956
4036
|
#
|
3957
4037
|
# * ModifyDBInstance
|
3958
4038
|
#
|
4039
|
+
# * StopDBInstance
|
4040
|
+
#
|
4041
|
+
# * StartDBInstance
|
4042
|
+
#
|
3959
4043
|
# This data type is used as a response element in the
|
3960
4044
|
# DescribeDBInstances action.
|
3961
4045
|
#
|
@@ -5125,6 +5209,10 @@ module Aws::RDS
|
|
5125
5209
|
#
|
5126
5210
|
# * ModifyDBInstance
|
5127
5211
|
#
|
5212
|
+
# * StopDBInstance
|
5213
|
+
#
|
5214
|
+
# * StartDBInstance
|
5215
|
+
#
|
5128
5216
|
# This data type is used as a response element in the
|
5129
5217
|
# DescribeDBInstances action.
|
5130
5218
|
# @return [Types::DBInstance]
|
@@ -8834,6 +8922,10 @@ module Aws::RDS
|
|
8834
8922
|
#
|
8835
8923
|
# * ModifyDBInstance
|
8836
8924
|
#
|
8925
|
+
# * StopDBInstance
|
8926
|
+
#
|
8927
|
+
# * StartDBInstance
|
8928
|
+
#
|
8837
8929
|
# This data type is used as a response element in the
|
8838
8930
|
# DescribeDBInstances action.
|
8839
8931
|
# @return [Types::DBInstance]
|
@@ -10152,6 +10244,10 @@ module Aws::RDS
|
|
10152
10244
|
#
|
10153
10245
|
# * ModifyDBInstance
|
10154
10246
|
#
|
10247
|
+
# * StopDBInstance
|
10248
|
+
#
|
10249
|
+
# * StartDBInstance
|
10250
|
+
#
|
10155
10251
|
# This data type is used as a response element in the
|
10156
10252
|
# DescribeDBInstances action.
|
10157
10253
|
# @return [Types::DBInstance]
|
@@ -10270,6 +10366,10 @@ module Aws::RDS
|
|
10270
10366
|
#
|
10271
10367
|
# * ModifyDBInstance
|
10272
10368
|
#
|
10369
|
+
# * StopDBInstance
|
10370
|
+
#
|
10371
|
+
# * StartDBInstance
|
10372
|
+
#
|
10273
10373
|
# This data type is used as a response element in the
|
10274
10374
|
# DescribeDBInstances action.
|
10275
10375
|
# @return [Types::DBInstance]
|
@@ -11233,6 +11333,7 @@ module Aws::RDS
|
|
11233
11333
|
#
|
11234
11334
|
# {
|
11235
11335
|
# db_cluster_identifier: "String", # required
|
11336
|
+
# restore_type: "String",
|
11236
11337
|
# source_db_cluster_identifier: "String", # required
|
11237
11338
|
# restore_to_time: Time.now,
|
11238
11339
|
# use_latest_restorable_time: false,
|
@@ -11262,6 +11363,23 @@ module Aws::RDS
|
|
11262
11363
|
# * Cannot end with a hyphen or contain two consecutive hyphens
|
11263
11364
|
# @return [String]
|
11264
11365
|
#
|
11366
|
+
# @!attribute [rw] restore_type
|
11367
|
+
# The type of restore to be performed. You can specify one of the
|
11368
|
+
# following values:
|
11369
|
+
#
|
11370
|
+
# * `full-copy` - The new DB cluster is restored as a full copy of the
|
11371
|
+
# source DB cluster.
|
11372
|
+
#
|
11373
|
+
# * `copy-on-write` - The new DB cluster is restored as a clone of the
|
11374
|
+
# source DB cluster.
|
11375
|
+
#
|
11376
|
+
# Constraints: You cannot specify `copy-on-write` if the engine
|
11377
|
+
# version of the source DB cluster is earlier than 1.11.
|
11378
|
+
#
|
11379
|
+
# If you don't specify a `RestoreType` value, then the new DB cluster
|
11380
|
+
# is restored as a full copy of the source DB cluster.
|
11381
|
+
# @return [String]
|
11382
|
+
#
|
11265
11383
|
# @!attribute [rw] source_db_cluster_identifier
|
11266
11384
|
# The identifier of the source DB cluster from which to restore.
|
11267
11385
|
#
|
@@ -11286,8 +11404,13 @@ module Aws::RDS
|
|
11286
11404
|
#
|
11287
11405
|
# * Must be before the latest restorable time for the DB instance
|
11288
11406
|
#
|
11407
|
+
# * Must be specified if `UseLatestRestorableTime` parameter is not
|
11408
|
+
# provided
|
11409
|
+
#
|
11289
11410
|
# * Cannot be specified if `UseLatestRestorableTime` parameter is true
|
11290
11411
|
#
|
11412
|
+
# * Cannot be specified if `RestoreType` parameter is `copy-on-write`
|
11413
|
+
#
|
11291
11414
|
# Example: `2015-03-07T23:45:00Z`
|
11292
11415
|
# @return [Time]
|
11293
11416
|
#
|
@@ -11323,7 +11446,7 @@ module Aws::RDS
|
|
11323
11446
|
# @return [String]
|
11324
11447
|
#
|
11325
11448
|
# @!attribute [rw] vpc_security_group_ids
|
11326
|
-
# A
|
11449
|
+
# A list of VPC security groups that the new DB cluster belongs to.
|
11327
11450
|
# @return [Array<String>]
|
11328
11451
|
#
|
11329
11452
|
# @!attribute [rw] tags
|
@@ -11355,7 +11478,7 @@ module Aws::RDS
|
|
11355
11478
|
# * If the DB cluster is not encrypted, then the restored DB cluster
|
11356
11479
|
# is not encrypted.
|
11357
11480
|
#
|
11358
|
-
# If `DBClusterIdentifier` refers to a DB cluster that is
|
11481
|
+
# If `DBClusterIdentifier` refers to a DB cluster that is not
|
11359
11482
|
# encrypted, then the restore request is rejected.
|
11360
11483
|
# @return [String]
|
11361
11484
|
#
|
@@ -11371,6 +11494,7 @@ module Aws::RDS
|
|
11371
11494
|
#
|
11372
11495
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
11373
11496
|
:db_cluster_identifier,
|
11497
|
+
:restore_type,
|
11374
11498
|
:source_db_cluster_identifier,
|
11375
11499
|
:restore_to_time,
|
11376
11500
|
:use_latest_restorable_time,
|
@@ -11702,6 +11826,10 @@ module Aws::RDS
|
|
11702
11826
|
#
|
11703
11827
|
# * ModifyDBInstance
|
11704
11828
|
#
|
11829
|
+
# * StopDBInstance
|
11830
|
+
#
|
11831
|
+
# * StartDBInstance
|
11832
|
+
#
|
11705
11833
|
# This data type is used as a response element in the
|
11706
11834
|
# DescribeDBInstances action.
|
11707
11835
|
# @return [Types::DBInstance]
|
@@ -12023,6 +12151,10 @@ module Aws::RDS
|
|
12023
12151
|
#
|
12024
12152
|
# * ModifyDBInstance
|
12025
12153
|
#
|
12154
|
+
# * StopDBInstance
|
12155
|
+
#
|
12156
|
+
# * StartDBInstance
|
12157
|
+
#
|
12026
12158
|
# This data type is used as a response element in the
|
12027
12159
|
# DescribeDBInstances action.
|
12028
12160
|
# @return [Types::DBInstance]
|
@@ -12159,6 +12291,99 @@ module Aws::RDS
|
|
12159
12291
|
include Aws::Structure
|
12160
12292
|
end
|
12161
12293
|
|
12294
|
+
# @note When making an API call, you may pass StartDBInstanceMessage
|
12295
|
+
# data as a hash:
|
12296
|
+
#
|
12297
|
+
# {
|
12298
|
+
# db_instance_identifier: "String", # required
|
12299
|
+
# }
|
12300
|
+
#
|
12301
|
+
# @!attribute [rw] db_instance_identifier
|
12302
|
+
# The user-supplied instance identifier.
|
12303
|
+
# @return [String]
|
12304
|
+
#
|
12305
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceMessage AWS API Documentation
|
12306
|
+
#
|
12307
|
+
class StartDBInstanceMessage < Struct.new(
|
12308
|
+
:db_instance_identifier)
|
12309
|
+
include Aws::Structure
|
12310
|
+
end
|
12311
|
+
|
12312
|
+
# @!attribute [rw] db_instance
|
12313
|
+
# Contains the result of a successful invocation of the following
|
12314
|
+
# actions:
|
12315
|
+
#
|
12316
|
+
# * CreateDBInstance
|
12317
|
+
#
|
12318
|
+
# * DeleteDBInstance
|
12319
|
+
#
|
12320
|
+
# * ModifyDBInstance
|
12321
|
+
#
|
12322
|
+
# * StopDBInstance
|
12323
|
+
#
|
12324
|
+
# * StartDBInstance
|
12325
|
+
#
|
12326
|
+
# This data type is used as a response element in the
|
12327
|
+
# DescribeDBInstances action.
|
12328
|
+
# @return [Types::DBInstance]
|
12329
|
+
#
|
12330
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceResult AWS API Documentation
|
12331
|
+
#
|
12332
|
+
class StartDBInstanceResult < Struct.new(
|
12333
|
+
:db_instance)
|
12334
|
+
include Aws::Structure
|
12335
|
+
end
|
12336
|
+
|
12337
|
+
# @note When making an API call, you may pass StopDBInstanceMessage
|
12338
|
+
# data as a hash:
|
12339
|
+
#
|
12340
|
+
# {
|
12341
|
+
# db_instance_identifier: "String", # required
|
12342
|
+
# db_snapshot_identifier: "String",
|
12343
|
+
# }
|
12344
|
+
#
|
12345
|
+
# @!attribute [rw] db_instance_identifier
|
12346
|
+
# The user-supplied instance identifier.
|
12347
|
+
# @return [String]
|
12348
|
+
#
|
12349
|
+
# @!attribute [rw] db_snapshot_identifier
|
12350
|
+
# The user-supplied instance identifier of the DB Snapshot created
|
12351
|
+
# immediately before the DB instance is stopped.
|
12352
|
+
# @return [String]
|
12353
|
+
#
|
12354
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceMessage AWS API Documentation
|
12355
|
+
#
|
12356
|
+
class StopDBInstanceMessage < Struct.new(
|
12357
|
+
:db_instance_identifier,
|
12358
|
+
:db_snapshot_identifier)
|
12359
|
+
include Aws::Structure
|
12360
|
+
end
|
12361
|
+
|
12362
|
+
# @!attribute [rw] db_instance
|
12363
|
+
# Contains the result of a successful invocation of the following
|
12364
|
+
# actions:
|
12365
|
+
#
|
12366
|
+
# * CreateDBInstance
|
12367
|
+
#
|
12368
|
+
# * DeleteDBInstance
|
12369
|
+
#
|
12370
|
+
# * ModifyDBInstance
|
12371
|
+
#
|
12372
|
+
# * StopDBInstance
|
12373
|
+
#
|
12374
|
+
# * StartDBInstance
|
12375
|
+
#
|
12376
|
+
# This data type is used as a response element in the
|
12377
|
+
# DescribeDBInstances action.
|
12378
|
+
# @return [Types::DBInstance]
|
12379
|
+
#
|
12380
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceResult AWS API Documentation
|
12381
|
+
#
|
12382
|
+
class StopDBInstanceResult < Struct.new(
|
12383
|
+
:db_instance)
|
12384
|
+
include Aws::Structure
|
12385
|
+
end
|
12386
|
+
|
12162
12387
|
# This data type is used as a response element in the
|
12163
12388
|
# DescribeDBSubnetGroups action.
|
12164
12389
|
#
|