aws-sdk-rds 1.160.0 → 1.161.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.
@@ -597,6 +597,168 @@ module Aws::RDS
597
597
  #
598
598
  class BackupPolicyNotFoundFault < Aws::EmptyStructure; end
599
599
 
600
+ # Contains the details about a blue/green deployment.
601
+ #
602
+ # For more information, see [Using Amazon RDS Blue/Green Deployments for
603
+ # database updates][1] in the *Amazon RDS User Guide* and [ Using Amazon
604
+ # RDS Blue/Green Deployments for database updates][2] in the *Amazon
605
+ # Aurora User Guide*.
606
+ #
607
+ #
608
+ #
609
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html
610
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
611
+ #
612
+ # @!attribute [rw] blue_green_deployment_identifier
613
+ # The system-generated identifier of the blue/green deployment.
614
+ # @return [String]
615
+ #
616
+ # @!attribute [rw] blue_green_deployment_name
617
+ # The user-supplied name of the blue/green deployment.
618
+ # @return [String]
619
+ #
620
+ # @!attribute [rw] source
621
+ # The source database for the blue/green deployment.
622
+ #
623
+ # Before switchover, the source database is the production database in
624
+ # the blue environment.
625
+ # @return [String]
626
+ #
627
+ # @!attribute [rw] target
628
+ # The target database for the blue/green deployment.
629
+ #
630
+ # Before switchover, the target database is the clone database in the
631
+ # green environment.
632
+ # @return [String]
633
+ #
634
+ # @!attribute [rw] switchover_details
635
+ # The details about each source and target resource in the blue/green
636
+ # deployment.
637
+ # @return [Array<Types::SwitchoverDetail>]
638
+ #
639
+ # @!attribute [rw] tasks
640
+ # Either tasks to be performed or tasks that have been completed on
641
+ # the target database before switchover.
642
+ # @return [Array<Types::BlueGreenDeploymentTask>]
643
+ #
644
+ # @!attribute [rw] status
645
+ # The status of the blue/green deployment.
646
+ #
647
+ # Values:
648
+ #
649
+ # * `PROVISIONING` - Resources are being created in the green
650
+ # environment.
651
+ #
652
+ # * `AVAILABLE` - Resources are available in the green environment.
653
+ #
654
+ # * `SWITCHOVER_IN_PROGRESS` - The deployment is being switched from
655
+ # the blue environment to the green environment.
656
+ #
657
+ # * `SWITCHOVER_COMPLETED` - Switchover from the blue environment to
658
+ # the green environment is complete.
659
+ #
660
+ # * `INVALID_CONFIGURATION` - Resources in the green environment are
661
+ # invalid, so switchover isn't possible.
662
+ #
663
+ # * `SWITCHOVER_FAILED` - Switchover was attempted but failed.
664
+ #
665
+ # * `DELETING` - The blue/green deployment is being deleted.
666
+ # @return [String]
667
+ #
668
+ # @!attribute [rw] status_details
669
+ # Additional information about the status of the blue/green
670
+ # deployment.
671
+ # @return [String]
672
+ #
673
+ # @!attribute [rw] create_time
674
+ # Specifies the time when the blue/green deployment was created, in
675
+ # Universal Coordinated Time (UTC).
676
+ # @return [Time]
677
+ #
678
+ # @!attribute [rw] delete_time
679
+ # Specifies the time when the blue/green deployment was deleted, in
680
+ # Universal Coordinated Time (UTC).
681
+ # @return [Time]
682
+ #
683
+ # @!attribute [rw] tag_list
684
+ # A list of tags. For more information, see [Tagging Amazon RDS
685
+ # Resources][1] in the *Amazon RDS User Guide.*
686
+ #
687
+ #
688
+ #
689
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
690
+ # @return [Array<Types::Tag>]
691
+ #
692
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/BlueGreenDeployment AWS API Documentation
693
+ #
694
+ class BlueGreenDeployment < Struct.new(
695
+ :blue_green_deployment_identifier,
696
+ :blue_green_deployment_name,
697
+ :source,
698
+ :target,
699
+ :switchover_details,
700
+ :tasks,
701
+ :status,
702
+ :status_details,
703
+ :create_time,
704
+ :delete_time,
705
+ :tag_list)
706
+ SENSITIVE = []
707
+ include Aws::Structure
708
+ end
709
+
710
+ # A blue/green deployment with the specified name already exists.
711
+ #
712
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/BlueGreenDeploymentAlreadyExistsFault AWS API Documentation
713
+ #
714
+ class BlueGreenDeploymentAlreadyExistsFault < Aws::EmptyStructure; end
715
+
716
+ # `BlueGreenDeploymentIdentifier` doesn't refer to an existing
717
+ # blue/green deployment.
718
+ #
719
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/BlueGreenDeploymentNotFoundFault AWS API Documentation
720
+ #
721
+ class BlueGreenDeploymentNotFoundFault < Aws::EmptyStructure; end
722
+
723
+ # Contains the details about a task for a blue/green deployment.
724
+ #
725
+ # For more information, see [Using Amazon RDS Blue/Green Deployments for
726
+ # database updates][1] in the *Amazon RDS User Guide* and [ Using Amazon
727
+ # RDS Blue/Green Deployments for database updates][2] in the *Amazon
728
+ # Aurora User Guide*.
729
+ #
730
+ #
731
+ #
732
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html
733
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
734
+ #
735
+ # @!attribute [rw] name
736
+ # The name of the blue/green deployment task.
737
+ # @return [String]
738
+ #
739
+ # @!attribute [rw] status
740
+ # The status of the blue/green deployment task.
741
+ #
742
+ # Values:
743
+ #
744
+ # * `PENDING` - The resources are being prepared for deployment.
745
+ #
746
+ # * `IN_PROGRESS` - The resource is being deployed.
747
+ #
748
+ # * `COMPLETED` - The resource has been deployed.
749
+ #
750
+ # * `FAILED` - Deployment of the resource failed.
751
+ # @return [String]
752
+ #
753
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/BlueGreenDeploymentTask AWS API Documentation
754
+ #
755
+ class BlueGreenDeploymentTask < Struct.new(
756
+ :name,
757
+ :status)
758
+ SENSITIVE = []
759
+ include Aws::Structure
760
+ end
761
+
600
762
  # @note When making an API call, you may pass CancelExportTaskMessage
601
763
  # data as a hash:
602
764
  #
@@ -1652,6 +1814,105 @@ module Aws::RDS
1652
1814
  include Aws::Structure
1653
1815
  end
1654
1816
 
1817
+ # @note When making an API call, you may pass CreateBlueGreenDeploymentRequest
1818
+ # data as a hash:
1819
+ #
1820
+ # {
1821
+ # blue_green_deployment_name: "BlueGreenDeploymentName", # required
1822
+ # source: "DatabaseArn", # required
1823
+ # target_engine_version: "TargetEngineVersion",
1824
+ # target_db_parameter_group_name: "TargetDBParameterGroupName",
1825
+ # target_db_cluster_parameter_group_name: "TargetDBClusterParameterGroupName",
1826
+ # tags: [
1827
+ # {
1828
+ # key: "String",
1829
+ # value: "String",
1830
+ # },
1831
+ # ],
1832
+ # }
1833
+ #
1834
+ # @!attribute [rw] blue_green_deployment_name
1835
+ # The name of the blue/green deployment.
1836
+ #
1837
+ # Constraints:
1838
+ #
1839
+ # * Can't be the same as an existing blue/green deployment name in
1840
+ # the same account and Amazon Web Services Region.
1841
+ #
1842
+ # ^
1843
+ # @return [String]
1844
+ #
1845
+ # @!attribute [rw] source
1846
+ # The Amazon Resource Name (ARN) of the source production database.
1847
+ #
1848
+ # Specify the database that you want to clone. The blue/green
1849
+ # deployment creates this database in the green environment. You can
1850
+ # make updates to the database in the green environment, such as an
1851
+ # engine version upgrade. When you are ready, you can switch the
1852
+ # database in the green environment to be the production database.
1853
+ # @return [String]
1854
+ #
1855
+ # @!attribute [rw] target_engine_version
1856
+ # The engine version of the database in the green environment.
1857
+ #
1858
+ # Specify the engine version to upgrade to in the green environment.
1859
+ # @return [String]
1860
+ #
1861
+ # @!attribute [rw] target_db_parameter_group_name
1862
+ # The DB parameter group associated with the DB instance in the green
1863
+ # environment.
1864
+ #
1865
+ # To test parameter changes, specify a DB parameter group that is
1866
+ # different from the one associated with the source DB instance.
1867
+ # @return [String]
1868
+ #
1869
+ # @!attribute [rw] target_db_cluster_parameter_group_name
1870
+ # The DB cluster parameter group associated with the Aurora DB cluster
1871
+ # in the green environment.
1872
+ #
1873
+ # To test parameter changes, specify a DB cluster parameter group that
1874
+ # is different from the one associated with the source DB cluster.
1875
+ # @return [String]
1876
+ #
1877
+ # @!attribute [rw] tags
1878
+ # Tags to assign to the blue/green deployment.
1879
+ # @return [Array<Types::Tag>]
1880
+ #
1881
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateBlueGreenDeploymentRequest AWS API Documentation
1882
+ #
1883
+ class CreateBlueGreenDeploymentRequest < Struct.new(
1884
+ :blue_green_deployment_name,
1885
+ :source,
1886
+ :target_engine_version,
1887
+ :target_db_parameter_group_name,
1888
+ :target_db_cluster_parameter_group_name,
1889
+ :tags)
1890
+ SENSITIVE = []
1891
+ include Aws::Structure
1892
+ end
1893
+
1894
+ # @!attribute [rw] blue_green_deployment
1895
+ # Contains the details about a blue/green deployment.
1896
+ #
1897
+ # For more information, see [Using Amazon RDS Blue/Green Deployments
1898
+ # for database updates][1] in the *Amazon RDS User Guide* and [ Using
1899
+ # Amazon RDS Blue/Green Deployments for database updates][2] in the
1900
+ # *Amazon Aurora User Guide*.
1901
+ #
1902
+ #
1903
+ #
1904
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html
1905
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
1906
+ # @return [Types::BlueGreenDeployment]
1907
+ #
1908
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateBlueGreenDeploymentResponse AWS API Documentation
1909
+ #
1910
+ class CreateBlueGreenDeploymentResponse < Struct.new(
1911
+ :blue_green_deployment)
1912
+ SENSITIVE = []
1913
+ include Aws::Structure
1914
+ end
1915
+
1655
1916
  # @note When making an API call, you may pass CreateCustomDBEngineVersionMessage
1656
1917
  # data as a hash:
1657
1918
  #
@@ -1677,9 +1938,9 @@ module Aws::RDS
1677
1938
  # @return [String]
1678
1939
  #
1679
1940
  # @!attribute [rw] engine_version
1680
- # The name of your CEV. The name format is `19.customized_string `.
1681
- # For example, a valid name is `19.my_cev1`. This setting is required
1682
- # for RDS Custom for Oracle, but optional for Amazon RDS. The
1941
+ # The name of your CEV. The name format is 19.*customized\_string*.
1942
+ # For example, a valid CEV name is `19.my_cev1`. This setting is
1943
+ # required for RDS Custom for Oracle, but optional for Amazon RDS. The
1683
1944
  # combination of `Engine` and `EngineVersion` is unique per customer
1684
1945
  # per Region.
1685
1946
  # @return [String]
@@ -3659,7 +3920,7 @@ module Aws::RDS
3659
3920
  #
3660
3921
  # A custom engine version (CEV) that you have previously created. This
3661
3922
  # setting is required for RDS Custom for Oracle. The CEV name has the
3662
- # following format: `19.customized_string `. An example identifier is
3923
+ # following format: 19.*customized\_string*. A valid CEV name is
3663
3924
  # `19.my_cev1`. For more information, see [ Creating an RDS Custom for
3664
3925
  # Oracle DB instance][1] in the *Amazon RDS User Guide*.
3665
3926
  #
@@ -9586,6 +9847,61 @@ module Aws::RDS
9586
9847
  #
9587
9848
  class DBUpgradeDependencyFailureFault < Aws::EmptyStructure; end
9588
9849
 
9850
+ # @note When making an API call, you may pass DeleteBlueGreenDeploymentRequest
9851
+ # data as a hash:
9852
+ #
9853
+ # {
9854
+ # blue_green_deployment_identifier: "BlueGreenDeploymentIdentifier", # required
9855
+ # delete_target: false,
9856
+ # }
9857
+ #
9858
+ # @!attribute [rw] blue_green_deployment_identifier
9859
+ # The blue/green deployment identifier of the deployment to be
9860
+ # deleted. This parameter isn't case-sensitive.
9861
+ #
9862
+ # Constraints:
9863
+ #
9864
+ # * Must match an existing blue/green deployment identifier.
9865
+ #
9866
+ # ^
9867
+ # @return [String]
9868
+ #
9869
+ # @!attribute [rw] delete_target
9870
+ # A value that indicates whether to delete the resources in the green
9871
+ # environment.
9872
+ # @return [Boolean]
9873
+ #
9874
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteBlueGreenDeploymentRequest AWS API Documentation
9875
+ #
9876
+ class DeleteBlueGreenDeploymentRequest < Struct.new(
9877
+ :blue_green_deployment_identifier,
9878
+ :delete_target)
9879
+ SENSITIVE = []
9880
+ include Aws::Structure
9881
+ end
9882
+
9883
+ # @!attribute [rw] blue_green_deployment
9884
+ # Contains the details about a blue/green deployment.
9885
+ #
9886
+ # For more information, see [Using Amazon RDS Blue/Green Deployments
9887
+ # for database updates][1] in the *Amazon RDS User Guide* and [ Using
9888
+ # Amazon RDS Blue/Green Deployments for database updates][2] in the
9889
+ # *Amazon Aurora User Guide*.
9890
+ #
9891
+ #
9892
+ #
9893
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html
9894
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
9895
+ # @return [Types::BlueGreenDeployment]
9896
+ #
9897
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteBlueGreenDeploymentResponse AWS API Documentation
9898
+ #
9899
+ class DeleteBlueGreenDeploymentResponse < Struct.new(
9900
+ :blue_green_deployment)
9901
+ SENSITIVE = []
9902
+ include Aws::Structure
9903
+ end
9904
+
9589
9905
  # @note When making an API call, you may pass DeleteCustomDBEngineVersionMessage
9590
9906
  # data as a hash:
9591
9907
  #
@@ -10275,6 +10591,105 @@ module Aws::RDS
10275
10591
  #
10276
10592
  class DescribeAccountAttributesMessage < Aws::EmptyStructure; end
10277
10593
 
10594
+ # @note When making an API call, you may pass DescribeBlueGreenDeploymentsRequest
10595
+ # data as a hash:
10596
+ #
10597
+ # {
10598
+ # blue_green_deployment_identifier: "BlueGreenDeploymentIdentifier",
10599
+ # filters: [
10600
+ # {
10601
+ # name: "String", # required
10602
+ # values: ["String"], # required
10603
+ # },
10604
+ # ],
10605
+ # marker: "String",
10606
+ # max_records: 1,
10607
+ # }
10608
+ #
10609
+ # @!attribute [rw] blue_green_deployment_identifier
10610
+ # The blue/green deployment identifier. If this parameter is
10611
+ # specified, information from only the specific blue/green deployment
10612
+ # is returned. This parameter isn't case-sensitive.
10613
+ #
10614
+ # Constraints:
10615
+ #
10616
+ # * If supplied, must match an existing blue/green deployment
10617
+ # identifier.
10618
+ #
10619
+ # ^
10620
+ # @return [String]
10621
+ #
10622
+ # @!attribute [rw] filters
10623
+ # A filter that specifies one or more blue/green deployments to
10624
+ # describe.
10625
+ #
10626
+ # Supported filters:
10627
+ #
10628
+ # * `blue-green-deployment-identifier` - Accepts system-generated
10629
+ # identifiers for blue/green deployments. The results list only
10630
+ # includes information about the blue/green deployments with the
10631
+ # specified identifiers.
10632
+ #
10633
+ # * `blue-green-deployment-name` - Accepts user-supplied names for
10634
+ # blue/green deployments. The results list only includes information
10635
+ # about the blue/green deployments with the specified names.
10636
+ #
10637
+ # * `source` - Accepts source databases for a blue/green deployment.
10638
+ # The results list only includes information about the blue/green
10639
+ # deployments with the specified source databases.
10640
+ #
10641
+ # * `target` - Accepts target databases for a blue/green deployment.
10642
+ # The results list only includes information about the blue/green
10643
+ # deployments with the specified target databases.
10644
+ # @return [Array<Types::Filter>]
10645
+ #
10646
+ # @!attribute [rw] marker
10647
+ # An optional pagination token provided by a previous
10648
+ # `DescribeBlueGreenDeployments` request. If this parameter is
10649
+ # specified, the response includes only records beyond the marker, up
10650
+ # to the value specified by `MaxRecords`.
10651
+ # @return [String]
10652
+ #
10653
+ # @!attribute [rw] max_records
10654
+ # The maximum number of records to include in the response. If more
10655
+ # records exist than the specified `MaxRecords` value, a pagination
10656
+ # token called a marker is included in the response so you can
10657
+ # retrieve the remaining results.
10658
+ #
10659
+ # Default: 100
10660
+ #
10661
+ # Constraints: Minimum 20, maximum 100.
10662
+ # @return [Integer]
10663
+ #
10664
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeBlueGreenDeploymentsRequest AWS API Documentation
10665
+ #
10666
+ class DescribeBlueGreenDeploymentsRequest < Struct.new(
10667
+ :blue_green_deployment_identifier,
10668
+ :filters,
10669
+ :marker,
10670
+ :max_records)
10671
+ SENSITIVE = []
10672
+ include Aws::Structure
10673
+ end
10674
+
10675
+ # @!attribute [rw] blue_green_deployments
10676
+ # Contains a list of blue/green deployments for the user.
10677
+ # @return [Array<Types::BlueGreenDeployment>]
10678
+ #
10679
+ # @!attribute [rw] marker
10680
+ # A pagination token that can be used in a later
10681
+ # DescribeBlueGreenDeployments request.
10682
+ # @return [String]
10683
+ #
10684
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeBlueGreenDeploymentsResponse AWS API Documentation
10685
+ #
10686
+ class DescribeBlueGreenDeploymentsResponse < Struct.new(
10687
+ :blue_green_deployments,
10688
+ :marker)
10689
+ SENSITIVE = []
10690
+ include Aws::Structure
10691
+ end
10692
+
10278
10693
  # @note When making an API call, you may pass DescribeCertificatesMessage
10279
10694
  # data as a hash:
10280
10695
  #
@@ -14452,6 +14867,13 @@ module Aws::RDS
14452
14867
  #
14453
14868
  class InsufficientStorageClusterCapacityFault < Aws::EmptyStructure; end
14454
14869
 
14870
+ # The blue/green deployment can't be switched over or deleted because
14871
+ # there is an invalid configuration in the green environment.
14872
+ #
14873
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidBlueGreenDeploymentStateFault AWS API Documentation
14874
+ #
14875
+ class InvalidBlueGreenDeploymentStateFault < Aws::EmptyStructure; end
14876
+
14455
14877
  # You can't delete the CEV.
14456
14878
  #
14457
14879
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidCustomDBEngineVersionStateFault AWS API Documentation
@@ -23532,6 +23954,18 @@ module Aws::RDS
23532
23954
  #
23533
23955
  class SnapshotQuotaExceededFault < Aws::EmptyStructure; end
23534
23956
 
23957
+ # The source DB cluster isn't supported for a blue/green deployment.
23958
+ #
23959
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SourceClusterNotSupportedFault AWS API Documentation
23960
+ #
23961
+ class SourceClusterNotSupportedFault < Aws::EmptyStructure; end
23962
+
23963
+ # The source DB instance isn't supported for a blue/green deployment.
23964
+ #
23965
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SourceDatabaseNotSupportedFault AWS API Documentation
23966
+ #
23967
+ class SourceDatabaseNotSupportedFault < Aws::EmptyStructure; end
23968
+
23535
23969
  # The requested source could not be found.
23536
23970
  #
23537
23971
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SourceNotFoundFault AWS API Documentation
@@ -24253,6 +24687,114 @@ module Aws::RDS
24253
24687
  #
24254
24688
  class SubscriptionNotFoundFault < Aws::EmptyStructure; end
24255
24689
 
24690
+ # @note When making an API call, you may pass SwitchoverBlueGreenDeploymentRequest
24691
+ # data as a hash:
24692
+ #
24693
+ # {
24694
+ # blue_green_deployment_identifier: "BlueGreenDeploymentIdentifier", # required
24695
+ # switchover_timeout: 1,
24696
+ # }
24697
+ #
24698
+ # @!attribute [rw] blue_green_deployment_identifier
24699
+ # The blue/green deployment identifier.
24700
+ #
24701
+ # Constraints:
24702
+ #
24703
+ # * Must match an existing blue/green deployment identifier.
24704
+ #
24705
+ # ^
24706
+ # @return [String]
24707
+ #
24708
+ # @!attribute [rw] switchover_timeout
24709
+ # The amount of time, in seconds, for the switchover to complete. The
24710
+ # default is 300.
24711
+ #
24712
+ # If the switchover takes longer than the specified duration, then any
24713
+ # changes are rolled back, and no changes are made to the
24714
+ # environments.
24715
+ # @return [Integer]
24716
+ #
24717
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverBlueGreenDeploymentRequest AWS API Documentation
24718
+ #
24719
+ class SwitchoverBlueGreenDeploymentRequest < Struct.new(
24720
+ :blue_green_deployment_identifier,
24721
+ :switchover_timeout)
24722
+ SENSITIVE = []
24723
+ include Aws::Structure
24724
+ end
24725
+
24726
+ # @!attribute [rw] blue_green_deployment
24727
+ # Contains the details about a blue/green deployment.
24728
+ #
24729
+ # For more information, see [Using Amazon RDS Blue/Green Deployments
24730
+ # for database updates][1] in the *Amazon RDS User Guide* and [ Using
24731
+ # Amazon RDS Blue/Green Deployments for database updates][2] in the
24732
+ # *Amazon Aurora User Guide*.
24733
+ #
24734
+ #
24735
+ #
24736
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html
24737
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
24738
+ # @return [Types::BlueGreenDeployment]
24739
+ #
24740
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverBlueGreenDeploymentResponse AWS API Documentation
24741
+ #
24742
+ class SwitchoverBlueGreenDeploymentResponse < Struct.new(
24743
+ :blue_green_deployment)
24744
+ SENSITIVE = []
24745
+ include Aws::Structure
24746
+ end
24747
+
24748
+ # Contains the details about a blue/green deployment.
24749
+ #
24750
+ # For more information, see [Using Amazon RDS Blue/Green Deployments for
24751
+ # database updates][1] in the *Amazon RDS User Guide* and [ Using Amazon
24752
+ # RDS Blue/Green Deployments for database updates][2] in the *Amazon
24753
+ # Aurora User Guide*.
24754
+ #
24755
+ #
24756
+ #
24757
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html
24758
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
24759
+ #
24760
+ # @!attribute [rw] source_member
24761
+ # The Amazon Resource Name (ARN) of a resource in the blue
24762
+ # environment.
24763
+ # @return [String]
24764
+ #
24765
+ # @!attribute [rw] target_member
24766
+ # The Amazon Resource Name (ARN) of a resource in the green
24767
+ # environment.
24768
+ # @return [String]
24769
+ #
24770
+ # @!attribute [rw] status
24771
+ # The switchover status of a resource in a blue/green deployment.
24772
+ #
24773
+ # Values:
24774
+ #
24775
+ # * `preparing-for-switchover` - The resource is being prepared to
24776
+ # switch over.
24777
+ #
24778
+ # * `ready-for-switchover` - The resource is ready to switch over.
24779
+ #
24780
+ # * `switchover-in-progress` - The resource is being switched over.
24781
+ #
24782
+ # * `switchover-completed` - The resource has been switched over.
24783
+ #
24784
+ # * `switchover-failed` - The resource attempted to switch over but
24785
+ # failed.
24786
+ # @return [String]
24787
+ #
24788
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverDetail AWS API Documentation
24789
+ #
24790
+ class SwitchoverDetail < Struct.new(
24791
+ :source_member,
24792
+ :target_member,
24793
+ :status)
24794
+ SENSITIVE = []
24795
+ include Aws::Structure
24796
+ end
24797
+
24256
24798
  # @note When making an API call, you may pass SwitchoverReadReplicaMessage
24257
24799
  # data as a hash:
24258
24800
  #
@@ -24303,6 +24845,13 @@ module Aws::RDS
24303
24845
  # Metadata assigned to an Amazon RDS resource consisting of a key-value
24304
24846
  # pair.
24305
24847
  #
24848
+ # For more information, see [Tagging Amazon RDS Resources][1] in the
24849
+ # *Amazon RDS User Guide.*
24850
+ #
24851
+ #
24852
+ #
24853
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
24854
+ #
24306
24855
  # @note When making an API call, you may pass Tag
24307
24856
  # data as a hash:
24308
24857
  #
data/lib/aws-sdk-rds.rb CHANGED
@@ -78,6 +78,6 @@ require_relative 'aws-sdk-rds/customizations'
78
78
  # @!group service
79
79
  module Aws::RDS
80
80
 
81
- GEM_VERSION = '1.160.0'
81
+ GEM_VERSION = '1.161.0'
82
82
 
83
83
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.160.0
4
+ version: 1.161.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-16 00:00:00.000000000 Z
11
+ date: 2022-11-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4