aws-sdk-rds 1.75.0 → 1.76.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/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +279 -24
- data/lib/aws-sdk-rds/client_api.rb +97 -0
- data/lib/aws-sdk-rds/db_cluster.rb +3 -3
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +4 -4
- data/lib/aws-sdk-rds/db_instance.rb +2 -2
- data/lib/aws-sdk-rds/db_parameter_group.rb +1 -1
- data/lib/aws-sdk-rds/event_subscription.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +5 -5
- data/lib/aws-sdk-rds/types.rb +312 -20
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 692750ce349f5c9af3410199f921f0c70d3ff66d
         | 
| 4 | 
            +
              data.tar.gz: e3219defb61167884bdb928c6ee5fb5bb86df00f
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 186248d6ffd5fafb4e41c548e59e9fe742ec3b345b18ea2090315983ab3a9c1404eb17733749c1cab0862c6a76b4120377000e81b79d1348bc0b7ec6b26aebc0
         | 
| 7 | 
            +
              data.tar.gz: 51f9341816af6b6ebaae4278ee596ac84d84b49c8bcea6b5f431ec93937e5cbae9742e7f6c55000602c1e9485c71880a90676ffddde43a5a597b4da804b8cb9c
         | 
    
        data/lib/aws-sdk-rds.rb
    CHANGED
    
    
    
        data/lib/aws-sdk-rds/client.rb
    CHANGED
    
    | @@ -759,6 +759,65 @@ module Aws::RDS | |
| 759 759 | 
             
                  req.send_request(options)
         | 
| 760 760 | 
             
                end
         | 
| 761 761 |  | 
| 762 | 
            +
                # Cancels an export task in progress that is exporting a snapshot to
         | 
| 763 | 
            +
                # Amazon S3. Any data that has already been written to the S3 bucket
         | 
| 764 | 
            +
                # isn't removed.
         | 
| 765 | 
            +
                #
         | 
| 766 | 
            +
                # @option params [required, String] :export_task_identifier
         | 
| 767 | 
            +
                #   The identifier of the snapshot export task to cancel.
         | 
| 768 | 
            +
                #
         | 
| 769 | 
            +
                # @return [Types::ExportTask] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 770 | 
            +
                #
         | 
| 771 | 
            +
                #   * {Types::ExportTask#export_task_identifier #export_task_identifier} => String
         | 
| 772 | 
            +
                #   * {Types::ExportTask#source_arn #source_arn} => String
         | 
| 773 | 
            +
                #   * {Types::ExportTask#export_only #export_only} => Array<String>
         | 
| 774 | 
            +
                #   * {Types::ExportTask#snapshot_time #snapshot_time} => Time
         | 
| 775 | 
            +
                #   * {Types::ExportTask#task_start_time #task_start_time} => Time
         | 
| 776 | 
            +
                #   * {Types::ExportTask#task_end_time #task_end_time} => Time
         | 
| 777 | 
            +
                #   * {Types::ExportTask#s3_bucket #s3_bucket} => String
         | 
| 778 | 
            +
                #   * {Types::ExportTask#s3_prefix #s3_prefix} => String
         | 
| 779 | 
            +
                #   * {Types::ExportTask#iam_role_arn #iam_role_arn} => String
         | 
| 780 | 
            +
                #   * {Types::ExportTask#kms_key_id #kms_key_id} => String
         | 
| 781 | 
            +
                #   * {Types::ExportTask#status #status} => String
         | 
| 782 | 
            +
                #   * {Types::ExportTask#percent_progress #percent_progress} => Integer
         | 
| 783 | 
            +
                #   * {Types::ExportTask#total_extracted_data_in_gb #total_extracted_data_in_gb} => Integer
         | 
| 784 | 
            +
                #   * {Types::ExportTask#failure_cause #failure_cause} => String
         | 
| 785 | 
            +
                #   * {Types::ExportTask#warning_message #warning_message} => String
         | 
| 786 | 
            +
                #
         | 
| 787 | 
            +
                # @example Request syntax with placeholder values
         | 
| 788 | 
            +
                #
         | 
| 789 | 
            +
                #   resp = client.cancel_export_task({
         | 
| 790 | 
            +
                #     export_task_identifier: "String", # required
         | 
| 791 | 
            +
                #   })
         | 
| 792 | 
            +
                #
         | 
| 793 | 
            +
                # @example Response structure
         | 
| 794 | 
            +
                #
         | 
| 795 | 
            +
                #   resp.export_task_identifier #=> String
         | 
| 796 | 
            +
                #   resp.source_arn #=> String
         | 
| 797 | 
            +
                #   resp.export_only #=> Array
         | 
| 798 | 
            +
                #   resp.export_only[0] #=> String
         | 
| 799 | 
            +
                #   resp.snapshot_time #=> Time
         | 
| 800 | 
            +
                #   resp.task_start_time #=> Time
         | 
| 801 | 
            +
                #   resp.task_end_time #=> Time
         | 
| 802 | 
            +
                #   resp.s3_bucket #=> String
         | 
| 803 | 
            +
                #   resp.s3_prefix #=> String
         | 
| 804 | 
            +
                #   resp.iam_role_arn #=> String
         | 
| 805 | 
            +
                #   resp.kms_key_id #=> String
         | 
| 806 | 
            +
                #   resp.status #=> String
         | 
| 807 | 
            +
                #   resp.percent_progress #=> Integer
         | 
| 808 | 
            +
                #   resp.total_extracted_data_in_gb #=> Integer
         | 
| 809 | 
            +
                #   resp.failure_cause #=> String
         | 
| 810 | 
            +
                #   resp.warning_message #=> String
         | 
| 811 | 
            +
                #
         | 
| 812 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CancelExportTask AWS API Documentation
         | 
| 813 | 
            +
                #
         | 
| 814 | 
            +
                # @overload cancel_export_task(params = {})
         | 
| 815 | 
            +
                # @param [Hash] params ({})
         | 
| 816 | 
            +
                def cancel_export_task(params = {}, options = {})
         | 
| 817 | 
            +
                  req = build_request(:cancel_export_task, params)
         | 
| 818 | 
            +
                  req.send_request(options)
         | 
| 819 | 
            +
                end
         | 
| 820 | 
            +
             | 
| 762 821 | 
             
                # Copies the specified DB cluster parameter group.
         | 
| 763 822 | 
             
                #
         | 
| 764 823 | 
             
                # <note markdown="1"> This action only applies to Aurora DB clusters.
         | 
| @@ -900,7 +959,7 @@ module Aws::RDS | |
| 900 959 | 
             
                #     action contained in the pre-signed URL.
         | 
| 901 960 | 
             
                #
         | 
| 902 961 | 
             
                #   * `DestinationRegion` - The name of the AWS Region that the DB
         | 
| 903 | 
            -
                #     cluster snapshot  | 
| 962 | 
            +
                #     cluster snapshot is to be created in.
         | 
| 904 963 | 
             
                #
         | 
| 905 964 | 
             
                #   * `SourceDBClusterSnapshotIdentifier` - The DB cluster snapshot
         | 
| 906 965 | 
             
                #     identifier for the encrypted DB cluster snapshot to be copied.
         | 
| @@ -994,9 +1053,9 @@ module Aws::RDS | |
| 994 1053 | 
             
                #   Example: `my-cluster-snapshot2`
         | 
| 995 1054 | 
             
                #
         | 
| 996 1055 | 
             
                # @option params [String] :kms_key_id
         | 
| 997 | 
            -
                #   The AWS  | 
| 998 | 
            -
                #    | 
| 999 | 
            -
                #    | 
| 1056 | 
            +
                #   The AWS KMS key ID for an encrypted DB cluster snapshot. The KMS key
         | 
| 1057 | 
            +
                #   ID is the Amazon Resource Name (ARN), KMS key identifier, or the KMS
         | 
| 1058 | 
            +
                #   key alias for the KMS encryption key.
         | 
| 1000 1059 | 
             
                #
         | 
| 1001 1060 | 
             
                #   If you copy an encrypted DB cluster snapshot from your AWS account,
         | 
| 1002 1061 | 
             
                #   you can specify a value for `KmsKeyId` to encrypt the copy with a new
         | 
| @@ -1038,7 +1097,7 @@ module Aws::RDS | |
| 1038 1097 | 
             
                #     Region, and the action contained in the pre-signed URL.
         | 
| 1039 1098 | 
             
                #
         | 
| 1040 1099 | 
             
                #   * `DestinationRegion` - The name of the AWS Region that the DB cluster
         | 
| 1041 | 
            -
                #     snapshot  | 
| 1100 | 
            +
                #     snapshot is to be created in.
         | 
| 1042 1101 | 
             
                #
         | 
| 1043 1102 | 
             
                #   * `SourceDBClusterSnapshotIdentifier` - The DB cluster snapshot
         | 
| 1044 1103 | 
             
                #     identifier for the encrypted DB cluster snapshot to be copied. This
         | 
| @@ -1732,9 +1791,9 @@ module Aws::RDS | |
| 1732 1791 | 
             
                #   the specified CharacterSet.
         | 
| 1733 1792 | 
             
                #
         | 
| 1734 1793 | 
             
                # @option params [String] :database_name
         | 
| 1735 | 
            -
                #   The name for your database of up to 64  | 
| 1736 | 
            -
                #    | 
| 1737 | 
            -
                #    | 
| 1794 | 
            +
                #   The name for your database of up to 64 alphanumeric characters. If you
         | 
| 1795 | 
            +
                #   do not provide a name, Amazon RDS doesn't create a database in the DB
         | 
| 1796 | 
            +
                #   cluster you are creating.
         | 
| 1738 1797 | 
             
                #
         | 
| 1739 1798 | 
             
                # @option params [required, String] :db_cluster_identifier
         | 
| 1740 1799 | 
             
                #   The DB cluster identifier. This parameter is stored as a lowercase
         | 
| @@ -3123,7 +3182,7 @@ module Aws::RDS | |
| 3123 3182 | 
             
                #   option group.
         | 
| 3124 3183 | 
             
                #
         | 
| 3125 3184 | 
             
                #   Permanent options, such as the TDE option for Oracle Advanced Security
         | 
| 3126 | 
            -
                #   TDE, can't be removed from an option group,  | 
| 3185 | 
            +
                #   TDE, can't be removed from an option group. Also, that option group
         | 
| 3127 3186 | 
             
                #   can't be removed from a DB instance once it is associated with a DB
         | 
| 3128 3187 | 
             
                #   instance
         | 
| 3129 3188 | 
             
                #
         | 
| @@ -4713,7 +4772,7 @@ module Aws::RDS | |
| 4713 4772 | 
             
                end
         | 
| 4714 4773 |  | 
| 4715 4774 | 
             
                # Creates an RDS event notification subscription. This action requires a
         | 
| 4716 | 
            -
                # topic  | 
| 4775 | 
            +
                # topic Amazon Resource Name (ARN) created by either the RDS console,
         | 
| 4717 4776 | 
             
                # the SNS console, or the SNS API. To obtain an ARN with SNS, you must
         | 
| 4718 4777 | 
             
                # create a topic in Amazon SNS and subscribe to the topic. The ARN is
         | 
| 4719 4778 | 
             
                # displayed in the SNS console.
         | 
| @@ -4729,8 +4788,8 @@ module Aws::RDS | |
| 4729 4788 | 
             
                # db-instance and SourceIdentifier = myDBInstance1, you are notified of
         | 
| 4730 4789 | 
             
                # all the db-instance events for the specified source. If you specify a
         | 
| 4731 4790 | 
             
                # SourceType but do not specify a SourceIdentifier, you receive notice
         | 
| 4732 | 
            -
                # of the events for that source type for all your RDS sources. If you | 
| 4733 | 
            -
                #  | 
| 4791 | 
            +
                # of the events for that source type for all your RDS sources. If you
         | 
| 4792 | 
            +
                # don't specify either the SourceType or the SourceIdentifier, you are
         | 
| 4734 4793 | 
             
                # notified of events generated from all RDS sources belonging to your
         | 
| 4735 4794 | 
             
                # customer account.
         | 
| 4736 4795 | 
             
                #
         | 
| @@ -4773,7 +4832,7 @@ module Aws::RDS | |
| 4773 4832 | 
             
                #   The list of identifiers of the event sources for which events are
         | 
| 4774 4833 | 
             
                #   returned. If not specified, then all sources are included in the
         | 
| 4775 4834 | 
             
                #   response. An identifier must begin with a letter and must contain only
         | 
| 4776 | 
            -
                #   ASCII letters, digits, and hyphens | 
| 4835 | 
            +
                #   ASCII letters, digits, and hyphens. It can't end with a hyphen or
         | 
| 4777 4836 | 
             
                #   contain two consecutive hyphens.
         | 
| 4778 4837 | 
             
                #
         | 
| 4779 4838 | 
             
                #   Constraints:
         | 
| @@ -5480,9 +5539,9 @@ module Aws::RDS | |
| 5480 5539 | 
             
                # action `DescribeDBInstance` is used to monitor the status of this
         | 
| 5481 5540 | 
             
                # operation. The action can't be canceled or reverted once submitted.
         | 
| 5482 5541 | 
             
                #
         | 
| 5483 | 
            -
                #  | 
| 5484 | 
            -
                # ` | 
| 5485 | 
            -
                #  | 
| 5542 | 
            +
                # When a DB instance is in a failure state and has a status of `failed`,
         | 
| 5543 | 
            +
                # `incompatible-restore`, or `incompatible-network`, you can only delete
         | 
| 5544 | 
            +
                # it when you skip creation of the final snapshot with the
         | 
| 5486 5545 | 
             
                # `SkipFinalSnapshot` parameter.
         | 
| 5487 5546 | 
             
                #
         | 
| 5488 5547 | 
             
                # If the specified DB instance is part of an Amazon Aurora DB cluster,
         | 
| @@ -5517,7 +5576,7 @@ module Aws::RDS | |
| 5517 5576 | 
             
                #   created before the DB instance is deleted. By default, skip isn't
         | 
| 5518 5577 | 
             
                #   specified, and the DB snapshot is created.
         | 
| 5519 5578 | 
             
                #
         | 
| 5520 | 
            -
                #    | 
| 5579 | 
            +
                #   When a DB instance is in a failure state and has a status of
         | 
| 5521 5580 | 
             
                #   'failed', 'incompatible-restore', or 'incompatible-network', it
         | 
| 5522 5581 | 
             
                #   can only be deleted when skip is specified.
         | 
| 5523 5582 | 
             
                #
         | 
| @@ -9192,6 +9251,98 @@ module Aws::RDS | |
| 9192 9251 | 
             
                  req.send_request(options)
         | 
| 9193 9252 | 
             
                end
         | 
| 9194 9253 |  | 
| 9254 | 
            +
                # Returns information about a snapshot export to Amazon S3. This API
         | 
| 9255 | 
            +
                # operation supports pagination.
         | 
| 9256 | 
            +
                #
         | 
| 9257 | 
            +
                # @option params [String] :export_task_identifier
         | 
| 9258 | 
            +
                #   The identifier of the snapshot export task to be described.
         | 
| 9259 | 
            +
                #
         | 
| 9260 | 
            +
                # @option params [String] :source_arn
         | 
| 9261 | 
            +
                #   The Amazon Resource Name (ARN) of the snapshot exported to Amazon S3.
         | 
| 9262 | 
            +
                #
         | 
| 9263 | 
            +
                # @option params [Array<Types::Filter>] :filters
         | 
| 9264 | 
            +
                #   Filters specify one or more snapshot exports to describe. The filters
         | 
| 9265 | 
            +
                #   are specified as name-value pairs that define what to include in the
         | 
| 9266 | 
            +
                #   output.
         | 
| 9267 | 
            +
                #
         | 
| 9268 | 
            +
                #   Supported filters include the following:
         | 
| 9269 | 
            +
                #
         | 
| 9270 | 
            +
                #   * `export-task-identifier` - An identifier for the snapshot export
         | 
| 9271 | 
            +
                #     task.
         | 
| 9272 | 
            +
                #
         | 
| 9273 | 
            +
                #   * `s3-bucket` - The Amazon S3 bucket the snapshot is exported to.
         | 
| 9274 | 
            +
                #
         | 
| 9275 | 
            +
                #   * `source-arn` - The Amazon Resource Name (ARN) of the snapshot
         | 
| 9276 | 
            +
                #     exported to Amazon S3
         | 
| 9277 | 
            +
                #
         | 
| 9278 | 
            +
                #   * `status` - The status of the export task.
         | 
| 9279 | 
            +
                #
         | 
| 9280 | 
            +
                # @option params [String] :marker
         | 
| 9281 | 
            +
                #   An optional pagination token provided by a previous
         | 
| 9282 | 
            +
                #   `DescribeExportTasks` request. If you specify this parameter, the
         | 
| 9283 | 
            +
                #   response includes only records beyond the marker, up to the value
         | 
| 9284 | 
            +
                #   specified by the `MaxRecords` parameter.
         | 
| 9285 | 
            +
                #
         | 
| 9286 | 
            +
                # @option params [String] :max_records
         | 
| 9287 | 
            +
                #   The maximum number of records to include in the response. If more
         | 
| 9288 | 
            +
                #   records exist than the specified value, a pagination token called a
         | 
| 9289 | 
            +
                #   marker is included in the response. You can use the marker in a later
         | 
| 9290 | 
            +
                #   `DescribeExportTasks` request to retrieve the remaining results.
         | 
| 9291 | 
            +
                #
         | 
| 9292 | 
            +
                #   Default: 100
         | 
| 9293 | 
            +
                #
         | 
| 9294 | 
            +
                #   Constraints: Minimum 20, maximum 100.
         | 
| 9295 | 
            +
                #
         | 
| 9296 | 
            +
                # @return [Types::ExportTasksMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 9297 | 
            +
                #
         | 
| 9298 | 
            +
                #   * {Types::ExportTasksMessage#marker #marker} => String
         | 
| 9299 | 
            +
                #   * {Types::ExportTasksMessage#export_tasks #export_tasks} => Array<Types::ExportTask>
         | 
| 9300 | 
            +
                #
         | 
| 9301 | 
            +
                # @example Request syntax with placeholder values
         | 
| 9302 | 
            +
                #
         | 
| 9303 | 
            +
                #   resp = client.describe_export_tasks({
         | 
| 9304 | 
            +
                #     export_task_identifier: "String",
         | 
| 9305 | 
            +
                #     source_arn: "String",
         | 
| 9306 | 
            +
                #     filters: [
         | 
| 9307 | 
            +
                #       {
         | 
| 9308 | 
            +
                #         name: "String", # required
         | 
| 9309 | 
            +
                #         values: ["String"], # required
         | 
| 9310 | 
            +
                #       },
         | 
| 9311 | 
            +
                #     ],
         | 
| 9312 | 
            +
                #     marker: "String",
         | 
| 9313 | 
            +
                #     max_records: "String",
         | 
| 9314 | 
            +
                #   })
         | 
| 9315 | 
            +
                #
         | 
| 9316 | 
            +
                # @example Response structure
         | 
| 9317 | 
            +
                #
         | 
| 9318 | 
            +
                #   resp.marker #=> String
         | 
| 9319 | 
            +
                #   resp.export_tasks #=> Array
         | 
| 9320 | 
            +
                #   resp.export_tasks[0].export_task_identifier #=> String
         | 
| 9321 | 
            +
                #   resp.export_tasks[0].source_arn #=> String
         | 
| 9322 | 
            +
                #   resp.export_tasks[0].export_only #=> Array
         | 
| 9323 | 
            +
                #   resp.export_tasks[0].export_only[0] #=> String
         | 
| 9324 | 
            +
                #   resp.export_tasks[0].snapshot_time #=> Time
         | 
| 9325 | 
            +
                #   resp.export_tasks[0].task_start_time #=> Time
         | 
| 9326 | 
            +
                #   resp.export_tasks[0].task_end_time #=> Time
         | 
| 9327 | 
            +
                #   resp.export_tasks[0].s3_bucket #=> String
         | 
| 9328 | 
            +
                #   resp.export_tasks[0].s3_prefix #=> String
         | 
| 9329 | 
            +
                #   resp.export_tasks[0].iam_role_arn #=> String
         | 
| 9330 | 
            +
                #   resp.export_tasks[0].kms_key_id #=> String
         | 
| 9331 | 
            +
                #   resp.export_tasks[0].status #=> String
         | 
| 9332 | 
            +
                #   resp.export_tasks[0].percent_progress #=> Integer
         | 
| 9333 | 
            +
                #   resp.export_tasks[0].total_extracted_data_in_gb #=> Integer
         | 
| 9334 | 
            +
                #   resp.export_tasks[0].failure_cause #=> String
         | 
| 9335 | 
            +
                #   resp.export_tasks[0].warning_message #=> String
         | 
| 9336 | 
            +
                #
         | 
| 9337 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeExportTasks AWS API Documentation
         | 
| 9338 | 
            +
                #
         | 
| 9339 | 
            +
                # @overload describe_export_tasks(params = {})
         | 
| 9340 | 
            +
                # @param [Hash] params ({})
         | 
| 9341 | 
            +
                def describe_export_tasks(params = {}, options = {})
         | 
| 9342 | 
            +
                  req = build_request(:describe_export_tasks, params)
         | 
| 9343 | 
            +
                  req.send_request(options)
         | 
| 9344 | 
            +
                end
         | 
| 9345 | 
            +
             | 
| 9195 9346 | 
             
                # Returns information about Aurora global database clusters. This API
         | 
| 9196 9347 | 
             
                # supports pagination.
         | 
| 9197 9348 | 
             
                #
         | 
| @@ -10643,8 +10794,8 @@ module Aws::RDS | |
| 10643 10794 | 
             
                end
         | 
| 10644 10795 |  | 
| 10645 10796 | 
             
                # Override the system-default Secure Sockets Layer/Transport Layer
         | 
| 10646 | 
            -
                # Security (SSL/TLS) certificate for Amazon RDS for new DB instances | 
| 10647 | 
            -
                # remove the override.
         | 
| 10797 | 
            +
                # Security (SSL/TLS) certificate for Amazon RDS for new DB instances
         | 
| 10798 | 
            +
                # temporarily, or remove the override.
         | 
| 10648 10799 | 
             
                #
         | 
| 10649 10800 | 
             
                # By using this operation, you can specify an RDS-approved SSL/TLS
         | 
| 10650 10801 | 
             
                # certificate for new DB instances that is different from the default
         | 
| @@ -12373,7 +12524,7 @@ module Aws::RDS | |
| 12373 12524 | 
             
                # @option params [required, Array<Types::Parameter>] :parameters
         | 
| 12374 12525 | 
             
                #   An array of parameter names, values, and the apply method for the
         | 
| 12375 12526 | 
             
                #   parameter update. At least one parameter name, value, and apply method
         | 
| 12376 | 
            -
                #   must be supplied;  | 
| 12527 | 
            +
                #   must be supplied; later arguments are optional. A maximum of 20
         | 
| 12377 12528 | 
             
                #   parameters can be modified in a single request.
         | 
| 12378 12529 | 
             
                #
         | 
| 12379 12530 | 
             
                #   Valid Values (for the application method): `immediate |
         | 
| @@ -12886,9 +13037,9 @@ module Aws::RDS | |
| 12886 13037 | 
             
                  req.send_request(options)
         | 
| 12887 13038 | 
             
                end
         | 
| 12888 13039 |  | 
| 12889 | 
            -
                # Modifies an existing RDS event notification subscription.  | 
| 12890 | 
            -
                #  | 
| 12891 | 
            -
                #  | 
| 13040 | 
            +
                # Modifies an existing RDS event notification subscription. You can't
         | 
| 13041 | 
            +
                # modify the source identifiers using this call. To change source
         | 
| 13042 | 
            +
                # identifiers for a subscription, use the
         | 
| 12892 13043 | 
             
                # `AddSourceIdentifierToSubscription` and
         | 
| 12893 13044 | 
             
                # `RemoveSourceIdentifierFromSubscription` calls.
         | 
| 12894 13045 | 
             
                #
         | 
| @@ -17507,6 +17658,110 @@ module Aws::RDS | |
| 17507 17658 | 
             
                  req.send_request(options)
         | 
| 17508 17659 | 
             
                end
         | 
| 17509 17660 |  | 
| 17661 | 
            +
                # Starts an export of a snapshot to Amazon S3. The provided IAM role
         | 
| 17662 | 
            +
                # must have access to the S3 bucket.
         | 
| 17663 | 
            +
                #
         | 
| 17664 | 
            +
                # @option params [required, String] :export_task_identifier
         | 
| 17665 | 
            +
                #   A unique identifier for the snapshot export task. This ID isn't an
         | 
| 17666 | 
            +
                #   identifier for the Amazon S3 bucket where the snapshot is to be
         | 
| 17667 | 
            +
                #   exported to.
         | 
| 17668 | 
            +
                #
         | 
| 17669 | 
            +
                # @option params [required, String] :source_arn
         | 
| 17670 | 
            +
                #   The Amazon Resource Name (ARN) of the snapshot to export to Amazon S3.
         | 
| 17671 | 
            +
                #
         | 
| 17672 | 
            +
                # @option params [required, String] :s3_bucket_name
         | 
| 17673 | 
            +
                #   The name of the Amazon S3 bucket to export the snapshot to.
         | 
| 17674 | 
            +
                #
         | 
| 17675 | 
            +
                # @option params [required, String] :iam_role_arn
         | 
| 17676 | 
            +
                #   The name of the IAM role to use for writing to the Amazon S3 bucket
         | 
| 17677 | 
            +
                #   when exporting a snapshot.
         | 
| 17678 | 
            +
                #
         | 
| 17679 | 
            +
                # @option params [required, String] :kms_key_id
         | 
| 17680 | 
            +
                #   The ID of the AWS KMS key to use to encrypt the snapshot exported to
         | 
| 17681 | 
            +
                #   Amazon S3. The KMS key ID is the Amazon Resource Name (ARN), the KMS
         | 
| 17682 | 
            +
                #   key identifier, or the KMS key alias for the KMS encryption key. The
         | 
| 17683 | 
            +
                #   IAM role used for the snapshot export must have encryption and
         | 
| 17684 | 
            +
                #   decryption permissions to use this KMS key.
         | 
| 17685 | 
            +
                #
         | 
| 17686 | 
            +
                # @option params [String] :s3_prefix
         | 
| 17687 | 
            +
                #   The Amazon S3 bucket prefix to use as the file name and path of the
         | 
| 17688 | 
            +
                #   exported snapshot.
         | 
| 17689 | 
            +
                #
         | 
| 17690 | 
            +
                # @option params [Array<String>] :export_only
         | 
| 17691 | 
            +
                #   The data to be exported from the snapshot. If this parameter is not
         | 
| 17692 | 
            +
                #   provided, all the snapshot data is exported. Valid values are the
         | 
| 17693 | 
            +
                #   following:
         | 
| 17694 | 
            +
                #
         | 
| 17695 | 
            +
                #   * `database` - Export all the data of the snapshot.
         | 
| 17696 | 
            +
                #
         | 
| 17697 | 
            +
                #   * `database.table [table-name]` - Export a table of the snapshot.
         | 
| 17698 | 
            +
                #
         | 
| 17699 | 
            +
                #   * `database.schema [schema-name]` - Export a database schema of the
         | 
| 17700 | 
            +
                #     snapshot. This value isn't valid for RDS for MySQL, RDS for
         | 
| 17701 | 
            +
                #     MariaDB, or Aurora MySQL.
         | 
| 17702 | 
            +
                #
         | 
| 17703 | 
            +
                #   * `database.schema.table [table-name]` - Export a table of the
         | 
| 17704 | 
            +
                #     database schema. This value isn't valid for RDS for MySQL, RDS for
         | 
| 17705 | 
            +
                #     MariaDB, or Aurora MySQL.
         | 
| 17706 | 
            +
                #
         | 
| 17707 | 
            +
                # @return [Types::ExportTask] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 17708 | 
            +
                #
         | 
| 17709 | 
            +
                #   * {Types::ExportTask#export_task_identifier #export_task_identifier} => String
         | 
| 17710 | 
            +
                #   * {Types::ExportTask#source_arn #source_arn} => String
         | 
| 17711 | 
            +
                #   * {Types::ExportTask#export_only #export_only} => Array<String>
         | 
| 17712 | 
            +
                #   * {Types::ExportTask#snapshot_time #snapshot_time} => Time
         | 
| 17713 | 
            +
                #   * {Types::ExportTask#task_start_time #task_start_time} => Time
         | 
| 17714 | 
            +
                #   * {Types::ExportTask#task_end_time #task_end_time} => Time
         | 
| 17715 | 
            +
                #   * {Types::ExportTask#s3_bucket #s3_bucket} => String
         | 
| 17716 | 
            +
                #   * {Types::ExportTask#s3_prefix #s3_prefix} => String
         | 
| 17717 | 
            +
                #   * {Types::ExportTask#iam_role_arn #iam_role_arn} => String
         | 
| 17718 | 
            +
                #   * {Types::ExportTask#kms_key_id #kms_key_id} => String
         | 
| 17719 | 
            +
                #   * {Types::ExportTask#status #status} => String
         | 
| 17720 | 
            +
                #   * {Types::ExportTask#percent_progress #percent_progress} => Integer
         | 
| 17721 | 
            +
                #   * {Types::ExportTask#total_extracted_data_in_gb #total_extracted_data_in_gb} => Integer
         | 
| 17722 | 
            +
                #   * {Types::ExportTask#failure_cause #failure_cause} => String
         | 
| 17723 | 
            +
                #   * {Types::ExportTask#warning_message #warning_message} => String
         | 
| 17724 | 
            +
                #
         | 
| 17725 | 
            +
                # @example Request syntax with placeholder values
         | 
| 17726 | 
            +
                #
         | 
| 17727 | 
            +
                #   resp = client.start_export_task({
         | 
| 17728 | 
            +
                #     export_task_identifier: "String", # required
         | 
| 17729 | 
            +
                #     source_arn: "String", # required
         | 
| 17730 | 
            +
                #     s3_bucket_name: "String", # required
         | 
| 17731 | 
            +
                #     iam_role_arn: "String", # required
         | 
| 17732 | 
            +
                #     kms_key_id: "String", # required
         | 
| 17733 | 
            +
                #     s3_prefix: "String",
         | 
| 17734 | 
            +
                #     export_only: ["String"],
         | 
| 17735 | 
            +
                #   })
         | 
| 17736 | 
            +
                #
         | 
| 17737 | 
            +
                # @example Response structure
         | 
| 17738 | 
            +
                #
         | 
| 17739 | 
            +
                #   resp.export_task_identifier #=> String
         | 
| 17740 | 
            +
                #   resp.source_arn #=> String
         | 
| 17741 | 
            +
                #   resp.export_only #=> Array
         | 
| 17742 | 
            +
                #   resp.export_only[0] #=> String
         | 
| 17743 | 
            +
                #   resp.snapshot_time #=> Time
         | 
| 17744 | 
            +
                #   resp.task_start_time #=> Time
         | 
| 17745 | 
            +
                #   resp.task_end_time #=> Time
         | 
| 17746 | 
            +
                #   resp.s3_bucket #=> String
         | 
| 17747 | 
            +
                #   resp.s3_prefix #=> String
         | 
| 17748 | 
            +
                #   resp.iam_role_arn #=> String
         | 
| 17749 | 
            +
                #   resp.kms_key_id #=> String
         | 
| 17750 | 
            +
                #   resp.status #=> String
         | 
| 17751 | 
            +
                #   resp.percent_progress #=> Integer
         | 
| 17752 | 
            +
                #   resp.total_extracted_data_in_gb #=> Integer
         | 
| 17753 | 
            +
                #   resp.failure_cause #=> String
         | 
| 17754 | 
            +
                #   resp.warning_message #=> String
         | 
| 17755 | 
            +
                #
         | 
| 17756 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartExportTask AWS API Documentation
         | 
| 17757 | 
            +
                #
         | 
| 17758 | 
            +
                # @overload start_export_task(params = {})
         | 
| 17759 | 
            +
                # @param [Hash] params ({})
         | 
| 17760 | 
            +
                def start_export_task(params = {}, options = {})
         | 
| 17761 | 
            +
                  req = build_request(:start_export_task, params)
         | 
| 17762 | 
            +
                  req.send_request(options)
         | 
| 17763 | 
            +
                end
         | 
| 17764 | 
            +
             | 
| 17510 17765 | 
             
                # Stops a database activity stream that was started using the AWS
         | 
| 17511 17766 | 
             
                # console, the `start-activity-stream` AWS CLI command, or the
         | 
| 17512 17767 | 
             
                # `StartActivityStream` action.
         | 
| @@ -17842,7 +18097,7 @@ module Aws::RDS | |
| 17842 18097 | 
             
                    params: params,
         | 
| 17843 18098 | 
             
                    config: config)
         | 
| 17844 18099 | 
             
                  context[:gem_name] = 'aws-sdk-rds'
         | 
| 17845 | 
            -
                  context[:gem_version] = '1. | 
| 18100 | 
            +
                  context[:gem_version] = '1.76.0'
         | 
| 17846 18101 | 
             
                  Seahorse::Client::Request.new(handlers, context)
         | 
| 17847 18102 | 
             
                end
         | 
| 17848 18103 |  | 
| @@ -40,6 +40,7 @@ module Aws::RDS | |
| 40 40 | 
             
                BackupPolicyNotFoundFault = Shapes::StructureShape.new(name: 'BackupPolicyNotFoundFault')
         | 
| 41 41 | 
             
                Boolean = Shapes::BooleanShape.new(name: 'Boolean')
         | 
| 42 42 | 
             
                BooleanOptional = Shapes::BooleanShape.new(name: 'BooleanOptional')
         | 
| 43 | 
            +
                CancelExportTaskMessage = Shapes::StructureShape.new(name: 'CancelExportTaskMessage')
         | 
| 43 44 | 
             
                Certificate = Shapes::StructureShape.new(name: 'Certificate')
         | 
| 44 45 | 
             
                CertificateList = Shapes::ListShape.new(name: 'CertificateList')
         | 
| 45 46 | 
             
                CertificateMessage = Shapes::StructureShape.new(name: 'CertificateMessage')
         | 
| @@ -268,6 +269,7 @@ module Aws::RDS | |
| 268 269 | 
             
                DescribeEventCategoriesMessage = Shapes::StructureShape.new(name: 'DescribeEventCategoriesMessage')
         | 
| 269 270 | 
             
                DescribeEventSubscriptionsMessage = Shapes::StructureShape.new(name: 'DescribeEventSubscriptionsMessage')
         | 
| 270 271 | 
             
                DescribeEventsMessage = Shapes::StructureShape.new(name: 'DescribeEventsMessage')
         | 
| 272 | 
            +
                DescribeExportTasksMessage = Shapes::StructureShape.new(name: 'DescribeExportTasksMessage')
         | 
| 271 273 | 
             
                DescribeGlobalClustersMessage = Shapes::StructureShape.new(name: 'DescribeGlobalClustersMessage')
         | 
| 272 274 | 
             
                DescribeInstallationMediaMessage = Shapes::StructureShape.new(name: 'DescribeInstallationMediaMessage')
         | 
| 273 275 | 
             
                DescribeOptionGroupOptionsMessage = Shapes::StructureShape.new(name: 'DescribeOptionGroupOptionsMessage')
         | 
| @@ -305,6 +307,11 @@ module Aws::RDS | |
| 305 307 | 
             
                EventSubscriptionsList = Shapes::ListShape.new(name: 'EventSubscriptionsList')
         | 
| 306 308 | 
             
                EventSubscriptionsMessage = Shapes::StructureShape.new(name: 'EventSubscriptionsMessage')
         | 
| 307 309 | 
             
                EventsMessage = Shapes::StructureShape.new(name: 'EventsMessage')
         | 
| 310 | 
            +
                ExportTask = Shapes::StructureShape.new(name: 'ExportTask')
         | 
| 311 | 
            +
                ExportTaskAlreadyExistsFault = Shapes::StructureShape.new(name: 'ExportTaskAlreadyExistsFault')
         | 
| 312 | 
            +
                ExportTaskNotFoundFault = Shapes::StructureShape.new(name: 'ExportTaskNotFoundFault')
         | 
| 313 | 
            +
                ExportTasksList = Shapes::ListShape.new(name: 'ExportTasksList')
         | 
| 314 | 
            +
                ExportTasksMessage = Shapes::StructureShape.new(name: 'ExportTasksMessage')
         | 
| 308 315 | 
             
                FailoverDBClusterMessage = Shapes::StructureShape.new(name: 'FailoverDBClusterMessage')
         | 
| 309 316 | 
             
                FailoverDBClusterResult = Shapes::StructureShape.new(name: 'FailoverDBClusterResult')
         | 
| 310 317 | 
             
                FeatureNameList = Shapes::ListShape.new(name: 'FeatureNameList')
         | 
| @@ -322,6 +329,8 @@ module Aws::RDS | |
| 322 329 | 
             
                IAMAuthMode = Shapes::StringShape.new(name: 'IAMAuthMode')
         | 
| 323 330 | 
             
                IPRange = Shapes::StructureShape.new(name: 'IPRange')
         | 
| 324 331 | 
             
                IPRangeList = Shapes::ListShape.new(name: 'IPRangeList')
         | 
| 332 | 
            +
                IamRoleMissingPermissionsFault = Shapes::StructureShape.new(name: 'IamRoleMissingPermissionsFault')
         | 
| 333 | 
            +
                IamRoleNotFoundFault = Shapes::StructureShape.new(name: 'IamRoleNotFoundFault')
         | 
| 325 334 | 
             
                ImportInstallationMediaMessage = Shapes::StructureShape.new(name: 'ImportInstallationMediaMessage')
         | 
| 326 335 | 
             
                InstallationMedia = Shapes::StructureShape.new(name: 'InstallationMedia')
         | 
| 327 336 | 
             
                InstallationMediaAlreadyExistsFault = Shapes::StructureShape.new(name: 'InstallationMediaAlreadyExistsFault')
         | 
| @@ -349,6 +358,9 @@ module Aws::RDS | |
| 349 358 | 
             
                InvalidDBSubnetGroupStateFault = Shapes::StructureShape.new(name: 'InvalidDBSubnetGroupStateFault')
         | 
| 350 359 | 
             
                InvalidDBSubnetStateFault = Shapes::StructureShape.new(name: 'InvalidDBSubnetStateFault')
         | 
| 351 360 | 
             
                InvalidEventSubscriptionStateFault = Shapes::StructureShape.new(name: 'InvalidEventSubscriptionStateFault')
         | 
| 361 | 
            +
                InvalidExportOnlyFault = Shapes::StructureShape.new(name: 'InvalidExportOnlyFault')
         | 
| 362 | 
            +
                InvalidExportSourceStateFault = Shapes::StructureShape.new(name: 'InvalidExportSourceStateFault')
         | 
| 363 | 
            +
                InvalidExportTaskStateFault = Shapes::StructureShape.new(name: 'InvalidExportTaskStateFault')
         | 
| 352 364 | 
             
                InvalidGlobalClusterStateFault = Shapes::StructureShape.new(name: 'InvalidGlobalClusterStateFault')
         | 
| 353 365 | 
             
                InvalidOptionGroupStateFault = Shapes::StructureShape.new(name: 'InvalidOptionGroupStateFault')
         | 
| 354 366 | 
             
                InvalidRestoreFault = Shapes::StructureShape.new(name: 'InvalidRestoreFault')
         | 
| @@ -505,6 +517,7 @@ module Aws::RDS | |
| 505 517 | 
             
                StartDBClusterResult = Shapes::StructureShape.new(name: 'StartDBClusterResult')
         | 
| 506 518 | 
             
                StartDBInstanceMessage = Shapes::StructureShape.new(name: 'StartDBInstanceMessage')
         | 
| 507 519 | 
             
                StartDBInstanceResult = Shapes::StructureShape.new(name: 'StartDBInstanceResult')
         | 
| 520 | 
            +
                StartExportTaskMessage = Shapes::StructureShape.new(name: 'StartExportTaskMessage')
         | 
| 508 521 | 
             
                StopActivityStreamRequest = Shapes::StructureShape.new(name: 'StopActivityStreamRequest')
         | 
| 509 522 | 
             
                StopActivityStreamResponse = Shapes::StructureShape.new(name: 'StopActivityStreamResponse')
         | 
| 510 523 | 
             
                StopDBClusterMessage = Shapes::StructureShape.new(name: 'StopDBClusterMessage')
         | 
| @@ -618,6 +631,9 @@ module Aws::RDS | |
| 618 631 | 
             
                BacktrackDBClusterMessage.add_member(:use_earliest_time_on_point_in_time_unavailable, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseEarliestTimeOnPointInTimeUnavailable"))
         | 
| 619 632 | 
             
                BacktrackDBClusterMessage.struct_class = Types::BacktrackDBClusterMessage
         | 
| 620 633 |  | 
| 634 | 
            +
                CancelExportTaskMessage.add_member(:export_task_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ExportTaskIdentifier"))
         | 
| 635 | 
            +
                CancelExportTaskMessage.struct_class = Types::CancelExportTaskMessage
         | 
| 636 | 
            +
             | 
| 621 637 | 
             
                Certificate.add_member(:certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CertificateIdentifier"))
         | 
| 622 638 | 
             
                Certificate.add_member(:certificate_type, Shapes::ShapeRef.new(shape: String, location_name: "CertificateType"))
         | 
| 623 639 | 
             
                Certificate.add_member(:thumbprint, Shapes::ShapeRef.new(shape: String, location_name: "Thumbprint"))
         | 
| @@ -1729,6 +1745,13 @@ module Aws::RDS | |
| 1729 1745 | 
             
                DescribeEventsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
         | 
| 1730 1746 | 
             
                DescribeEventsMessage.struct_class = Types::DescribeEventsMessage
         | 
| 1731 1747 |  | 
| 1748 | 
            +
                DescribeExportTasksMessage.add_member(:export_task_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ExportTaskIdentifier"))
         | 
| 1749 | 
            +
                DescribeExportTasksMessage.add_member(:source_arn, Shapes::ShapeRef.new(shape: String, location_name: "SourceArn"))
         | 
| 1750 | 
            +
                DescribeExportTasksMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
         | 
| 1751 | 
            +
                DescribeExportTasksMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
         | 
| 1752 | 
            +
                DescribeExportTasksMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: String, location_name: "MaxRecords"))
         | 
| 1753 | 
            +
                DescribeExportTasksMessage.struct_class = Types::DescribeExportTasksMessage
         | 
| 1754 | 
            +
             | 
| 1732 1755 | 
             
                DescribeGlobalClustersMessage.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "GlobalClusterIdentifier"))
         | 
| 1733 1756 | 
             
                DescribeGlobalClustersMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
         | 
| 1734 1757 | 
             
                DescribeGlobalClustersMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
         | 
| @@ -1896,6 +1919,29 @@ module Aws::RDS | |
| 1896 1919 | 
             
                EventsMessage.add_member(:events, Shapes::ShapeRef.new(shape: EventList, location_name: "Events"))
         | 
| 1897 1920 | 
             
                EventsMessage.struct_class = Types::EventsMessage
         | 
| 1898 1921 |  | 
| 1922 | 
            +
                ExportTask.add_member(:export_task_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ExportTaskIdentifier"))
         | 
| 1923 | 
            +
                ExportTask.add_member(:source_arn, Shapes::ShapeRef.new(shape: String, location_name: "SourceArn"))
         | 
| 1924 | 
            +
                ExportTask.add_member(:export_only, Shapes::ShapeRef.new(shape: StringList, location_name: "ExportOnly"))
         | 
| 1925 | 
            +
                ExportTask.add_member(:snapshot_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "SnapshotTime"))
         | 
| 1926 | 
            +
                ExportTask.add_member(:task_start_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "TaskStartTime"))
         | 
| 1927 | 
            +
                ExportTask.add_member(:task_end_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "TaskEndTime"))
         | 
| 1928 | 
            +
                ExportTask.add_member(:s3_bucket, Shapes::ShapeRef.new(shape: String, location_name: "S3Bucket"))
         | 
| 1929 | 
            +
                ExportTask.add_member(:s3_prefix, Shapes::ShapeRef.new(shape: String, location_name: "S3Prefix"))
         | 
| 1930 | 
            +
                ExportTask.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "IamRoleArn"))
         | 
| 1931 | 
            +
                ExportTask.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
         | 
| 1932 | 
            +
                ExportTask.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
         | 
| 1933 | 
            +
                ExportTask.add_member(:percent_progress, Shapes::ShapeRef.new(shape: Integer, location_name: "PercentProgress"))
         | 
| 1934 | 
            +
                ExportTask.add_member(:total_extracted_data_in_gb, Shapes::ShapeRef.new(shape: Integer, location_name: "TotalExtractedDataInGB"))
         | 
| 1935 | 
            +
                ExportTask.add_member(:failure_cause, Shapes::ShapeRef.new(shape: String, location_name: "FailureCause"))
         | 
| 1936 | 
            +
                ExportTask.add_member(:warning_message, Shapes::ShapeRef.new(shape: String, location_name: "WarningMessage"))
         | 
| 1937 | 
            +
                ExportTask.struct_class = Types::ExportTask
         | 
| 1938 | 
            +
             | 
| 1939 | 
            +
                ExportTasksList.member = Shapes::ShapeRef.new(shape: ExportTask, location_name: "ExportTask")
         | 
| 1940 | 
            +
             | 
| 1941 | 
            +
                ExportTasksMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
         | 
| 1942 | 
            +
                ExportTasksMessage.add_member(:export_tasks, Shapes::ShapeRef.new(shape: ExportTasksList, location_name: "ExportTasks"))
         | 
| 1943 | 
            +
                ExportTasksMessage.struct_class = Types::ExportTasksMessage
         | 
| 1944 | 
            +
             | 
| 1899 1945 | 
             
                FailoverDBClusterMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
         | 
| 1900 1946 | 
             
                FailoverDBClusterMessage.add_member(:target_db_instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "TargetDBInstanceIdentifier"))
         | 
| 1901 1947 | 
             
                FailoverDBClusterMessage.struct_class = Types::FailoverDBClusterMessage
         | 
| @@ -2773,6 +2819,15 @@ module Aws::RDS | |
| 2773 2819 | 
             
                StartDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
         | 
| 2774 2820 | 
             
                StartDBInstanceResult.struct_class = Types::StartDBInstanceResult
         | 
| 2775 2821 |  | 
| 2822 | 
            +
                StartExportTaskMessage.add_member(:export_task_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ExportTaskIdentifier"))
         | 
| 2823 | 
            +
                StartExportTaskMessage.add_member(:source_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceArn"))
         | 
| 2824 | 
            +
                StartExportTaskMessage.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "S3BucketName"))
         | 
| 2825 | 
            +
                StartExportTaskMessage.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "IamRoleArn"))
         | 
| 2826 | 
            +
                StartExportTaskMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "KmsKeyId"))
         | 
| 2827 | 
            +
                StartExportTaskMessage.add_member(:s3_prefix, Shapes::ShapeRef.new(shape: String, location_name: "S3Prefix"))
         | 
| 2828 | 
            +
                StartExportTaskMessage.add_member(:export_only, Shapes::ShapeRef.new(shape: StringList, location_name: "ExportOnly"))
         | 
| 2829 | 
            +
                StartExportTaskMessage.struct_class = Types::StartExportTaskMessage
         | 
| 2830 | 
            +
             | 
| 2776 2831 | 
             
                StopActivityStreamRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceArn"))
         | 
| 2777 2832 | 
             
                StopActivityStreamRequest.add_member(:apply_immediately, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ApplyImmediately"))
         | 
| 2778 2833 | 
             
                StopActivityStreamRequest.struct_class = Types::StopActivityStreamRequest
         | 
| @@ -2978,6 +3033,16 @@ module Aws::RDS | |
| 2978 3033 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
         | 
| 2979 3034 | 
             
                  end)
         | 
| 2980 3035 |  | 
| 3036 | 
            +
                  api.add_operation(:cancel_export_task, Seahorse::Model::Operation.new.tap do |o|
         | 
| 3037 | 
            +
                    o.name = "CancelExportTask"
         | 
| 3038 | 
            +
                    o.http_method = "POST"
         | 
| 3039 | 
            +
                    o.http_request_uri = "/"
         | 
| 3040 | 
            +
                    o.input = Shapes::ShapeRef.new(shape: CancelExportTaskMessage)
         | 
| 3041 | 
            +
                    o.output = Shapes::ShapeRef.new(shape: ExportTask)
         | 
| 3042 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ExportTaskNotFoundFault)
         | 
| 3043 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: InvalidExportTaskStateFault)
         | 
| 3044 | 
            +
                  end)
         | 
| 3045 | 
            +
             | 
| 2981 3046 | 
             
                  api.add_operation(:copy_db_cluster_parameter_group, Seahorse::Model::Operation.new.tap do |o|
         | 
| 2982 3047 | 
             
                    o.name = "CopyDBClusterParameterGroup"
         | 
| 2983 3048 | 
             
                    o.http_method = "POST"
         | 
| @@ -3790,6 +3855,21 @@ module Aws::RDS | |
| 3790 3855 | 
             
                    )
         | 
| 3791 3856 | 
             
                  end)
         | 
| 3792 3857 |  | 
| 3858 | 
            +
                  api.add_operation(:describe_export_tasks, Seahorse::Model::Operation.new.tap do |o|
         | 
| 3859 | 
            +
                    o.name = "DescribeExportTasks"
         | 
| 3860 | 
            +
                    o.http_method = "POST"
         | 
| 3861 | 
            +
                    o.http_request_uri = "/"
         | 
| 3862 | 
            +
                    o.input = Shapes::ShapeRef.new(shape: DescribeExportTasksMessage)
         | 
| 3863 | 
            +
                    o.output = Shapes::ShapeRef.new(shape: ExportTasksMessage)
         | 
| 3864 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ExportTaskNotFoundFault)
         | 
| 3865 | 
            +
                    o[:pager] = Aws::Pager.new(
         | 
| 3866 | 
            +
                      limit_key: "max_records",
         | 
| 3867 | 
            +
                      tokens: {
         | 
| 3868 | 
            +
                        "marker" => "marker"
         | 
| 3869 | 
            +
                      }
         | 
| 3870 | 
            +
                    )
         | 
| 3871 | 
            +
                  end)
         | 
| 3872 | 
            +
             | 
| 3793 3873 | 
             
                  api.add_operation(:describe_global_clusters, Seahorse::Model::Operation.new.tap do |o|
         | 
| 3794 3874 | 
             
                    o.name = "DescribeGlobalClusters"
         | 
| 3795 3875 | 
             
                    o.http_method = "POST"
         | 
| @@ -4509,6 +4589,23 @@ module Aws::RDS | |
| 4509 4589 | 
             
                    o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
         | 
| 4510 4590 | 
             
                  end)
         | 
| 4511 4591 |  | 
| 4592 | 
            +
                  api.add_operation(:start_export_task, Seahorse::Model::Operation.new.tap do |o|
         | 
| 4593 | 
            +
                    o.name = "StartExportTask"
         | 
| 4594 | 
            +
                    o.http_method = "POST"
         | 
| 4595 | 
            +
                    o.http_request_uri = "/"
         | 
| 4596 | 
            +
                    o.input = Shapes::ShapeRef.new(shape: StartExportTaskMessage)
         | 
| 4597 | 
            +
                    o.output = Shapes::ShapeRef.new(shape: ExportTask)
         | 
| 4598 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: DBSnapshotNotFoundFault)
         | 
| 4599 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: DBClusterSnapshotNotFoundFault)
         | 
| 4600 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: ExportTaskAlreadyExistsFault)
         | 
| 4601 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: InvalidS3BucketFault)
         | 
| 4602 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: IamRoleNotFoundFault)
         | 
| 4603 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: IamRoleMissingPermissionsFault)
         | 
| 4604 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: InvalidExportOnlyFault)
         | 
| 4605 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
         | 
| 4606 | 
            +
                    o.errors << Shapes::ShapeRef.new(shape: InvalidExportSourceStateFault)
         | 
| 4607 | 
            +
                  end)
         | 
| 4608 | 
            +
             | 
| 4512 4609 | 
             
                  api.add_operation(:stop_activity_stream, Seahorse::Model::Operation.new.tap do |o|
         | 
| 4513 4610 | 
             
                    o.name = "StopActivityStream"
         | 
| 4514 4611 | 
             
                    o.http_method = "POST"
         | 
| @@ -622,9 +622,9 @@ module Aws::RDS | |
| 622 622 | 
             
                #   A value that indicates that the DB cluster should be associated with
         | 
| 623 623 | 
             
                #   the specified CharacterSet.
         | 
| 624 624 | 
             
                # @option options [String] :database_name
         | 
| 625 | 
            -
                #   The name for your database of up to 64  | 
| 626 | 
            -
                #    | 
| 627 | 
            -
                #    | 
| 625 | 
            +
                #   The name for your database of up to 64 alphanumeric characters. If you
         | 
| 626 | 
            +
                #   do not provide a name, Amazon RDS doesn't create a database in the DB
         | 
| 627 | 
            +
                #   cluster you are creating.
         | 
| 628 628 | 
             
                # @option options [String] :db_cluster_parameter_group_name
         | 
| 629 629 | 
             
                #   The name of the DB cluster parameter group to associate with this DB
         | 
| 630 630 | 
             
                #   cluster. If you do not specify a value, then the default DB cluster
         | 
| @@ -349,9 +349,9 @@ module Aws::RDS | |
| 349 349 | 
             
                #
         | 
| 350 350 | 
             
                #   Example: `my-cluster-snapshot2`
         | 
| 351 351 | 
             
                # @option options [String] :kms_key_id
         | 
| 352 | 
            -
                #   The AWS  | 
| 353 | 
            -
                #    | 
| 354 | 
            -
                #    | 
| 352 | 
            +
                #   The AWS KMS key ID for an encrypted DB cluster snapshot. The KMS key
         | 
| 353 | 
            +
                #   ID is the Amazon Resource Name (ARN), KMS key identifier, or the KMS
         | 
| 354 | 
            +
                #   key alias for the KMS encryption key.
         | 
| 355 355 | 
             
                #
         | 
| 356 356 | 
             
                #   If you copy an encrypted DB cluster snapshot from your AWS account,
         | 
| 357 357 | 
             
                #   you can specify a value for `KmsKeyId` to encrypt the copy with a new
         | 
| @@ -392,7 +392,7 @@ module Aws::RDS | |
| 392 392 | 
             
                #     Region, and the action contained in the pre-signed URL.
         | 
| 393 393 | 
             
                #
         | 
| 394 394 | 
             
                #   * `DestinationRegion` - The name of the AWS Region that the DB cluster
         | 
| 395 | 
            -
                #     snapshot  | 
| 395 | 
            +
                #     snapshot is to be created in.
         | 
| 396 396 | 
             
                #
         | 
| 397 397 | 
             
                #   * `SourceDBClusterSnapshotIdentifier` - The DB cluster snapshot
         | 
| 398 398 | 
             
                #     identifier for the encrypted DB cluster snapshot to be copied. This
         | 
| @@ -1218,7 +1218,7 @@ module Aws::RDS | |
| 1218 1218 | 
             
                #   option group.
         | 
| 1219 1219 | 
             
                #
         | 
| 1220 1220 | 
             
                #   Permanent options, such as the TDE option for Oracle Advanced Security
         | 
| 1221 | 
            -
                #   TDE, can't be removed from an option group,  | 
| 1221 | 
            +
                #   TDE, can't be removed from an option group. Also, that option group
         | 
| 1222 1222 | 
             
                #   can't be removed from a DB instance once it is associated with a DB
         | 
| 1223 1223 | 
             
                #   instance
         | 
| 1224 1224 | 
             
                # @option options [String] :character_set_name
         | 
| @@ -1896,7 +1896,7 @@ module Aws::RDS | |
| 1896 1896 | 
             
                #   created before the DB instance is deleted. By default, skip isn't
         | 
| 1897 1897 | 
             
                #   specified, and the DB snapshot is created.
         | 
| 1898 1898 | 
             
                #
         | 
| 1899 | 
            -
                #    | 
| 1899 | 
            +
                #   When a DB instance is in a failure state and has a status of
         | 
| 1900 1900 | 
             
                #   'failed', 'incompatible-restore', or 'incompatible-network', it
         | 
| 1901 1901 | 
             
                #   can only be deleted when skip is specified.
         | 
| 1902 1902 | 
             
                #
         | 
| @@ -308,7 +308,7 @@ module Aws::RDS | |
| 308 308 | 
             
                # @option options [required, Array<Types::Parameter>] :parameters
         | 
| 309 309 | 
             
                #   An array of parameter names, values, and the apply method for the
         | 
| 310 310 | 
             
                #   parameter update. At least one parameter name, value, and apply method
         | 
| 311 | 
            -
                #   must be supplied;  | 
| 311 | 
            +
                #   must be supplied; later arguments are optional. A maximum of 20
         | 
| 312 312 | 
             
                #   parameters can be modified in a single request.
         | 
| 313 313 | 
             
                #
         | 
| 314 314 | 
             
                #   Valid Values (for the application method): `immediate |
         | 
| @@ -305,7 +305,7 @@ module Aws::RDS | |
| 305 305 | 
             
                #   The list of identifiers of the event sources for which events are
         | 
| 306 306 | 
             
                #   returned. If not specified, then all sources are included in the
         | 
| 307 307 | 
             
                #   response. An identifier must begin with a letter and must contain only
         | 
| 308 | 
            -
                #   ASCII letters, digits, and hyphens | 
| 308 | 
            +
                #   ASCII letters, digits, and hyphens. It can't end with a hyphen or
         | 
| 309 309 | 
             
                #   contain two consecutive hyphens.
         | 
| 310 310 | 
             
                #
         | 
| 311 311 | 
             
                #   Constraints:
         | 
    
        data/lib/aws-sdk-rds/resource.rb
    CHANGED
    
    | @@ -91,9 +91,9 @@ module Aws::RDS | |
| 91 91 | 
             
                #   A value that indicates that the DB cluster should be associated with
         | 
| 92 92 | 
             
                #   the specified CharacterSet.
         | 
| 93 93 | 
             
                # @option options [String] :database_name
         | 
| 94 | 
            -
                #   The name for your database of up to 64  | 
| 95 | 
            -
                #    | 
| 96 | 
            -
                #    | 
| 94 | 
            +
                #   The name for your database of up to 64 alphanumeric characters. If you
         | 
| 95 | 
            +
                #   do not provide a name, Amazon RDS doesn't create a database in the DB
         | 
| 96 | 
            +
                #   cluster you are creating.
         | 
| 97 97 | 
             
                # @option options [required, String] :db_cluster_identifier
         | 
| 98 98 | 
             
                #   The DB cluster identifier. This parameter is stored as a lowercase
         | 
| 99 99 | 
             
                #   string.
         | 
| @@ -1082,7 +1082,7 @@ module Aws::RDS | |
| 1082 1082 | 
             
                #   option group.
         | 
| 1083 1083 | 
             
                #
         | 
| 1084 1084 | 
             
                #   Permanent options, such as the TDE option for Oracle Advanced Security
         | 
| 1085 | 
            -
                #   TDE, can't be removed from an option group,  | 
| 1085 | 
            +
                #   TDE, can't be removed from an option group. Also, that option group
         | 
| 1086 1086 | 
             
                #   can't be removed from a DB instance once it is associated with a DB
         | 
| 1087 1087 | 
             
                #   instance
         | 
| 1088 1088 | 
             
                # @option options [String] :character_set_name
         | 
| @@ -1525,7 +1525,7 @@ module Aws::RDS | |
| 1525 1525 | 
             
                #   The list of identifiers of the event sources for which events are
         | 
| 1526 1526 | 
             
                #   returned. If not specified, then all sources are included in the
         | 
| 1527 1527 | 
             
                #   response. An identifier must begin with a letter and must contain only
         | 
| 1528 | 
            -
                #   ASCII letters, digits, and hyphens | 
| 1528 | 
            +
                #   ASCII letters, digits, and hyphens. It can't end with a hyphen or
         | 
| 1529 1529 | 
             
                #   contain two consecutive hyphens.
         | 
| 1530 1530 | 
             
                #
         | 
| 1531 1531 | 
             
                #   Constraints:
         | 
    
        data/lib/aws-sdk-rds/types.rb
    CHANGED
    
    | @@ -540,6 +540,24 @@ module Aws::RDS | |
| 540 540 | 
             
                  include Aws::Structure
         | 
| 541 541 | 
             
                end
         | 
| 542 542 |  | 
| 543 | 
            +
                # @note When making an API call, you may pass CancelExportTaskMessage
         | 
| 544 | 
            +
                #   data as a hash:
         | 
| 545 | 
            +
                #
         | 
| 546 | 
            +
                #       {
         | 
| 547 | 
            +
                #         export_task_identifier: "String", # required
         | 
| 548 | 
            +
                #       }
         | 
| 549 | 
            +
                #
         | 
| 550 | 
            +
                # @!attribute [rw] export_task_identifier
         | 
| 551 | 
            +
                #   The identifier of the snapshot export task to cancel.
         | 
| 552 | 
            +
                #   @return [String]
         | 
| 553 | 
            +
                #
         | 
| 554 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CancelExportTaskMessage AWS API Documentation
         | 
| 555 | 
            +
                #
         | 
| 556 | 
            +
                class CancelExportTaskMessage < Struct.new(
         | 
| 557 | 
            +
                  :export_task_identifier)
         | 
| 558 | 
            +
                  include Aws::Structure
         | 
| 559 | 
            +
                end
         | 
| 560 | 
            +
             | 
| 543 561 | 
             
                # A CA certificate for an AWS account.
         | 
| 544 562 | 
             
                #
         | 
| 545 563 | 
             
                # @!attribute [rw] certificate_identifier
         | 
| @@ -967,9 +985,9 @@ module Aws::RDS | |
| 967 985 | 
             
                #   @return [String]
         | 
| 968 986 | 
             
                #
         | 
| 969 987 | 
             
                # @!attribute [rw] kms_key_id
         | 
| 970 | 
            -
                #   The AWS  | 
| 971 | 
            -
                #    | 
| 972 | 
            -
                #    | 
| 988 | 
            +
                #   The AWS KMS key ID for an encrypted DB cluster snapshot. The KMS key
         | 
| 989 | 
            +
                #   ID is the Amazon Resource Name (ARN), KMS key identifier, or the KMS
         | 
| 990 | 
            +
                #   key alias for the KMS encryption key.
         | 
| 973 991 | 
             
                #
         | 
| 974 992 | 
             
                #   If you copy an encrypted DB cluster snapshot from your AWS account,
         | 
| 975 993 | 
             
                #   you can specify a value for `KmsKeyId` to encrypt the copy with a
         | 
| @@ -1012,7 +1030,7 @@ module Aws::RDS | |
| 1012 1030 | 
             
                #     AWS Region, and the action contained in the pre-signed URL.
         | 
| 1013 1031 | 
             
                #
         | 
| 1014 1032 | 
             
                #   * `DestinationRegion` - The name of the AWS Region that the DB
         | 
| 1015 | 
            -
                #     cluster snapshot  | 
| 1033 | 
            +
                #     cluster snapshot is to be created in.
         | 
| 1016 1034 | 
             
                #
         | 
| 1017 1035 | 
             
                #   * `SourceDBClusterSnapshotIdentifier` - The DB cluster snapshot
         | 
| 1018 1036 | 
             
                #     identifier for the encrypted DB cluster snapshot to be copied.
         | 
| @@ -1677,8 +1695,8 @@ module Aws::RDS | |
| 1677 1695 | 
             
                #   @return [String]
         | 
| 1678 1696 | 
             
                #
         | 
| 1679 1697 | 
             
                # @!attribute [rw] database_name
         | 
| 1680 | 
            -
                #   The name for your database of up to 64  | 
| 1681 | 
            -
                #   you do not provide a name, Amazon RDS  | 
| 1698 | 
            +
                #   The name for your database of up to 64 alphanumeric characters. If
         | 
| 1699 | 
            +
                #   you do not provide a name, Amazon RDS doesn't create a database in
         | 
| 1682 1700 | 
             
                #   the DB cluster you are creating.
         | 
| 1683 1701 | 
             
                #   @return [String]
         | 
| 1684 1702 | 
             
                #
         | 
| @@ -2907,7 +2925,7 @@ module Aws::RDS | |
| 2907 2925 | 
             
                #   specified option group.
         | 
| 2908 2926 | 
             
                #
         | 
| 2909 2927 | 
             
                #   Permanent options, such as the TDE option for Oracle Advanced
         | 
| 2910 | 
            -
                #   Security TDE, can't be removed from an option group,  | 
| 2928 | 
            +
                #   Security TDE, can't be removed from an option group. Also, that
         | 
| 2911 2929 | 
             
                #   option group can't be removed from a DB instance once it is
         | 
| 2912 2930 | 
             
                #   associated with a DB instance
         | 
| 2913 2931 | 
             
                #   @return [String]
         | 
| @@ -4226,7 +4244,7 @@ module Aws::RDS | |
| 4226 4244 | 
             
                #   The list of identifiers of the event sources for which events are
         | 
| 4227 4245 | 
             
                #   returned. If not specified, then all sources are included in the
         | 
| 4228 4246 | 
             
                #   response. An identifier must begin with a letter and must contain
         | 
| 4229 | 
            -
                #   only ASCII letters, digits, and hyphens | 
| 4247 | 
            +
                #   only ASCII letters, digits, and hyphens. It can't end with a hyphen
         | 
| 4230 4248 | 
             
                #   or contain two consecutive hyphens.
         | 
| 4231 4249 | 
             
                #
         | 
| 4232 4250 | 
             
                #   Constraints:
         | 
| @@ -4903,7 +4921,7 @@ module Aws::RDS | |
| 4903 4921 | 
             
                # `DescribeDBClusterBacktracks` action.
         | 
| 4904 4922 | 
             
                #
         | 
| 4905 4923 | 
             
                # @!attribute [rw] marker
         | 
| 4906 | 
            -
                #   A pagination token that can be used in a  | 
| 4924 | 
            +
                #   A pagination token that can be used in a later
         | 
| 4907 4925 | 
             
                #   `DescribeDBClusterBacktracks` request.
         | 
| 4908 4926 | 
             
                #   @return [String]
         | 
| 4909 4927 | 
             
                #
         | 
| @@ -5095,8 +5113,8 @@ module Aws::RDS | |
| 5095 5113 | 
             
                # `DescribeDBClusters` action.
         | 
| 5096 5114 | 
             
                #
         | 
| 5097 5115 | 
             
                # @!attribute [rw] marker
         | 
| 5098 | 
            -
                #   A pagination token that can be used in a  | 
| 5099 | 
            -
                #    | 
| 5116 | 
            +
                #   A pagination token that can be used in a later DescribeDBClusters
         | 
| 5117 | 
            +
                #   request.
         | 
| 5100 5118 | 
             
                #   @return [String]
         | 
| 5101 5119 | 
             
                #
         | 
| 5102 5120 | 
             
                # @!attribute [rw] db_clusters
         | 
| @@ -7271,10 +7289,9 @@ module Aws::RDS | |
| 7271 7289 | 
             
                #   created before the DB instance is deleted. By default, skip isn't
         | 
| 7272 7290 | 
             
                #   specified, and the DB snapshot is created.
         | 
| 7273 7291 | 
             
                #
         | 
| 7274 | 
            -
                #    | 
| 7275 | 
            -
                #    | 
| 7276 | 
            -
                #    | 
| 7277 | 
            -
                #   specified.
         | 
| 7292 | 
            +
                #   When a DB instance is in a failure state and has a status of
         | 
| 7293 | 
            +
                #   'failed', 'incompatible-restore', or 'incompatible-network',
         | 
| 7294 | 
            +
                #   it can only be deleted when skip is specified.
         | 
| 7278 7295 | 
             
                #
         | 
| 7279 7296 | 
             
                #   Specify skip when deleting a Read Replica.
         | 
| 7280 7297 | 
             
                #
         | 
| @@ -8675,8 +8692,8 @@ module Aws::RDS | |
| 8675 8692 | 
             
                #   @return [Array<Types::DescribeDBLogFilesDetails>]
         | 
| 8676 8693 | 
             
                #
         | 
| 8677 8694 | 
             
                # @!attribute [rw] marker
         | 
| 8678 | 
            -
                #   A pagination token that can be used in a  | 
| 8679 | 
            -
                #    | 
| 8695 | 
            +
                #   A pagination token that can be used in a later DescribeDBLogFiles
         | 
| 8696 | 
            +
                #   request.
         | 
| 8680 8697 | 
             
                #   @return [String]
         | 
| 8681 8698 | 
             
                #
         | 
| 8682 8699 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBLogFilesResponse AWS API Documentation
         | 
| @@ -9659,6 +9676,79 @@ module Aws::RDS | |
| 9659 9676 | 
             
                  include Aws::Structure
         | 
| 9660 9677 | 
             
                end
         | 
| 9661 9678 |  | 
| 9679 | 
            +
                # @note When making an API call, you may pass DescribeExportTasksMessage
         | 
| 9680 | 
            +
                #   data as a hash:
         | 
| 9681 | 
            +
                #
         | 
| 9682 | 
            +
                #       {
         | 
| 9683 | 
            +
                #         export_task_identifier: "String",
         | 
| 9684 | 
            +
                #         source_arn: "String",
         | 
| 9685 | 
            +
                #         filters: [
         | 
| 9686 | 
            +
                #           {
         | 
| 9687 | 
            +
                #             name: "String", # required
         | 
| 9688 | 
            +
                #             values: ["String"], # required
         | 
| 9689 | 
            +
                #           },
         | 
| 9690 | 
            +
                #         ],
         | 
| 9691 | 
            +
                #         marker: "String",
         | 
| 9692 | 
            +
                #         max_records: "String",
         | 
| 9693 | 
            +
                #       }
         | 
| 9694 | 
            +
                #
         | 
| 9695 | 
            +
                # @!attribute [rw] export_task_identifier
         | 
| 9696 | 
            +
                #   The identifier of the snapshot export task to be described.
         | 
| 9697 | 
            +
                #   @return [String]
         | 
| 9698 | 
            +
                #
         | 
| 9699 | 
            +
                # @!attribute [rw] source_arn
         | 
| 9700 | 
            +
                #   The Amazon Resource Name (ARN) of the snapshot exported to Amazon
         | 
| 9701 | 
            +
                #   S3.
         | 
| 9702 | 
            +
                #   @return [String]
         | 
| 9703 | 
            +
                #
         | 
| 9704 | 
            +
                # @!attribute [rw] filters
         | 
| 9705 | 
            +
                #   Filters specify one or more snapshot exports to describe. The
         | 
| 9706 | 
            +
                #   filters are specified as name-value pairs that define what to
         | 
| 9707 | 
            +
                #   include in the output.
         | 
| 9708 | 
            +
                #
         | 
| 9709 | 
            +
                #   Supported filters include the following:
         | 
| 9710 | 
            +
                #
         | 
| 9711 | 
            +
                #   * `export-task-identifier` - An identifier for the snapshot export
         | 
| 9712 | 
            +
                #     task.
         | 
| 9713 | 
            +
                #
         | 
| 9714 | 
            +
                #   * `s3-bucket` - The Amazon S3 bucket the snapshot is exported to.
         | 
| 9715 | 
            +
                #
         | 
| 9716 | 
            +
                #   * `source-arn` - The Amazon Resource Name (ARN) of the snapshot
         | 
| 9717 | 
            +
                #     exported to Amazon S3
         | 
| 9718 | 
            +
                #
         | 
| 9719 | 
            +
                #   * `status` - The status of the export task.
         | 
| 9720 | 
            +
                #   @return [Array<Types::Filter>]
         | 
| 9721 | 
            +
                #
         | 
| 9722 | 
            +
                # @!attribute [rw] marker
         | 
| 9723 | 
            +
                #   An optional pagination token provided by a previous
         | 
| 9724 | 
            +
                #   `DescribeExportTasks` request. If you specify this parameter, the
         | 
| 9725 | 
            +
                #   response includes only records beyond the marker, up to the value
         | 
| 9726 | 
            +
                #   specified by the `MaxRecords` parameter.
         | 
| 9727 | 
            +
                #   @return [String]
         | 
| 9728 | 
            +
                #
         | 
| 9729 | 
            +
                # @!attribute [rw] max_records
         | 
| 9730 | 
            +
                #   The maximum number of records to include in the response. If more
         | 
| 9731 | 
            +
                #   records exist than the specified value, a pagination token called a
         | 
| 9732 | 
            +
                #   marker is included in the response. You can use the marker in a
         | 
| 9733 | 
            +
                #   later `DescribeExportTasks` request to retrieve the remaining
         | 
| 9734 | 
            +
                #   results.
         | 
| 9735 | 
            +
                #
         | 
| 9736 | 
            +
                #   Default: 100
         | 
| 9737 | 
            +
                #
         | 
| 9738 | 
            +
                #   Constraints: Minimum 20, maximum 100.
         | 
| 9739 | 
            +
                #   @return [String]
         | 
| 9740 | 
            +
                #
         | 
| 9741 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeExportTasksMessage AWS API Documentation
         | 
| 9742 | 
            +
                #
         | 
| 9743 | 
            +
                class DescribeExportTasksMessage < Struct.new(
         | 
| 9744 | 
            +
                  :export_task_identifier,
         | 
| 9745 | 
            +
                  :source_arn,
         | 
| 9746 | 
            +
                  :filters,
         | 
| 9747 | 
            +
                  :marker,
         | 
| 9748 | 
            +
                  :max_records)
         | 
| 9749 | 
            +
                  include Aws::Structure
         | 
| 9750 | 
            +
                end
         | 
| 9751 | 
            +
             | 
| 9662 9752 | 
             
                # @note When making an API call, you may pass DescribeGlobalClustersMessage
         | 
| 9663 9753 | 
             
                #   data as a hash:
         | 
| 9664 9754 | 
             
                #
         | 
| @@ -10408,7 +10498,7 @@ module Aws::RDS | |
| 10408 10498 | 
             
                #   @return [String]
         | 
| 10409 10499 | 
             
                #
         | 
| 10410 10500 | 
             
                # @!attribute [rw] marker
         | 
| 10411 | 
            -
                #   A pagination token that can be used in a  | 
| 10501 | 
            +
                #   A pagination token that can be used in a later
         | 
| 10412 10502 | 
             
                #   DownloadDBLogFilePortion request.
         | 
| 10413 10503 | 
             
                #   @return [String]
         | 
| 10414 10504 | 
             
                #
         | 
| @@ -10778,6 +10868,131 @@ module Aws::RDS | |
| 10778 10868 | 
             
                  include Aws::Structure
         | 
| 10779 10869 | 
             
                end
         | 
| 10780 10870 |  | 
| 10871 | 
            +
                # Contains the details of a snapshot export to Amazon S3.
         | 
| 10872 | 
            +
                #
         | 
| 10873 | 
            +
                # This data type is used as a response element in the
         | 
| 10874 | 
            +
                # `DescribeExportTasks` action.
         | 
| 10875 | 
            +
                #
         | 
| 10876 | 
            +
                # @!attribute [rw] export_task_identifier
         | 
| 10877 | 
            +
                #   A unique identifier for the snapshot export task. This ID isn't an
         | 
| 10878 | 
            +
                #   identifier for the Amazon S3 bucket where the snapshot is exported
         | 
| 10879 | 
            +
                #   to.
         | 
| 10880 | 
            +
                #   @return [String]
         | 
| 10881 | 
            +
                #
         | 
| 10882 | 
            +
                # @!attribute [rw] source_arn
         | 
| 10883 | 
            +
                #   The Amazon Resource Name (ARN) of the snapshot exported to Amazon
         | 
| 10884 | 
            +
                #   S3.
         | 
| 10885 | 
            +
                #   @return [String]
         | 
| 10886 | 
            +
                #
         | 
| 10887 | 
            +
                # @!attribute [rw] export_only
         | 
| 10888 | 
            +
                #   The data exported from the snapshot. Valid values are the following:
         | 
| 10889 | 
            +
                #
         | 
| 10890 | 
            +
                #   * `database` - Export all the data of the snapshot.
         | 
| 10891 | 
            +
                #
         | 
| 10892 | 
            +
                #   * `database.table [table-name]` - Export a table of the snapshot.
         | 
| 10893 | 
            +
                #
         | 
| 10894 | 
            +
                #   * `database.schema [schema-name]` - Export a database schema of the
         | 
| 10895 | 
            +
                #     snapshot. This value isn't valid for RDS for MySQL, RDS for
         | 
| 10896 | 
            +
                #     MariaDB, or Aurora MySQL.
         | 
| 10897 | 
            +
                #
         | 
| 10898 | 
            +
                #   * `database.schema.table [table-name]` - Export a table of the
         | 
| 10899 | 
            +
                #     database schema. This value isn't valid for RDS for MySQL, RDS
         | 
| 10900 | 
            +
                #     for MariaDB, or Aurora MySQL.
         | 
| 10901 | 
            +
                #   @return [Array<String>]
         | 
| 10902 | 
            +
                #
         | 
| 10903 | 
            +
                # @!attribute [rw] snapshot_time
         | 
| 10904 | 
            +
                #   The time that the snapshot was created.
         | 
| 10905 | 
            +
                #   @return [Time]
         | 
| 10906 | 
            +
                #
         | 
| 10907 | 
            +
                # @!attribute [rw] task_start_time
         | 
| 10908 | 
            +
                #   The time that the snapshot export task started.
         | 
| 10909 | 
            +
                #   @return [Time]
         | 
| 10910 | 
            +
                #
         | 
| 10911 | 
            +
                # @!attribute [rw] task_end_time
         | 
| 10912 | 
            +
                #   The time that the snapshot export task completed.
         | 
| 10913 | 
            +
                #   @return [Time]
         | 
| 10914 | 
            +
                #
         | 
| 10915 | 
            +
                # @!attribute [rw] s3_bucket
         | 
| 10916 | 
            +
                #   The Amazon S3 bucket that the snapshot is exported to.
         | 
| 10917 | 
            +
                #   @return [String]
         | 
| 10918 | 
            +
                #
         | 
| 10919 | 
            +
                # @!attribute [rw] s3_prefix
         | 
| 10920 | 
            +
                #   The Amazon S3 bucket prefix that is the file name and path of the
         | 
| 10921 | 
            +
                #   exported snapshot.
         | 
| 10922 | 
            +
                #   @return [String]
         | 
| 10923 | 
            +
                #
         | 
| 10924 | 
            +
                # @!attribute [rw] iam_role_arn
         | 
| 10925 | 
            +
                #   The name of the IAM role that is used to write to Amazon S3 when
         | 
| 10926 | 
            +
                #   exporting a snapshot.
         | 
| 10927 | 
            +
                #   @return [String]
         | 
| 10928 | 
            +
                #
         | 
| 10929 | 
            +
                # @!attribute [rw] kms_key_id
         | 
| 10930 | 
            +
                #   The ID of the AWS KMS key that is used to encrypt the snapshot when
         | 
| 10931 | 
            +
                #   it's exported to Amazon S3. The KMS key ID is the Amazon Resource
         | 
| 10932 | 
            +
                #   Name (ARN), the KMS key identifier, or the KMS key alias for the KMS
         | 
| 10933 | 
            +
                #   encryption key. The IAM role used for the snapshot export must have
         | 
| 10934 | 
            +
                #   encryption and decryption permissions to use this KMS key.
         | 
| 10935 | 
            +
                #   @return [String]
         | 
| 10936 | 
            +
                #
         | 
| 10937 | 
            +
                # @!attribute [rw] status
         | 
| 10938 | 
            +
                #   The progress status of the export task.
         | 
| 10939 | 
            +
                #   @return [String]
         | 
| 10940 | 
            +
                #
         | 
| 10941 | 
            +
                # @!attribute [rw] percent_progress
         | 
| 10942 | 
            +
                #   The progress of the snapshot export task as a percentage.
         | 
| 10943 | 
            +
                #   @return [Integer]
         | 
| 10944 | 
            +
                #
         | 
| 10945 | 
            +
                # @!attribute [rw] total_extracted_data_in_gb
         | 
| 10946 | 
            +
                #   The total amount of data exported, in gigabytes.
         | 
| 10947 | 
            +
                #   @return [Integer]
         | 
| 10948 | 
            +
                #
         | 
| 10949 | 
            +
                # @!attribute [rw] failure_cause
         | 
| 10950 | 
            +
                #   The reason the export failed, if it failed.
         | 
| 10951 | 
            +
                #   @return [String]
         | 
| 10952 | 
            +
                #
         | 
| 10953 | 
            +
                # @!attribute [rw] warning_message
         | 
| 10954 | 
            +
                #   A warning about the snapshot export task.
         | 
| 10955 | 
            +
                #   @return [String]
         | 
| 10956 | 
            +
                #
         | 
| 10957 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ExportTask AWS API Documentation
         | 
| 10958 | 
            +
                #
         | 
| 10959 | 
            +
                class ExportTask < Struct.new(
         | 
| 10960 | 
            +
                  :export_task_identifier,
         | 
| 10961 | 
            +
                  :source_arn,
         | 
| 10962 | 
            +
                  :export_only,
         | 
| 10963 | 
            +
                  :snapshot_time,
         | 
| 10964 | 
            +
                  :task_start_time,
         | 
| 10965 | 
            +
                  :task_end_time,
         | 
| 10966 | 
            +
                  :s3_bucket,
         | 
| 10967 | 
            +
                  :s3_prefix,
         | 
| 10968 | 
            +
                  :iam_role_arn,
         | 
| 10969 | 
            +
                  :kms_key_id,
         | 
| 10970 | 
            +
                  :status,
         | 
| 10971 | 
            +
                  :percent_progress,
         | 
| 10972 | 
            +
                  :total_extracted_data_in_gb,
         | 
| 10973 | 
            +
                  :failure_cause,
         | 
| 10974 | 
            +
                  :warning_message)
         | 
| 10975 | 
            +
                  include Aws::Structure
         | 
| 10976 | 
            +
                end
         | 
| 10977 | 
            +
             | 
| 10978 | 
            +
                # @!attribute [rw] marker
         | 
| 10979 | 
            +
                #   A pagination token that can be used in a later `DescribeExportTasks`
         | 
| 10980 | 
            +
                #   request. A marker is used for pagination to identify the location to
         | 
| 10981 | 
            +
                #   begin output for the next response of `DescribeExportTasks`.
         | 
| 10982 | 
            +
                #   @return [String]
         | 
| 10983 | 
            +
                #
         | 
| 10984 | 
            +
                # @!attribute [rw] export_tasks
         | 
| 10985 | 
            +
                #   Information about an export of a snapshot to Amazon S3.
         | 
| 10986 | 
            +
                #   @return [Array<Types::ExportTask>]
         | 
| 10987 | 
            +
                #
         | 
| 10988 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ExportTasksMessage AWS API Documentation
         | 
| 10989 | 
            +
                #
         | 
| 10990 | 
            +
                class ExportTasksMessage < Struct.new(
         | 
| 10991 | 
            +
                  :marker,
         | 
| 10992 | 
            +
                  :export_tasks)
         | 
| 10993 | 
            +
                  include Aws::Structure
         | 
| 10994 | 
            +
                end
         | 
| 10995 | 
            +
             | 
| 10781 10996 | 
             
                # @note When making an API call, you may pass FailoverDBClusterMessage
         | 
| 10782 10997 | 
             
                #   data as a hash:
         | 
| 10783 10998 | 
             
                #
         | 
| @@ -12639,8 +12854,8 @@ module Aws::RDS | |
| 12639 12854 | 
             
                # @!attribute [rw] parameters
         | 
| 12640 12855 | 
             
                #   An array of parameter names, values, and the apply method for the
         | 
| 12641 12856 | 
             
                #   parameter update. At least one parameter name, value, and apply
         | 
| 12642 | 
            -
                #   method must be supplied;  | 
| 12643 | 
            -
                #    | 
| 12857 | 
            +
                #   method must be supplied; later arguments are optional. A maximum of
         | 
| 12858 | 
            +
                #   20 parameters can be modified in a single request.
         | 
| 12644 12859 | 
             
                #
         | 
| 12645 12860 | 
             
                #   Valid Values (for the application method): `immediate |
         | 
| 12646 12861 | 
             
                #   pending-reboot`
         | 
| @@ -17765,6 +17980,83 @@ module Aws::RDS | |
| 17765 17980 | 
             
                  include Aws::Structure
         | 
| 17766 17981 | 
             
                end
         | 
| 17767 17982 |  | 
| 17983 | 
            +
                # @note When making an API call, you may pass StartExportTaskMessage
         | 
| 17984 | 
            +
                #   data as a hash:
         | 
| 17985 | 
            +
                #
         | 
| 17986 | 
            +
                #       {
         | 
| 17987 | 
            +
                #         export_task_identifier: "String", # required
         | 
| 17988 | 
            +
                #         source_arn: "String", # required
         | 
| 17989 | 
            +
                #         s3_bucket_name: "String", # required
         | 
| 17990 | 
            +
                #         iam_role_arn: "String", # required
         | 
| 17991 | 
            +
                #         kms_key_id: "String", # required
         | 
| 17992 | 
            +
                #         s3_prefix: "String",
         | 
| 17993 | 
            +
                #         export_only: ["String"],
         | 
| 17994 | 
            +
                #       }
         | 
| 17995 | 
            +
                #
         | 
| 17996 | 
            +
                # @!attribute [rw] export_task_identifier
         | 
| 17997 | 
            +
                #   A unique identifier for the snapshot export task. This ID isn't an
         | 
| 17998 | 
            +
                #   identifier for the Amazon S3 bucket where the snapshot is to be
         | 
| 17999 | 
            +
                #   exported to.
         | 
| 18000 | 
            +
                #   @return [String]
         | 
| 18001 | 
            +
                #
         | 
| 18002 | 
            +
                # @!attribute [rw] source_arn
         | 
| 18003 | 
            +
                #   The Amazon Resource Name (ARN) of the snapshot to export to Amazon
         | 
| 18004 | 
            +
                #   S3.
         | 
| 18005 | 
            +
                #   @return [String]
         | 
| 18006 | 
            +
                #
         | 
| 18007 | 
            +
                # @!attribute [rw] s3_bucket_name
         | 
| 18008 | 
            +
                #   The name of the Amazon S3 bucket to export the snapshot to.
         | 
| 18009 | 
            +
                #   @return [String]
         | 
| 18010 | 
            +
                #
         | 
| 18011 | 
            +
                # @!attribute [rw] iam_role_arn
         | 
| 18012 | 
            +
                #   The name of the IAM role to use for writing to the Amazon S3 bucket
         | 
| 18013 | 
            +
                #   when exporting a snapshot.
         | 
| 18014 | 
            +
                #   @return [String]
         | 
| 18015 | 
            +
                #
         | 
| 18016 | 
            +
                # @!attribute [rw] kms_key_id
         | 
| 18017 | 
            +
                #   The ID of the AWS KMS key to use to encrypt the snapshot exported to
         | 
| 18018 | 
            +
                #   Amazon S3. The KMS key ID is the Amazon Resource Name (ARN), the KMS
         | 
| 18019 | 
            +
                #   key identifier, or the KMS key alias for the KMS encryption key. The
         | 
| 18020 | 
            +
                #   IAM role used for the snapshot export must have encryption and
         | 
| 18021 | 
            +
                #   decryption permissions to use this KMS key.
         | 
| 18022 | 
            +
                #   @return [String]
         | 
| 18023 | 
            +
                #
         | 
| 18024 | 
            +
                # @!attribute [rw] s3_prefix
         | 
| 18025 | 
            +
                #   The Amazon S3 bucket prefix to use as the file name and path of the
         | 
| 18026 | 
            +
                #   exported snapshot.
         | 
| 18027 | 
            +
                #   @return [String]
         | 
| 18028 | 
            +
                #
         | 
| 18029 | 
            +
                # @!attribute [rw] export_only
         | 
| 18030 | 
            +
                #   The data to be exported from the snapshot. If this parameter is not
         | 
| 18031 | 
            +
                #   provided, all the snapshot data is exported. Valid values are the
         | 
| 18032 | 
            +
                #   following:
         | 
| 18033 | 
            +
                #
         | 
| 18034 | 
            +
                #   * `database` - Export all the data of the snapshot.
         | 
| 18035 | 
            +
                #
         | 
| 18036 | 
            +
                #   * `database.table [table-name]` - Export a table of the snapshot.
         | 
| 18037 | 
            +
                #
         | 
| 18038 | 
            +
                #   * `database.schema [schema-name]` - Export a database schema of the
         | 
| 18039 | 
            +
                #     snapshot. This value isn't valid for RDS for MySQL, RDS for
         | 
| 18040 | 
            +
                #     MariaDB, or Aurora MySQL.
         | 
| 18041 | 
            +
                #
         | 
| 18042 | 
            +
                #   * `database.schema.table [table-name]` - Export a table of the
         | 
| 18043 | 
            +
                #     database schema. This value isn't valid for RDS for MySQL, RDS
         | 
| 18044 | 
            +
                #     for MariaDB, or Aurora MySQL.
         | 
| 18045 | 
            +
                #   @return [Array<String>]
         | 
| 18046 | 
            +
                #
         | 
| 18047 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartExportTaskMessage AWS API Documentation
         | 
| 18048 | 
            +
                #
         | 
| 18049 | 
            +
                class StartExportTaskMessage < Struct.new(
         | 
| 18050 | 
            +
                  :export_task_identifier,
         | 
| 18051 | 
            +
                  :source_arn,
         | 
| 18052 | 
            +
                  :s3_bucket_name,
         | 
| 18053 | 
            +
                  :iam_role_arn,
         | 
| 18054 | 
            +
                  :kms_key_id,
         | 
| 18055 | 
            +
                  :s3_prefix,
         | 
| 18056 | 
            +
                  :export_only)
         | 
| 18057 | 
            +
                  include Aws::Structure
         | 
| 18058 | 
            +
                end
         | 
| 18059 | 
            +
             | 
| 17768 18060 | 
             
                # @note When making an API call, you may pass StopActivityStreamRequest
         | 
| 17769 18061 | 
             
                #   data as a hash:
         | 
| 17770 18062 | 
             
                #
         | 
    
        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. | 
| 4 | 
            +
              version: 1.76.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: 2020-01- | 
| 11 | 
            +
            date: 2020-01-23 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: aws-sigv4
         |