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
@@ -359,6 +359,10 @@ module Aws::RDS
|
|
359
359
|
SourceRegionList = Shapes::ListShape.new(name: 'SourceRegionList')
|
360
360
|
SourceRegionMessage = Shapes::StructureShape.new(name: 'SourceRegionMessage')
|
361
361
|
SourceType = Shapes::StringShape.new(name: 'SourceType')
|
362
|
+
StartDBInstanceMessage = Shapes::StructureShape.new(name: 'StartDBInstanceMessage')
|
363
|
+
StartDBInstanceResult = Shapes::StructureShape.new(name: 'StartDBInstanceResult')
|
364
|
+
StopDBInstanceMessage = Shapes::StructureShape.new(name: 'StopDBInstanceMessage')
|
365
|
+
StopDBInstanceResult = Shapes::StructureShape.new(name: 'StopDBInstanceResult')
|
362
366
|
StorageQuotaExceededFault = Shapes::StructureShape.new(name: 'StorageQuotaExceededFault')
|
363
367
|
StorageTypeNotSupportedFault = Shapes::StructureShape.new(name: 'StorageTypeNotSupportedFault')
|
364
368
|
String = Shapes::StringShape.new(name: 'String')
|
@@ -489,6 +493,7 @@ module Aws::RDS
|
|
489
493
|
CopyDBSnapshotMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
490
494
|
CopyDBSnapshotMessage.add_member(:copy_tags, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTags"))
|
491
495
|
CopyDBSnapshotMessage.add_member(:pre_signed_url, Shapes::ShapeRef.new(shape: String, location_name: "PreSignedUrl"))
|
496
|
+
CopyDBSnapshotMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "OptionGroupName"))
|
492
497
|
CopyDBSnapshotMessage.add_member(:destination_region, Shapes::ShapeRef.new(shape: String, location_name: "DestinationRegion", metadata: {"documented"=>false}))
|
493
498
|
CopyDBSnapshotMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
494
499
|
CopyDBSnapshotMessage.struct_class = Types::CopyDBSnapshotMessage
|
@@ -709,6 +714,7 @@ module Aws::RDS
|
|
709
714
|
DBCluster.add_member(:db_cluster_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterArn"))
|
710
715
|
DBCluster.add_member(:associated_roles, Shapes::ShapeRef.new(shape: DBClusterRoles, location_name: "AssociatedRoles"))
|
711
716
|
DBCluster.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
|
717
|
+
DBCluster.add_member(:clone_group_id, Shapes::ShapeRef.new(shape: String, location_name: "CloneGroupId"))
|
712
718
|
DBCluster.add_member(:cluster_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ClusterCreateTime"))
|
713
719
|
DBCluster.struct_class = Types::DBCluster
|
714
720
|
|
@@ -1804,6 +1810,7 @@ module Aws::RDS
|
|
1804
1810
|
RestoreDBClusterFromSnapshotResult.struct_class = Types::RestoreDBClusterFromSnapshotResult
|
1805
1811
|
|
1806
1812
|
RestoreDBClusterToPointInTimeMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
1813
|
+
RestoreDBClusterToPointInTimeMessage.add_member(:restore_type, Shapes::ShapeRef.new(shape: String, location_name: "RestoreType"))
|
1807
1814
|
RestoreDBClusterToPointInTimeMessage.add_member(:source_db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceDBClusterIdentifier"))
|
1808
1815
|
RestoreDBClusterToPointInTimeMessage.add_member(:restore_to_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "RestoreToTime"))
|
1809
1816
|
RestoreDBClusterToPointInTimeMessage.add_member(:use_latest_restorable_time, Shapes::ShapeRef.new(shape: Boolean, location_name: "UseLatestRestorableTime"))
|
@@ -1898,6 +1905,19 @@ module Aws::RDS
|
|
1898
1905
|
SourceRegionMessage.add_member(:source_regions, Shapes::ShapeRef.new(shape: SourceRegionList, location_name: "SourceRegions"))
|
1899
1906
|
SourceRegionMessage.struct_class = Types::SourceRegionMessage
|
1900
1907
|
|
1908
|
+
StartDBInstanceMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
1909
|
+
StartDBInstanceMessage.struct_class = Types::StartDBInstanceMessage
|
1910
|
+
|
1911
|
+
StartDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
1912
|
+
StartDBInstanceResult.struct_class = Types::StartDBInstanceResult
|
1913
|
+
|
1914
|
+
StopDBInstanceMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
1915
|
+
StopDBInstanceMessage.add_member(:db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBSnapshotIdentifier"))
|
1916
|
+
StopDBInstanceMessage.struct_class = Types::StopDBInstanceMessage
|
1917
|
+
|
1918
|
+
StopDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
1919
|
+
StopDBInstanceResult.struct_class = Types::StopDBInstanceResult
|
1920
|
+
|
1901
1921
|
Subnet.add_member(:subnet_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier"))
|
1902
1922
|
Subnet.add_member(:subnet_availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "SubnetAvailabilityZone"))
|
1903
1923
|
Subnet.add_member(:subnet_status, Shapes::ShapeRef.new(shape: String, location_name: "SubnetStatus"))
|
@@ -3079,6 +3099,38 @@ module Aws::RDS
|
|
3079
3099
|
o.errors << Shapes::ShapeRef.new(shape: AuthorizationNotFoundFault)
|
3080
3100
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBSecurityGroupStateFault)
|
3081
3101
|
end)
|
3102
|
+
|
3103
|
+
api.add_operation(:start_db_instance, Seahorse::Model::Operation.new.tap do |o|
|
3104
|
+
o.name = "StartDBInstance"
|
3105
|
+
o.http_method = "POST"
|
3106
|
+
o.http_request_uri = "/"
|
3107
|
+
o.input = Shapes::ShapeRef.new(shape: StartDBInstanceMessage)
|
3108
|
+
o.output = Shapes::ShapeRef.new(shape: StartDBInstanceResult)
|
3109
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
3110
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
3111
|
+
o.errors << Shapes::ShapeRef.new(shape: InsufficientDBInstanceCapacityFault)
|
3112
|
+
o.errors << Shapes::ShapeRef.new(shape: DBSubnetGroupNotFoundFault)
|
3113
|
+
o.errors << Shapes::ShapeRef.new(shape: DBSubnetGroupDoesNotCoverEnoughAZs)
|
3114
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
3115
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidSubnet)
|
3116
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidVPCNetworkStateFault)
|
3117
|
+
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
3118
|
+
o.errors << Shapes::ShapeRef.new(shape: AuthorizationNotFoundFault)
|
3119
|
+
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
3120
|
+
end)
|
3121
|
+
|
3122
|
+
api.add_operation(:stop_db_instance, Seahorse::Model::Operation.new.tap do |o|
|
3123
|
+
o.name = "StopDBInstance"
|
3124
|
+
o.http_method = "POST"
|
3125
|
+
o.http_request_uri = "/"
|
3126
|
+
o.input = Shapes::ShapeRef.new(shape: StopDBInstanceMessage)
|
3127
|
+
o.output = Shapes::ShapeRef.new(shape: StopDBInstanceResult)
|
3128
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
3129
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
3130
|
+
o.errors << Shapes::ShapeRef.new(shape: DBSnapshotAlreadyExistsFault)
|
3131
|
+
o.errors << Shapes::ShapeRef.new(shape: SnapshotQuotaExceededFault)
|
3132
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
3133
|
+
end)
|
3082
3134
|
end
|
3083
3135
|
|
3084
3136
|
end
|
@@ -263,6 +263,12 @@ module Aws::RDS
|
|
263
263
|
data.iam_database_authentication_enabled
|
264
264
|
end
|
265
265
|
|
266
|
+
# Identifies the clone group to which the DB cluster is associated.
|
267
|
+
# @return [String]
|
268
|
+
def clone_group_id
|
269
|
+
data.clone_group_id
|
270
|
+
end
|
271
|
+
|
266
272
|
# Specifies the time when the DB cluster was created, in Universal
|
267
273
|
# Coordinated Time (UTC).
|
268
274
|
# @return [Time]
|
@@ -362,9 +368,9 @@ module Aws::RDS
|
|
362
368
|
# A value that indicates that the DB cluster should be associated with
|
363
369
|
# the specified CharacterSet.
|
364
370
|
# @option options [String] :database_name
|
365
|
-
# The name for your database of up to
|
366
|
-
# do not provide a name, Amazon RDS will not create a database in
|
367
|
-
# cluster you are creating.
|
371
|
+
# The name for your database of up to 64 alpha-numeric characters. If
|
372
|
+
# you do not provide a name, Amazon RDS will not create a database in
|
373
|
+
# the DB cluster you are creating.
|
368
374
|
# @option options [String] :db_cluster_parameter_group_name
|
369
375
|
# The name of the DB cluster parameter group to associate with this DB
|
370
376
|
# cluster. If this argument is omitted, `default.aurora5.6` will be
|
@@ -801,6 +807,7 @@ module Aws::RDS
|
|
801
807
|
#
|
802
808
|
# dbcluster = db_cluster.restore({
|
803
809
|
# db_cluster_identifier: "String", # required
|
810
|
+
# restore_type: "String",
|
804
811
|
# restore_to_time: Time.now,
|
805
812
|
# use_latest_restorable_time: false,
|
806
813
|
# port: 1,
|
@@ -827,6 +834,21 @@ module Aws::RDS
|
|
827
834
|
# * First character must be a letter
|
828
835
|
#
|
829
836
|
# * Cannot end with a hyphen or contain two consecutive hyphens
|
837
|
+
# @option options [String] :restore_type
|
838
|
+
# The type of restore to be performed. You can specify one of the
|
839
|
+
# following values:
|
840
|
+
#
|
841
|
+
# * `full-copy` - The new DB cluster is restored as a full copy of the
|
842
|
+
# source DB cluster.
|
843
|
+
#
|
844
|
+
# * `copy-on-write` - The new DB cluster is restored as a clone of the
|
845
|
+
# source DB cluster.
|
846
|
+
#
|
847
|
+
# Constraints: You cannot specify `copy-on-write` if the engine version
|
848
|
+
# of the source DB cluster is earlier than 1.11.
|
849
|
+
#
|
850
|
+
# If you don't specify a `RestoreType` value, then the new DB cluster
|
851
|
+
# is restored as a full copy of the source DB cluster.
|
830
852
|
# @option options [Time,DateTime,Date,Integer,String] :restore_to_time
|
831
853
|
# The date and time to restore the DB cluster to.
|
832
854
|
#
|
@@ -837,8 +859,13 @@ module Aws::RDS
|
|
837
859
|
#
|
838
860
|
# * Must be before the latest restorable time for the DB instance
|
839
861
|
#
|
862
|
+
# * Must be specified if `UseLatestRestorableTime` parameter is not
|
863
|
+
# provided
|
864
|
+
#
|
840
865
|
# * Cannot be specified if `UseLatestRestorableTime` parameter is true
|
841
866
|
#
|
867
|
+
# * Cannot be specified if `RestoreType` parameter is `copy-on-write`
|
868
|
+
#
|
842
869
|
# Example: `2015-03-07T23:45:00Z`
|
843
870
|
# @option options [Boolean] :use_latest_restorable_time
|
844
871
|
# A value that is set to `true` to restore the DB cluster to the latest
|
@@ -864,7 +891,7 @@ module Aws::RDS
|
|
864
891
|
# @option options [String] :option_group_name
|
865
892
|
# The name of the option group for the new DB cluster.
|
866
893
|
# @option options [Array<String>] :vpc_security_group_ids
|
867
|
-
# A
|
894
|
+
# A list of VPC security groups that the new DB cluster belongs to.
|
868
895
|
# @option options [Array<Types::Tag>] :tags
|
869
896
|
# A list of tags.
|
870
897
|
# @option options [String] :kms_key_id
|
@@ -892,8 +919,8 @@ module Aws::RDS
|
|
892
919
|
# * If the DB cluster is not encrypted, then the restored DB cluster is
|
893
920
|
# not encrypted.
|
894
921
|
#
|
895
|
-
# If `DBClusterIdentifier` refers to a DB cluster that is
|
896
|
-
#
|
922
|
+
# If `DBClusterIdentifier` refers to a DB cluster that is not encrypted,
|
923
|
+
# then the restore request is rejected.
|
897
924
|
# @option options [Boolean] :enable_iam_database_authentication
|
898
925
|
# A Boolean value that is true to enable mapping of AWS Identity and
|
899
926
|
# Access Management (IAM) accounts to database accounts, and otherwise
|
@@ -539,7 +539,9 @@ module Aws::RDS
|
|
539
539
|
#
|
540
540
|
# **Oracle**
|
541
541
|
#
|
542
|
-
# The Oracle System ID (SID) of the created DB instance.
|
542
|
+
# The Oracle System ID (SID) of the created DB instance. If you specify
|
543
|
+
# `null`, the default value `ORCL` is used. You can't specify the
|
544
|
+
# string NULL, or any other reserved word, for `DBName`.
|
543
545
|
#
|
544
546
|
# Default: `ORCL`
|
545
547
|
#
|
@@ -611,11 +613,33 @@ module Aws::RDS
|
|
611
613
|
# @option options [required, String] :engine
|
612
614
|
# The name of the database engine to be used for this instance.
|
613
615
|
#
|
614
|
-
# Valid Values: `mysql` \| `mariadb` \| `oracle-se1` \| `oracle-se2` \|
|
615
|
-
# `oracle-se` \| `oracle-ee` \| `sqlserver-ee` \| `sqlserver-se` \|
|
616
|
-
# `sqlserver-ex` \| `sqlserver-web` \| `postgres` \| `aurora`
|
617
|
-
#
|
618
616
|
# Not every database engine is available for every AWS region.
|
617
|
+
#
|
618
|
+
# Valid Values:
|
619
|
+
#
|
620
|
+
# * `aurora`
|
621
|
+
#
|
622
|
+
# * `mariadb`
|
623
|
+
#
|
624
|
+
# * `mysql`
|
625
|
+
#
|
626
|
+
# * `oracle-ee`
|
627
|
+
#
|
628
|
+
# * `oracle-se2`
|
629
|
+
#
|
630
|
+
# * `oracle-se1`
|
631
|
+
#
|
632
|
+
# * `oracle-se`
|
633
|
+
#
|
634
|
+
# * `postgres`
|
635
|
+
#
|
636
|
+
# * `sqlserver-ee`
|
637
|
+
#
|
638
|
+
# * `sqlserver-se`
|
639
|
+
#
|
640
|
+
# * `sqlserver-ex`
|
641
|
+
#
|
642
|
+
# * `sqlserver-web`
|
619
643
|
# @option options [String] :master_username
|
620
644
|
# The name for the master database user.
|
621
645
|
#
|
@@ -856,98 +880,118 @@ module Aws::RDS
|
|
856
880
|
#
|
857
881
|
# **Amazon Aurora**
|
858
882
|
#
|
859
|
-
# *
|
883
|
+
# * Version 5.6 (available in these AWS regions: ap-northeast-1,
|
860
884
|
# ap-northeast-2, ap-south-1, ap-southeast-2, eu-west-1, us-east-1,
|
861
|
-
# us-east-2, us-west-2)
|
885
|
+
# us-east-2, us-west-2): ` 5.6.10a`
|
862
886
|
#
|
863
887
|
# ^
|
864
888
|
#
|
865
889
|
# **MariaDB**
|
866
890
|
#
|
867
|
-
# *
|
868
|
-
#
|
891
|
+
# * `10.1.19` (supported in all AWS regions)
|
892
|
+
#
|
893
|
+
# * `10.1.14` (supported in all regions except us-east-2)
|
869
894
|
#
|
870
|
-
# * **Version 10.1 (available in these AWS regions: ap-northeast-1,
|
871
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
872
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
873
|
-
# us-west-2):** ` 10.1.14`
|
874
895
|
#
|
875
|
-
# * **Version 10.0 (available in all AWS regions):** ` 10.0.24`
|
876
896
|
#
|
877
|
-
# *
|
878
|
-
#
|
879
|
-
#
|
880
|
-
#
|
897
|
+
# * `10.0.28` (supported in all AWS regions)
|
898
|
+
#
|
899
|
+
# * `10.0.24` (supported in all AWS regions)
|
900
|
+
#
|
901
|
+
# * `10.0.17` (supported in all regions except us-east-2, ca-central-1,
|
902
|
+
# eu-west-2)
|
881
903
|
#
|
882
904
|
# **Microsoft SQL Server 2016**
|
883
905
|
#
|
884
|
-
# * `13.00.
|
885
|
-
# except sa-east-1)
|
906
|
+
# * `13.00.4422.0.v1` (supported for all editions, and all AWS regions)
|
886
907
|
#
|
887
|
-
#
|
908
|
+
# * `13.00.2164.0.v1` (supported for all editions, and all AWS regions)
|
888
909
|
#
|
889
910
|
# **Microsoft SQL Server 2014**
|
890
911
|
#
|
912
|
+
# * `12.00.5546.0.v1` (supported for all editions, and all AWS regions)
|
913
|
+
#
|
891
914
|
# * `12.00.5000.0.v1` (supported for all editions, and all AWS regions)
|
892
915
|
#
|
893
916
|
# * `12.00.4422.0.v1` (supported for all editions except Enterprise
|
894
|
-
# Edition, and all AWS regions except
|
917
|
+
# Edition, and all AWS regions except ca-central-1 and eu-west-2)
|
895
918
|
#
|
896
919
|
# **Microsoft SQL Server 2012**
|
897
920
|
#
|
921
|
+
# * `11.00.6594.0.v1` (supported for all editions, and all AWS regions)
|
922
|
+
#
|
898
923
|
# * `11.00.6020.0.v1` (supported for all editions, and all AWS regions)
|
899
924
|
#
|
900
925
|
# * `11.00.5058.0.v1` (supported for all editions, and all AWS regions
|
901
|
-
# except us-east-2)
|
926
|
+
# except us-east-2, ca-central-1, and eu-west-2)
|
902
927
|
#
|
903
928
|
# * `11.00.2100.60.v1` (supported for all editions, and all AWS regions
|
904
|
-
# except us-east-2)
|
929
|
+
# except us-east-2, ca-central-1, and eu-west-2)
|
905
930
|
#
|
906
931
|
# **Microsoft SQL Server 2008 R2**
|
907
932
|
#
|
908
933
|
# * `10.50.6529.0.v1` (supported for all editions, and all AWS regions
|
909
|
-
# except us-east-2)
|
934
|
+
# except us-east-2, ca-central-1, and eu-west-2)
|
910
935
|
#
|
911
936
|
# * `10.50.6000.34.v1` (supported for all editions, and all AWS regions
|
912
|
-
# except us-east-2)
|
937
|
+
# except us-east-2, ca-central-1, and eu-west-2)
|
913
938
|
#
|
914
939
|
# * `10.50.2789.0.v1` (supported for all editions, and all AWS regions
|
915
|
-
# except us-east-2)
|
940
|
+
# except us-east-2, ca-central-1, and eu-west-2)
|
916
941
|
#
|
917
942
|
# **MySQL**
|
918
943
|
#
|
919
|
-
# *
|
944
|
+
# * `5.7.17` (supported in all AWS regions)
|
945
|
+
#
|
946
|
+
# * `5.7.16` (supported in all AWS regions)
|
947
|
+
#
|
948
|
+
# * `5.7.11` (supported in all AWS regions)
|
949
|
+
#
|
950
|
+
# * `5.7.10` (supported in all regions except us-east-2, ca-central-1,
|
951
|
+
# eu-west-2)
|
952
|
+
#
|
953
|
+
#
|
954
|
+
#
|
955
|
+
# * `5.6.35` (supported in all AWS regions)
|
956
|
+
#
|
957
|
+
# * `5.6.34` (supported in all AWS regions)
|
958
|
+
#
|
959
|
+
# * `5.6.29` (supported in all AWS regions)
|
920
960
|
#
|
921
|
-
# *
|
922
|
-
#
|
923
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-gov-west-1,
|
924
|
-
# us-west-1, us-west-2):** ` 5.7.10`
|
961
|
+
# * `5.6.27` (supported in all regions except us-east-2, ca-central-1,
|
962
|
+
# eu-west-2)
|
925
963
|
#
|
926
|
-
# *
|
964
|
+
# * `5.6.23` (supported in all regions except us-east-2, ap-south-1,
|
965
|
+
# ca-central-1, eu-west-2)
|
927
966
|
#
|
928
|
-
# *
|
929
|
-
# ap-northeast-2,
|
930
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-gov-west-1,
|
931
|
-
# us-west-1, us-west-2):** ` 5.6.27`
|
967
|
+
# * `5.6.22` (supported in all regions except us-east-2, ap-south-1,
|
968
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
932
969
|
#
|
933
|
-
# *
|
934
|
-
# ap-northeast-2,
|
935
|
-
# eu-west-1, sa-east-1, us-east-1, us-gov-west-1, us-west-1,
|
936
|
-
# us-west-2):** ` 5.6.23`
|
970
|
+
# * `5.6.21b` (supported in all regions except us-east-2, ap-south-1,
|
971
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
937
972
|
#
|
938
|
-
# *
|
939
|
-
# ap-
|
940
|
-
# us-east-1, us-gov-west-1, us-west-1, us-west-2):** ` 5.6.19a |
|
941
|
-
# 5.6.19b | 5.6.21 | 5.6.21b | 5.6.22`
|
973
|
+
# * `5.6.21` (supported in all regions except us-east-2, ap-south-1,
|
974
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
942
975
|
#
|
943
|
-
# *
|
976
|
+
# * `5.6.19b` (supported in all regions except us-east-2, ap-south-1,
|
977
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
944
978
|
#
|
945
|
-
# *
|
946
|
-
# ap-
|
947
|
-
#
|
979
|
+
# * `5.6.19a` (supported in all regions except us-east-2, ap-south-1,
|
980
|
+
# ap-northeast-2, ca-central-1, eu-west-2)
|
981
|
+
#
|
982
|
+
#
|
983
|
+
#
|
984
|
+
# * `5.5.54` (supported in all AWS regions)
|
985
|
+
#
|
986
|
+
# * `5.5.53` (supported in all AWS regions)
|
987
|
+
#
|
988
|
+
# * `5.5.46` (supported in all AWS regions)
|
948
989
|
#
|
949
990
|
# **Oracle 12c**
|
950
991
|
#
|
992
|
+
# * `12.1.0.2.v8` (supported for EE in all AWS regions, and SE2 in all
|
993
|
+
# AWS regions except us-gov-west-1)
|
994
|
+
#
|
951
995
|
# * `12.1.0.2.v7` (supported for EE in all AWS regions, and SE2 in all
|
952
996
|
# AWS regions except us-gov-west-1)
|
953
997
|
#
|
@@ -971,6 +1015,8 @@ module Aws::RDS
|
|
971
1015
|
#
|
972
1016
|
# **Oracle 11g**
|
973
1017
|
#
|
1018
|
+
# * `11.2.0.4.v12` (supported for EE, SE1, and SE, in all AWS regions)
|
1019
|
+
#
|
974
1020
|
# * `11.2.0.4.v11` (supported for EE, SE1, and SE, in all AWS regions)
|
975
1021
|
#
|
976
1022
|
# * `11.2.0.4.v10` (supported for EE, SE1, and SE, in all AWS regions)
|
@@ -993,14 +1039,13 @@ module Aws::RDS
|
|
993
1039
|
#
|
994
1040
|
# **PostgreSQL**
|
995
1041
|
#
|
996
|
-
# * **Version 9.6:** ` 9.6.1`
|
1042
|
+
# * **Version 9.6.x:** ` 9.6.1 | 9.6.2`
|
997
1043
|
#
|
998
|
-
# * **Version 9.5:** `9.5.4 | 9.5.2`
|
1044
|
+
# * **Version 9.5.x:** `9.5.6 | 9.5.4 | 9.5.2`
|
999
1045
|
#
|
1000
|
-
# * **Version 9.4:** `
|
1046
|
+
# * **Version 9.4.x:** `9.4.11 | 9.4.9 | 9.4.7`
|
1001
1047
|
#
|
1002
|
-
# * **Version 9.3:** `
|
1003
|
-
# | 9.3.3 | 9.3.2 | 9.3.1`
|
1048
|
+
# * **Version 9.3.x:** `9.3.16 | 9.3.14 | 9.3.12`
|
1004
1049
|
# @option options [Boolean] :auto_minor_version_upgrade
|
1005
1050
|
# Indicates that minor engine upgrades will be applied automatically to
|
1006
1051
|
# the DB instance during the maintenance window.
|
@@ -1147,7 +1192,7 @@ module Aws::RDS
|
|
1147
1192
|
# accounts to database accounts; otherwise false.
|
1148
1193
|
#
|
1149
1194
|
# You can enable IAM database authentication for the following database
|
1150
|
-
# engines
|
1195
|
+
# engines:
|
1151
1196
|
#
|
1152
1197
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
1153
1198
|
#
|
@@ -274,11 +274,12 @@ module Aws::RDS
|
|
274
274
|
# ],
|
275
275
|
# copy_tags: false,
|
276
276
|
# pre_signed_url: "String",
|
277
|
+
# option_group_name: "String",
|
277
278
|
# source_region: "String",
|
278
279
|
# })
|
279
280
|
# @param [Hash] options ({})
|
280
281
|
# @option options [required, String] :target_db_snapshot_identifier
|
281
|
-
# The identifier for the
|
282
|
+
# The identifier for the copy of the snapshot.
|
282
283
|
#
|
283
284
|
# Constraints:
|
284
285
|
#
|
@@ -296,27 +297,22 @@ module Aws::RDS
|
|
296
297
|
# Amazon Resource Name (ARN), KMS key identifier, or the KMS key alias
|
297
298
|
# for the KMS encryption key.
|
298
299
|
#
|
299
|
-
# If you copy an unencrypted DB snapshot and specify a value for the
|
300
|
-
# `KmsKeyId` parameter, Amazon RDS encrypts the target DB snapshot using
|
301
|
-
# the specified KMS encryption key.
|
302
|
-
#
|
303
300
|
# If you copy an encrypted DB snapshot from your AWS account, you can
|
304
|
-
# specify a value for
|
305
|
-
# encryption key. If you don't specify a value for
|
306
|
-
# copy of the DB snapshot is encrypted with the same KMS key as the
|
301
|
+
# specify a value for this parameter to encrypt the copy with a new KMS
|
302
|
+
# encryption key. If you don't specify a value for this parameter, then
|
303
|
+
# the copy of the DB snapshot is encrypted with the same KMS key as the
|
307
304
|
# source DB snapshot.
|
308
305
|
#
|
309
|
-
# If you copy an encrypted snapshot to a different AWS region, then you
|
310
|
-
# must specify a KMS key for the destination AWS region.
|
311
|
-
#
|
312
306
|
# If you copy an encrypted DB snapshot that is shared from another AWS
|
313
|
-
# account, then you must specify a value for
|
307
|
+
# account, then you must specify a value for this parameter.
|
308
|
+
#
|
309
|
+
# If you specify this parameter when you copy an unencrypted snapshot,
|
310
|
+
# the copy is encrypted.
|
314
311
|
#
|
315
|
-
#
|
316
|
-
#
|
317
|
-
#
|
318
|
-
#
|
319
|
-
# keys from one region in another region.
|
312
|
+
# If you copy an encrypted snapshot to a different AWS region, then you
|
313
|
+
# must specify a KMS key for the destination AWS region. KMS encryption
|
314
|
+
# keys are specific to the region that they are created in, and you
|
315
|
+
# cannot use encryption keys from one region in another region.
|
320
316
|
# @option options [Array<Types::Tag>] :tags
|
321
317
|
# A list of tags.
|
322
318
|
# @option options [Boolean] :copy_tags
|
@@ -324,9 +320,13 @@ module Aws::RDS
|
|
324
320
|
# snapshot; otherwise false. The default is false.
|
325
321
|
# @option options [String] :pre_signed_url
|
326
322
|
# The URL that contains a Signature Version 4 signed request for the
|
327
|
-
# `CopyDBSnapshot` API action in the AWS region that contains the
|
328
|
-
# DB snapshot to copy.
|
329
|
-
#
|
323
|
+
# `CopyDBSnapshot` API action in the source AWS region that contains the
|
324
|
+
# source DB snapshot to copy.
|
325
|
+
#
|
326
|
+
# You must specify this parameter when you copy an encrypted DB snapshot
|
327
|
+
# from another AWS region by using the Amazon RDS API. You can specify
|
328
|
+
# the source region option instead of this parameter when you copy an
|
329
|
+
# encrypted DB snapshot from another AWS region by using the AWS CLI.
|
330
330
|
#
|
331
331
|
# The presigned URL must be a valid request for the `CopyDBSnapshot` API
|
332
332
|
# action that can be executed in the source region that contains the
|
@@ -358,14 +358,26 @@ module Aws::RDS
|
|
358
358
|
# the following example:
|
359
359
|
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20161115`.
|
360
360
|
#
|
361
|
-
# To learn how to generate a Signature Version 4 signed request, see
|
362
|
-
# Authenticating Requests: Using Query Parameters (AWS Signature
|
363
|
-
# 4)][1] and [
|
361
|
+
# To learn how to generate a Signature Version 4 signed request, see
|
362
|
+
# [Authenticating Requests: Using Query Parameters (AWS Signature
|
363
|
+
# Version 4)][1] and [Signature Version 4 Signing Process][2].
|
364
364
|
#
|
365
365
|
#
|
366
366
|
#
|
367
367
|
# [1]: http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
368
368
|
# [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
369
|
+
# @option options [String] :option_group_name
|
370
|
+
# The name of an option group to associate with the copy.
|
371
|
+
#
|
372
|
+
# Specify this option if you are copying a snapshot from one AWS region
|
373
|
+
# to another, and your DB instance uses a non-default option group. If
|
374
|
+
# your source DB instance uses Transparent Data Encryption for Oracle or
|
375
|
+
# Microsoft SQL Server, you must specify this option when copying across
|
376
|
+
# regions. For more information, see [Option Group Considerations][1].
|
377
|
+
#
|
378
|
+
#
|
379
|
+
#
|
380
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopySnapshot.Options
|
369
381
|
# @option options [String] :destination_region
|
370
382
|
# @option options [String] :source_region
|
371
383
|
# The source region of the snapshot. This is only needed when the
|