{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.RDS.RestoreDBInstanceFromS3
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Amazon Relational Database Service (Amazon RDS) supports importing MySQL
-- databases by using backup files. You can create a backup of your
-- on-premises database, store it on Amazon Simple Storage Service (Amazon
-- S3), and then restore the backup file onto a new Amazon RDS DB instance
-- running MySQL. For more information, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.html Importing Data into an Amazon RDS MySQL DB Instance>
-- in the /Amazon RDS User Guide./
module Amazonka.RDS.RestoreDBInstanceFromS3
  ( -- * Creating a Request
    RestoreDBInstanceFromS3 (..),
    newRestoreDBInstanceFromS3,

    -- * Request Lenses
    restoreDBInstanceFromS3_engineVersion,
    restoreDBInstanceFromS3_dbSecurityGroups,
    restoreDBInstanceFromS3_deletionProtection,
    restoreDBInstanceFromS3_storageEncrypted,
    restoreDBInstanceFromS3_masterUserPassword,
    restoreDBInstanceFromS3_publiclyAccessible,
    restoreDBInstanceFromS3_autoMinorVersionUpgrade,
    restoreDBInstanceFromS3_masterUsername,
    restoreDBInstanceFromS3_dbSubnetGroupName,
    restoreDBInstanceFromS3_monitoringRoleArn,
    restoreDBInstanceFromS3_iops,
    restoreDBInstanceFromS3_monitoringInterval,
    restoreDBInstanceFromS3_processorFeatures,
    restoreDBInstanceFromS3_licenseModel,
    restoreDBInstanceFromS3_preferredMaintenanceWindow,
    restoreDBInstanceFromS3_performanceInsightsRetentionPeriod,
    restoreDBInstanceFromS3_maxAllocatedStorage,
    restoreDBInstanceFromS3_enablePerformanceInsights,
    restoreDBInstanceFromS3_kmsKeyId,
    restoreDBInstanceFromS3_dbParameterGroupName,
    restoreDBInstanceFromS3_preferredBackupWindow,
    restoreDBInstanceFromS3_availabilityZone,
    restoreDBInstanceFromS3_backupRetentionPeriod,
    restoreDBInstanceFromS3_performanceInsightsKMSKeyId,
    restoreDBInstanceFromS3_vpcSecurityGroupIds,
    restoreDBInstanceFromS3_multiAZ,
    restoreDBInstanceFromS3_s3Prefix,
    restoreDBInstanceFromS3_allocatedStorage,
    restoreDBInstanceFromS3_optionGroupName,
    restoreDBInstanceFromS3_copyTagsToSnapshot,
    restoreDBInstanceFromS3_tags,
    restoreDBInstanceFromS3_port,
    restoreDBInstanceFromS3_enableIAMDatabaseAuthentication,
    restoreDBInstanceFromS3_useDefaultProcessorFeatures,
    restoreDBInstanceFromS3_storageType,
    restoreDBInstanceFromS3_enableCloudwatchLogsExports,
    restoreDBInstanceFromS3_dbName,
    restoreDBInstanceFromS3_dbInstanceIdentifier,
    restoreDBInstanceFromS3_dbInstanceClass,
    restoreDBInstanceFromS3_engine,
    restoreDBInstanceFromS3_sourceEngine,
    restoreDBInstanceFromS3_sourceEngineVersion,
    restoreDBInstanceFromS3_s3BucketName,
    restoreDBInstanceFromS3_s3IngestionRoleArn,

    -- * Destructuring the Response
    RestoreDBInstanceFromS3Response (..),
    newRestoreDBInstanceFromS3Response,

    -- * Response Lenses
    restoreDBInstanceFromS3Response_dbInstance,
    restoreDBInstanceFromS3Response_httpStatus,
  )
where

import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import Amazonka.RDS.Types
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response

-- | /See:/ 'newRestoreDBInstanceFromS3' smart constructor.
data RestoreDBInstanceFromS3 = RestoreDBInstanceFromS3'
  { -- | The version number of the database engine to use. Choose the latest
    -- minor version of your database engine. For information about engine
    -- versions, see @CreateDBInstance@, or call @DescribeDBEngineVersions@.
    RestoreDBInstanceFromS3 -> Maybe Text
engineVersion :: Prelude.Maybe Prelude.Text,
    -- | A list of DB security groups to associate with this DB instance.
    --
    -- Default: The default DB security group for the database engine.
    RestoreDBInstanceFromS3 -> Maybe [Text]
dbSecurityGroups :: Prelude.Maybe [Prelude.Text],
    -- | A value that indicates whether the DB instance has deletion protection
    -- enabled. The database can\'t be deleted when deletion protection is
    -- enabled. By default, deletion protection is disabled. For more
    -- information, see
    -- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html Deleting a DB Instance>.
    RestoreDBInstanceFromS3 -> Maybe Bool
deletionProtection :: Prelude.Maybe Prelude.Bool,
    -- | A value that indicates whether the new DB instance is encrypted or not.
    RestoreDBInstanceFromS3 -> Maybe Bool
storageEncrypted :: Prelude.Maybe Prelude.Bool,
    -- | The password for the master user. The password can include any printable
    -- ASCII character except \"\/\", \"\"\", or \"\@\".
    --
    -- Constraints: Must contain from 8 to 41 characters.
    RestoreDBInstanceFromS3 -> Maybe Text
masterUserPassword :: Prelude.Maybe Prelude.Text,
    -- | A value that indicates whether the DB instance is publicly accessible.
    --
    -- When the DB instance is publicly accessible, its DNS endpoint resolves
    -- to the private IP address from within the DB instance\'s VPC, and to the
    -- public IP address from outside of the DB instance\'s VPC. Access to the
    -- DB instance is ultimately controlled by the security group it uses, and
    -- that public access is not permitted if the security group assigned to
    -- the DB instance doesn\'t permit it.
    --
    -- When the DB instance isn\'t publicly accessible, it is an internal DB
    -- instance with a DNS name that resolves to a private IP address.
    --
    -- For more information, see CreateDBInstance.
    RestoreDBInstanceFromS3 -> Maybe Bool
publiclyAccessible :: Prelude.Maybe Prelude.Bool,
    -- | A value that indicates whether minor engine upgrades are applied
    -- automatically to the DB instance during the maintenance window. By
    -- default, minor engine upgrades are not applied automatically.
    RestoreDBInstanceFromS3 -> Maybe Bool
autoMinorVersionUpgrade :: Prelude.Maybe Prelude.Bool,
    -- | The name for the master user.
    --
    -- Constraints:
    --
    -- -   Must be 1 to 16 letters or numbers.
    --
    -- -   First character must be a letter.
    --
    -- -   Can\'t be a reserved word for the chosen database engine.
    RestoreDBInstanceFromS3 -> Maybe Text
masterUsername :: Prelude.Maybe Prelude.Text,
    -- | A DB subnet group to associate with this DB instance.
    RestoreDBInstanceFromS3 -> Maybe Text
dbSubnetGroupName :: Prelude.Maybe Prelude.Text,
    -- | The ARN for the IAM role that permits RDS to send enhanced monitoring
    -- metrics to Amazon CloudWatch Logs. For example,
    -- @arn:aws:iam:123456789012:role\/emaccess@. For information on creating a
    -- monitoring role, see
    -- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling Setting Up and Enabling Enhanced Monitoring>
    -- in the /Amazon RDS User Guide./
    --
    -- If @MonitoringInterval@ is set to a value other than 0, then you must
    -- supply a @MonitoringRoleArn@ value.
    RestoreDBInstanceFromS3 -> Maybe Text
monitoringRoleArn :: Prelude.Maybe Prelude.Text,
    -- | The amount of Provisioned IOPS (input\/output operations per second) to
    -- allocate initially for the DB instance. For information about valid Iops
    -- values, see
    -- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS Amazon RDS Provisioned IOPS Storage to Improve Performance>
    -- in the /Amazon RDS User Guide./
    RestoreDBInstanceFromS3 -> Maybe Int
iops :: Prelude.Maybe Prelude.Int,
    -- | The interval, in seconds, between points when Enhanced Monitoring
    -- metrics are collected for the DB instance. To disable collecting
    -- Enhanced Monitoring metrics, specify 0.
    --
    -- If @MonitoringRoleArn@ is specified, then you must also set
    -- @MonitoringInterval@ to a value other than 0.
    --
    -- Valid Values: 0, 1, 5, 10, 15, 30, 60
    --
    -- Default: @0@
    RestoreDBInstanceFromS3 -> Maybe Int
monitoringInterval :: Prelude.Maybe Prelude.Int,
    -- | The number of CPU cores and the number of threads per core for the DB
    -- instance class of the DB instance.
    RestoreDBInstanceFromS3 -> Maybe [ProcessorFeature]
processorFeatures :: Prelude.Maybe [ProcessorFeature],
    -- | The license model for this DB instance. Use @general-public-license@.
    RestoreDBInstanceFromS3 -> Maybe Text
licenseModel :: Prelude.Maybe Prelude.Text,
    -- | The time range each week during which system maintenance can occur, in
    -- Universal Coordinated Time (UTC). For more information, see
    -- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance Amazon RDS Maintenance Window>
    -- in the /Amazon RDS User Guide./
    --
    -- Constraints:
    --
    -- -   Must be in the format @ddd:hh24:mi-ddd:hh24:mi@.
    --
    -- -   Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
    --
    -- -   Must be in Universal Coordinated Time (UTC).
    --
    -- -   Must not conflict with the preferred backup window.
    --
    -- -   Must be at least 30 minutes.
    RestoreDBInstanceFromS3 -> Maybe Text
preferredMaintenanceWindow :: Prelude.Maybe Prelude.Text,
    -- | The amount of time, in days, to retain Performance Insights data. Valid
    -- values are 7 or 731 (2 years).
    RestoreDBInstanceFromS3 -> Maybe Int
performanceInsightsRetentionPeriod :: Prelude.Maybe Prelude.Int,
    -- | The upper limit in gibibytes (GiB) to which Amazon RDS can automatically
    -- scale the storage of the DB instance.
    --
    -- For more information about this setting, including limitations that
    -- apply to it, see
    -- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling Managing capacity automatically with Amazon RDS storage autoscaling>
    -- in the /Amazon RDS User Guide/.
    RestoreDBInstanceFromS3 -> Maybe Int
maxAllocatedStorage :: Prelude.Maybe Prelude.Int,
    -- | A value that indicates whether to enable Performance Insights for the DB
    -- instance.
    --
    -- For more information, see
    -- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html Using Amazon Performance Insights>
    -- in the /Amazon Relational Database Service User Guide/.
    RestoreDBInstanceFromS3 -> Maybe Bool
enablePerformanceInsights :: Prelude.Maybe Prelude.Bool,
    -- | The Amazon Web Services KMS key identifier for an encrypted DB instance.
    --
    -- The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    -- ARN, or alias name for the Amazon Web Services KMS customer master key
    -- (CMK). To use a CMK in a different Amazon Web Services account, specify
    -- the key ARN or alias ARN.
    --
    -- If the @StorageEncrypted@ parameter is enabled, and you do not specify a
    -- value for the @KmsKeyId@ parameter, then Amazon RDS will use your
    -- default CMK. There is a default CMK for your Amazon Web Services
    -- account. Your Amazon Web Services account has a different default CMK
    -- for each Amazon Web Services Region.
    RestoreDBInstanceFromS3 -> Maybe Text
kmsKeyId :: Prelude.Maybe Prelude.Text,
    -- | The name of the DB parameter group to associate with this DB instance.
    --
    -- If you do not specify a value for @DBParameterGroupName@, then the
    -- default @DBParameterGroup@ for the specified DB engine is used.
    RestoreDBInstanceFromS3 -> Maybe Text
dbParameterGroupName :: Prelude.Maybe Prelude.Text,
    -- | The time range each day during which automated backups are created if
    -- automated backups are enabled. For more information, see
    -- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow Backup window>
    -- in the /Amazon RDS User Guide./
    --
    -- Constraints:
    --
    -- -   Must be in the format @hh24:mi-hh24:mi@.
    --
    -- -   Must be in Universal Coordinated Time (UTC).
    --
    -- -   Must not conflict with the preferred maintenance window.
    --
    -- -   Must be at least 30 minutes.
    RestoreDBInstanceFromS3 -> Maybe Text
preferredBackupWindow :: Prelude.Maybe Prelude.Text,
    -- | The Availability Zone that the DB instance is created in. For
    -- information about Amazon Web Services Regions and Availability Zones,
    -- see
    -- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html Regions and Availability Zones>
    -- in the /Amazon RDS User Guide./
    --
    -- Default: A random, system-chosen Availability Zone in the endpoint\'s
    -- Amazon Web Services Region.
    --
    -- Example: @us-east-1d@
    --
    -- Constraint: The @AvailabilityZone@ parameter can\'t be specified if the
    -- DB instance is a Multi-AZ deployment. The specified Availability Zone
    -- must be in the same Amazon Web Services Region as the current endpoint.
    RestoreDBInstanceFromS3 -> Maybe Text
availabilityZone :: Prelude.Maybe Prelude.Text,
    -- | The number of days for which automated backups are retained. Setting
    -- this parameter to a positive number enables backups. For more
    -- information, see @CreateDBInstance@.
    RestoreDBInstanceFromS3 -> Maybe Int
backupRetentionPeriod :: Prelude.Maybe Prelude.Int,
    -- | The Amazon Web Services KMS key identifier for encryption of Performance
    -- Insights data.
    --
    -- The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
    -- ARN, or alias name for the Amazon Web Services KMS customer master key
    -- (CMK).
    --
    -- If you do not specify a value for @PerformanceInsightsKMSKeyId@, then
    -- Amazon RDS uses your default CMK. There is a default CMK for your Amazon
    -- Web Services account. Your Amazon Web Services account has a different
    -- default CMK for each Amazon Web Services Region.
    RestoreDBInstanceFromS3 -> Maybe Text
performanceInsightsKMSKeyId :: Prelude.Maybe Prelude.Text,
    -- | A list of VPC security groups to associate with this DB instance.
    RestoreDBInstanceFromS3 -> Maybe [Text]
vpcSecurityGroupIds :: Prelude.Maybe [Prelude.Text],
    -- | A value that indicates whether the DB instance is a Multi-AZ deployment.
    -- If the DB instance is a Multi-AZ deployment, you can\'t set the
    -- @AvailabilityZone@ parameter.
    RestoreDBInstanceFromS3 -> Maybe Bool
multiAZ :: Prelude.Maybe Prelude.Bool,
    -- | The prefix of your Amazon S3 bucket.
    RestoreDBInstanceFromS3 -> Maybe Text
s3Prefix :: Prelude.Maybe Prelude.Text,
    -- | The amount of storage (in gigabytes) to allocate initially for the DB
    -- instance. Follow the allocation rules specified in @CreateDBInstance@.
    --
    -- Be sure to allocate enough memory for your new DB instance so that the
    -- restore operation can succeed. You can also allocate additional memory
    -- for future growth.
    RestoreDBInstanceFromS3 -> Maybe Int
allocatedStorage :: Prelude.Maybe Prelude.Int,
    -- | The name of the option group to associate with this DB instance. If this
    -- argument is omitted, the default option group for the specified engine
    -- is used.
    RestoreDBInstanceFromS3 -> Maybe Text
optionGroupName :: Prelude.Maybe Prelude.Text,
    -- | A value that indicates whether to copy all tags from the DB instance to
    -- snapshots of the DB instance. By default, tags are not copied.
    RestoreDBInstanceFromS3 -> Maybe Bool
copyTagsToSnapshot :: Prelude.Maybe Prelude.Bool,
    -- | A list of tags to associate with this DB instance. For more information,
    -- see
    -- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html Tagging Amazon RDS Resources>
    -- in the /Amazon RDS User Guide./
    RestoreDBInstanceFromS3 -> Maybe [Tag]
tags :: Prelude.Maybe [Tag],
    -- | The port number on which the database accepts connections.
    --
    -- Type: Integer
    --
    -- Valid Values: @1150@-@65535@
    --
    -- Default: @3306@
    RestoreDBInstanceFromS3 -> Maybe Int
port :: Prelude.Maybe Prelude.Int,
    -- | A value that indicates whether to enable mapping of Amazon Web Services
    -- Identity and Access Management (IAM) accounts to database accounts. By
    -- default, mapping is disabled.
    --
    -- For more information about IAM database authentication, see
    -- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html IAM Database Authentication for MySQL and PostgreSQL>
    -- in the /Amazon RDS User Guide./
    RestoreDBInstanceFromS3 -> Maybe Bool
enableIAMDatabaseAuthentication :: Prelude.Maybe Prelude.Bool,
    -- | A value that indicates whether the DB instance class of the DB instance
    -- uses its default processor features.
    RestoreDBInstanceFromS3 -> Maybe Bool
useDefaultProcessorFeatures :: Prelude.Maybe Prelude.Bool,
    -- | Specifies the storage type to be associated with the DB instance.
    --
    -- Valid values: @standard@ | @gp2@ | @io1@
    --
    -- If you specify @io1@, you must also include a value for the @Iops@
    -- parameter.
    --
    -- Default: @io1@ if the @Iops@ parameter is specified; otherwise @gp2@
    RestoreDBInstanceFromS3 -> Maybe Text
storageType :: Prelude.Maybe Prelude.Text,
    -- | The list of logs that the restored DB instance is to export to
    -- CloudWatch Logs. The values in the list depend on the DB engine being
    -- used. For more information, see
    -- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch Publishing Database Logs to Amazon CloudWatch Logs>
    -- in the /Amazon RDS User Guide/.
    RestoreDBInstanceFromS3 -> Maybe [Text]
enableCloudwatchLogsExports :: Prelude.Maybe [Prelude.Text],
    -- | The name of the database to create when the DB instance is created.
    -- Follow the naming rules specified in @CreateDBInstance@.
    RestoreDBInstanceFromS3 -> Maybe Text
dbName :: Prelude.Maybe Prelude.Text,
    -- | The DB instance identifier. This parameter is stored as a lowercase
    -- string.
    --
    -- Constraints:
    --
    -- -   Must contain from 1 to 63 letters, numbers, or hyphens.
    --
    -- -   First character must be a letter.
    --
    -- -   Can\'t end with a hyphen or contain two consecutive hyphens.
    --
    -- Example: @mydbinstance@
    RestoreDBInstanceFromS3 -> Text
dbInstanceIdentifier :: Prelude.Text,
    -- | The compute and memory capacity of the DB instance, for example,
    -- @db.m4.large@. Not all DB instance classes are available in all Amazon
    -- Web Services Regions, or for all database engines. For the full list of
    -- DB instance classes, and availability for your engine, see
    -- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html DB Instance Class>
    -- in the /Amazon RDS User Guide./
    --
    -- Importing from Amazon S3 isn\'t supported on the db.t2.micro DB instance
    -- class.
    RestoreDBInstanceFromS3 -> Text
dbInstanceClass :: Prelude.Text,
    -- | The name of the database engine to be used for this instance.
    --
    -- Valid Values: @mysql@
    RestoreDBInstanceFromS3 -> Text
engine :: Prelude.Text,
    -- | The name of the engine of your source database.
    --
    -- Valid Values: @mysql@
    RestoreDBInstanceFromS3 -> Text
sourceEngine :: Prelude.Text,
    -- | The version of the database that the backup files were created from.
    --
    -- MySQL versions 5.6 and 5.7 are supported.
    --
    -- Example: @5.6.40@
    RestoreDBInstanceFromS3 -> Text
sourceEngineVersion :: Prelude.Text,
    -- | The name of your Amazon S3 bucket that contains your database backup
    -- file.
    RestoreDBInstanceFromS3 -> Text
s3BucketName :: Prelude.Text,
    -- | An Amazon Web Services Identity and Access Management (IAM) role to
    -- allow Amazon RDS to access your Amazon S3 bucket.
    RestoreDBInstanceFromS3 -> Text
s3IngestionRoleArn :: Prelude.Text
  }
  deriving (RestoreDBInstanceFromS3 -> RestoreDBInstanceFromS3 -> Bool
(RestoreDBInstanceFromS3 -> RestoreDBInstanceFromS3 -> Bool)
-> (RestoreDBInstanceFromS3 -> RestoreDBInstanceFromS3 -> Bool)
-> Eq RestoreDBInstanceFromS3
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: RestoreDBInstanceFromS3 -> RestoreDBInstanceFromS3 -> Bool
$c/= :: RestoreDBInstanceFromS3 -> RestoreDBInstanceFromS3 -> Bool
== :: RestoreDBInstanceFromS3 -> RestoreDBInstanceFromS3 -> Bool
$c== :: RestoreDBInstanceFromS3 -> RestoreDBInstanceFromS3 -> Bool
Prelude.Eq, ReadPrec [RestoreDBInstanceFromS3]
ReadPrec RestoreDBInstanceFromS3
Int -> ReadS RestoreDBInstanceFromS3
ReadS [RestoreDBInstanceFromS3]
(Int -> ReadS RestoreDBInstanceFromS3)
-> ReadS [RestoreDBInstanceFromS3]
-> ReadPrec RestoreDBInstanceFromS3
-> ReadPrec [RestoreDBInstanceFromS3]
-> Read RestoreDBInstanceFromS3
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [RestoreDBInstanceFromS3]
$creadListPrec :: ReadPrec [RestoreDBInstanceFromS3]
readPrec :: ReadPrec RestoreDBInstanceFromS3
$creadPrec :: ReadPrec RestoreDBInstanceFromS3
readList :: ReadS [RestoreDBInstanceFromS3]
$creadList :: ReadS [RestoreDBInstanceFromS3]
readsPrec :: Int -> ReadS RestoreDBInstanceFromS3
$creadsPrec :: Int -> ReadS RestoreDBInstanceFromS3
Prelude.Read, Int -> RestoreDBInstanceFromS3 -> ShowS
[RestoreDBInstanceFromS3] -> ShowS
RestoreDBInstanceFromS3 -> String
(Int -> RestoreDBInstanceFromS3 -> ShowS)
-> (RestoreDBInstanceFromS3 -> String)
-> ([RestoreDBInstanceFromS3] -> ShowS)
-> Show RestoreDBInstanceFromS3
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [RestoreDBInstanceFromS3] -> ShowS
$cshowList :: [RestoreDBInstanceFromS3] -> ShowS
show :: RestoreDBInstanceFromS3 -> String
$cshow :: RestoreDBInstanceFromS3 -> String
showsPrec :: Int -> RestoreDBInstanceFromS3 -> ShowS
$cshowsPrec :: Int -> RestoreDBInstanceFromS3 -> ShowS
Prelude.Show, (forall x.
 RestoreDBInstanceFromS3 -> Rep RestoreDBInstanceFromS3 x)
-> (forall x.
    Rep RestoreDBInstanceFromS3 x -> RestoreDBInstanceFromS3)
-> Generic RestoreDBInstanceFromS3
forall x. Rep RestoreDBInstanceFromS3 x -> RestoreDBInstanceFromS3
forall x. RestoreDBInstanceFromS3 -> Rep RestoreDBInstanceFromS3 x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep RestoreDBInstanceFromS3 x -> RestoreDBInstanceFromS3
$cfrom :: forall x. RestoreDBInstanceFromS3 -> Rep RestoreDBInstanceFromS3 x
Prelude.Generic)

-- |
-- Create a value of 'RestoreDBInstanceFromS3' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'engineVersion', 'restoreDBInstanceFromS3_engineVersion' - The version number of the database engine to use. Choose the latest
-- minor version of your database engine. For information about engine
-- versions, see @CreateDBInstance@, or call @DescribeDBEngineVersions@.
--
-- 'dbSecurityGroups', 'restoreDBInstanceFromS3_dbSecurityGroups' - A list of DB security groups to associate with this DB instance.
--
-- Default: The default DB security group for the database engine.
--
-- 'deletionProtection', 'restoreDBInstanceFromS3_deletionProtection' - A value that indicates whether the DB instance has deletion protection
-- enabled. The database can\'t be deleted when deletion protection is
-- enabled. By default, deletion protection is disabled. For more
-- information, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html Deleting a DB Instance>.
--
-- 'storageEncrypted', 'restoreDBInstanceFromS3_storageEncrypted' - A value that indicates whether the new DB instance is encrypted or not.
--
-- 'masterUserPassword', 'restoreDBInstanceFromS3_masterUserPassword' - The password for the master user. The password can include any printable
-- ASCII character except \"\/\", \"\"\", or \"\@\".
--
-- Constraints: Must contain from 8 to 41 characters.
--
-- 'publiclyAccessible', 'restoreDBInstanceFromS3_publiclyAccessible' - A value that indicates whether the DB instance is publicly accessible.
--
-- When the DB instance is publicly accessible, its DNS endpoint resolves
-- to the private IP address from within the DB instance\'s VPC, and to the
-- public IP address from outside of the DB instance\'s VPC. Access to the
-- DB instance is ultimately controlled by the security group it uses, and
-- that public access is not permitted if the security group assigned to
-- the DB instance doesn\'t permit it.
--
-- When the DB instance isn\'t publicly accessible, it is an internal DB
-- instance with a DNS name that resolves to a private IP address.
--
-- For more information, see CreateDBInstance.
--
-- 'autoMinorVersionUpgrade', 'restoreDBInstanceFromS3_autoMinorVersionUpgrade' - A value that indicates whether minor engine upgrades are applied
-- automatically to the DB instance during the maintenance window. By
-- default, minor engine upgrades are not applied automatically.
--
-- 'masterUsername', 'restoreDBInstanceFromS3_masterUsername' - The name for the master user.
--
-- Constraints:
--
-- -   Must be 1 to 16 letters or numbers.
--
-- -   First character must be a letter.
--
-- -   Can\'t be a reserved word for the chosen database engine.
--
-- 'dbSubnetGroupName', 'restoreDBInstanceFromS3_dbSubnetGroupName' - A DB subnet group to associate with this DB instance.
--
-- 'monitoringRoleArn', 'restoreDBInstanceFromS3_monitoringRoleArn' - The ARN for the IAM role that permits RDS to send enhanced monitoring
-- metrics to Amazon CloudWatch Logs. For example,
-- @arn:aws:iam:123456789012:role\/emaccess@. For information on creating a
-- monitoring role, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling Setting Up and Enabling Enhanced Monitoring>
-- in the /Amazon RDS User Guide./
--
-- If @MonitoringInterval@ is set to a value other than 0, then you must
-- supply a @MonitoringRoleArn@ value.
--
-- 'iops', 'restoreDBInstanceFromS3_iops' - The amount of Provisioned IOPS (input\/output operations per second) to
-- allocate initially for the DB instance. For information about valid Iops
-- values, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS Amazon RDS Provisioned IOPS Storage to Improve Performance>
-- in the /Amazon RDS User Guide./
--
-- 'monitoringInterval', 'restoreDBInstanceFromS3_monitoringInterval' - The interval, in seconds, between points when Enhanced Monitoring
-- metrics are collected for the DB instance. To disable collecting
-- Enhanced Monitoring metrics, specify 0.
--
-- If @MonitoringRoleArn@ is specified, then you must also set
-- @MonitoringInterval@ to a value other than 0.
--
-- Valid Values: 0, 1, 5, 10, 15, 30, 60
--
-- Default: @0@
--
-- 'processorFeatures', 'restoreDBInstanceFromS3_processorFeatures' - The number of CPU cores and the number of threads per core for the DB
-- instance class of the DB instance.
--
-- 'licenseModel', 'restoreDBInstanceFromS3_licenseModel' - The license model for this DB instance. Use @general-public-license@.
--
-- 'preferredMaintenanceWindow', 'restoreDBInstanceFromS3_preferredMaintenanceWindow' - The time range each week during which system maintenance can occur, in
-- Universal Coordinated Time (UTC). For more information, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance Amazon RDS Maintenance Window>
-- in the /Amazon RDS User Guide./
--
-- Constraints:
--
-- -   Must be in the format @ddd:hh24:mi-ddd:hh24:mi@.
--
-- -   Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
--
-- -   Must be in Universal Coordinated Time (UTC).
--
-- -   Must not conflict with the preferred backup window.
--
-- -   Must be at least 30 minutes.
--
-- 'performanceInsightsRetentionPeriod', 'restoreDBInstanceFromS3_performanceInsightsRetentionPeriod' - The amount of time, in days, to retain Performance Insights data. Valid
-- values are 7 or 731 (2 years).
--
-- 'maxAllocatedStorage', 'restoreDBInstanceFromS3_maxAllocatedStorage' - The upper limit in gibibytes (GiB) to which Amazon RDS can automatically
-- scale the storage of the DB instance.
--
-- For more information about this setting, including limitations that
-- apply to it, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling Managing capacity automatically with Amazon RDS storage autoscaling>
-- in the /Amazon RDS User Guide/.
--
-- 'enablePerformanceInsights', 'restoreDBInstanceFromS3_enablePerformanceInsights' - A value that indicates whether to enable Performance Insights for the DB
-- instance.
--
-- For more information, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html Using Amazon Performance Insights>
-- in the /Amazon Relational Database Service User Guide/.
--
-- 'kmsKeyId', 'restoreDBInstanceFromS3_kmsKeyId' - The Amazon Web Services KMS key identifier for an encrypted DB instance.
--
-- The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
-- ARN, or alias name for the Amazon Web Services KMS customer master key
-- (CMK). To use a CMK in a different Amazon Web Services account, specify
-- the key ARN or alias ARN.
--
-- If the @StorageEncrypted@ parameter is enabled, and you do not specify a
-- value for the @KmsKeyId@ parameter, then Amazon RDS will use your
-- default CMK. There is a default CMK for your Amazon Web Services
-- account. Your Amazon Web Services account has a different default CMK
-- for each Amazon Web Services Region.
--
-- 'dbParameterGroupName', 'restoreDBInstanceFromS3_dbParameterGroupName' - The name of the DB parameter group to associate with this DB instance.
--
-- If you do not specify a value for @DBParameterGroupName@, then the
-- default @DBParameterGroup@ for the specified DB engine is used.
--
-- 'preferredBackupWindow', 'restoreDBInstanceFromS3_preferredBackupWindow' - The time range each day during which automated backups are created if
-- automated backups are enabled. For more information, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow Backup window>
-- in the /Amazon RDS User Guide./
--
-- Constraints:
--
-- -   Must be in the format @hh24:mi-hh24:mi@.
--
-- -   Must be in Universal Coordinated Time (UTC).
--
-- -   Must not conflict with the preferred maintenance window.
--
-- -   Must be at least 30 minutes.
--
-- 'availabilityZone', 'restoreDBInstanceFromS3_availabilityZone' - The Availability Zone that the DB instance is created in. For
-- information about Amazon Web Services Regions and Availability Zones,
-- see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html Regions and Availability Zones>
-- in the /Amazon RDS User Guide./
--
-- Default: A random, system-chosen Availability Zone in the endpoint\'s
-- Amazon Web Services Region.
--
-- Example: @us-east-1d@
--
-- Constraint: The @AvailabilityZone@ parameter can\'t be specified if the
-- DB instance is a Multi-AZ deployment. The specified Availability Zone
-- must be in the same Amazon Web Services Region as the current endpoint.
--
-- 'backupRetentionPeriod', 'restoreDBInstanceFromS3_backupRetentionPeriod' - The number of days for which automated backups are retained. Setting
-- this parameter to a positive number enables backups. For more
-- information, see @CreateDBInstance@.
--
-- 'performanceInsightsKMSKeyId', 'restoreDBInstanceFromS3_performanceInsightsKMSKeyId' - The Amazon Web Services KMS key identifier for encryption of Performance
-- Insights data.
--
-- The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
-- ARN, or alias name for the Amazon Web Services KMS customer master key
-- (CMK).
--
-- If you do not specify a value for @PerformanceInsightsKMSKeyId@, then
-- Amazon RDS uses your default CMK. There is a default CMK for your Amazon
-- Web Services account. Your Amazon Web Services account has a different
-- default CMK for each Amazon Web Services Region.
--
-- 'vpcSecurityGroupIds', 'restoreDBInstanceFromS3_vpcSecurityGroupIds' - A list of VPC security groups to associate with this DB instance.
--
-- 'multiAZ', 'restoreDBInstanceFromS3_multiAZ' - A value that indicates whether the DB instance is a Multi-AZ deployment.
-- If the DB instance is a Multi-AZ deployment, you can\'t set the
-- @AvailabilityZone@ parameter.
--
-- 's3Prefix', 'restoreDBInstanceFromS3_s3Prefix' - The prefix of your Amazon S3 bucket.
--
-- 'allocatedStorage', 'restoreDBInstanceFromS3_allocatedStorage' - The amount of storage (in gigabytes) to allocate initially for the DB
-- instance. Follow the allocation rules specified in @CreateDBInstance@.
--
-- Be sure to allocate enough memory for your new DB instance so that the
-- restore operation can succeed. You can also allocate additional memory
-- for future growth.
--
-- 'optionGroupName', 'restoreDBInstanceFromS3_optionGroupName' - The name of the option group to associate with this DB instance. If this
-- argument is omitted, the default option group for the specified engine
-- is used.
--
-- 'copyTagsToSnapshot', 'restoreDBInstanceFromS3_copyTagsToSnapshot' - A value that indicates whether to copy all tags from the DB instance to
-- snapshots of the DB instance. By default, tags are not copied.
--
-- 'tags', 'restoreDBInstanceFromS3_tags' - A list of tags to associate with this DB instance. For more information,
-- see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html Tagging Amazon RDS Resources>
-- in the /Amazon RDS User Guide./
--
-- 'port', 'restoreDBInstanceFromS3_port' - The port number on which the database accepts connections.
--
-- Type: Integer
--
-- Valid Values: @1150@-@65535@
--
-- Default: @3306@
--
-- 'enableIAMDatabaseAuthentication', 'restoreDBInstanceFromS3_enableIAMDatabaseAuthentication' - A value that indicates whether to enable mapping of Amazon Web Services
-- Identity and Access Management (IAM) accounts to database accounts. By
-- default, mapping is disabled.
--
-- For more information about IAM database authentication, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html IAM Database Authentication for MySQL and PostgreSQL>
-- in the /Amazon RDS User Guide./
--
-- 'useDefaultProcessorFeatures', 'restoreDBInstanceFromS3_useDefaultProcessorFeatures' - A value that indicates whether the DB instance class of the DB instance
-- uses its default processor features.
--
-- 'storageType', 'restoreDBInstanceFromS3_storageType' - Specifies the storage type to be associated with the DB instance.
--
-- Valid values: @standard@ | @gp2@ | @io1@
--
-- If you specify @io1@, you must also include a value for the @Iops@
-- parameter.
--
-- Default: @io1@ if the @Iops@ parameter is specified; otherwise @gp2@
--
-- 'enableCloudwatchLogsExports', 'restoreDBInstanceFromS3_enableCloudwatchLogsExports' - The list of logs that the restored DB instance is to export to
-- CloudWatch Logs. The values in the list depend on the DB engine being
-- used. For more information, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch Publishing Database Logs to Amazon CloudWatch Logs>
-- in the /Amazon RDS User Guide/.
--
-- 'dbName', 'restoreDBInstanceFromS3_dbName' - The name of the database to create when the DB instance is created.
-- Follow the naming rules specified in @CreateDBInstance@.
--
-- 'dbInstanceIdentifier', 'restoreDBInstanceFromS3_dbInstanceIdentifier' - The DB instance identifier. This parameter is stored as a lowercase
-- string.
--
-- Constraints:
--
-- -   Must contain from 1 to 63 letters, numbers, or hyphens.
--
-- -   First character must be a letter.
--
-- -   Can\'t end with a hyphen or contain two consecutive hyphens.
--
-- Example: @mydbinstance@
--
-- 'dbInstanceClass', 'restoreDBInstanceFromS3_dbInstanceClass' - The compute and memory capacity of the DB instance, for example,
-- @db.m4.large@. Not all DB instance classes are available in all Amazon
-- Web Services Regions, or for all database engines. For the full list of
-- DB instance classes, and availability for your engine, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html DB Instance Class>
-- in the /Amazon RDS User Guide./
--
-- Importing from Amazon S3 isn\'t supported on the db.t2.micro DB instance
-- class.
--
-- 'engine', 'restoreDBInstanceFromS3_engine' - The name of the database engine to be used for this instance.
--
-- Valid Values: @mysql@
--
-- 'sourceEngine', 'restoreDBInstanceFromS3_sourceEngine' - The name of the engine of your source database.
--
-- Valid Values: @mysql@
--
-- 'sourceEngineVersion', 'restoreDBInstanceFromS3_sourceEngineVersion' - The version of the database that the backup files were created from.
--
-- MySQL versions 5.6 and 5.7 are supported.
--
-- Example: @5.6.40@
--
-- 's3BucketName', 'restoreDBInstanceFromS3_s3BucketName' - The name of your Amazon S3 bucket that contains your database backup
-- file.
--
-- 's3IngestionRoleArn', 'restoreDBInstanceFromS3_s3IngestionRoleArn' - An Amazon Web Services Identity and Access Management (IAM) role to
-- allow Amazon RDS to access your Amazon S3 bucket.
newRestoreDBInstanceFromS3 ::
  -- | 'dbInstanceIdentifier'
  Prelude.Text ->
  -- | 'dbInstanceClass'
  Prelude.Text ->
  -- | 'engine'
  Prelude.Text ->
  -- | 'sourceEngine'
  Prelude.Text ->
  -- | 'sourceEngineVersion'
  Prelude.Text ->
  -- | 's3BucketName'
  Prelude.Text ->
  -- | 's3IngestionRoleArn'
  Prelude.Text ->
  RestoreDBInstanceFromS3
newRestoreDBInstanceFromS3 :: Text
-> Text
-> Text
-> Text
-> Text
-> Text
-> Text
-> RestoreDBInstanceFromS3
newRestoreDBInstanceFromS3
  Text
pDBInstanceIdentifier_
  Text
pDBInstanceClass_
  Text
pEngine_
  Text
pSourceEngine_
  Text
pSourceEngineVersion_
  Text
pS3BucketName_
  Text
pS3IngestionRoleArn_ =
    RestoreDBInstanceFromS3' :: Maybe Text
-> Maybe [Text]
-> Maybe Bool
-> Maybe Bool
-> Maybe Text
-> Maybe Bool
-> Maybe Bool
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Int
-> Maybe Int
-> Maybe [ProcessorFeature]
-> Maybe Text
-> Maybe Text
-> Maybe Int
-> Maybe Int
-> Maybe Bool
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Text
-> Maybe Int
-> Maybe Text
-> Maybe [Text]
-> Maybe Bool
-> Maybe Text
-> Maybe Int
-> Maybe Text
-> Maybe Bool
-> Maybe [Tag]
-> Maybe Int
-> Maybe Bool
-> Maybe Bool
-> Maybe Text
-> Maybe [Text]
-> Maybe Text
-> Text
-> Text
-> Text
-> Text
-> Text
-> Text
-> Text
-> RestoreDBInstanceFromS3
RestoreDBInstanceFromS3'
      { $sel:engineVersion:RestoreDBInstanceFromS3' :: Maybe Text
engineVersion =
          Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:dbSecurityGroups:RestoreDBInstanceFromS3' :: Maybe [Text]
dbSecurityGroups = Maybe [Text]
forall a. Maybe a
Prelude.Nothing,
        $sel:deletionProtection:RestoreDBInstanceFromS3' :: Maybe Bool
deletionProtection = Maybe Bool
forall a. Maybe a
Prelude.Nothing,
        $sel:storageEncrypted:RestoreDBInstanceFromS3' :: Maybe Bool
storageEncrypted = Maybe Bool
forall a. Maybe a
Prelude.Nothing,
        $sel:masterUserPassword:RestoreDBInstanceFromS3' :: Maybe Text
masterUserPassword = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:publiclyAccessible:RestoreDBInstanceFromS3' :: Maybe Bool
publiclyAccessible = Maybe Bool
forall a. Maybe a
Prelude.Nothing,
        $sel:autoMinorVersionUpgrade:RestoreDBInstanceFromS3' :: Maybe Bool
autoMinorVersionUpgrade = Maybe Bool
forall a. Maybe a
Prelude.Nothing,
        $sel:masterUsername:RestoreDBInstanceFromS3' :: Maybe Text
masterUsername = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:dbSubnetGroupName:RestoreDBInstanceFromS3' :: Maybe Text
dbSubnetGroupName = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:monitoringRoleArn:RestoreDBInstanceFromS3' :: Maybe Text
monitoringRoleArn = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:iops:RestoreDBInstanceFromS3' :: Maybe Int
iops = Maybe Int
forall a. Maybe a
Prelude.Nothing,
        $sel:monitoringInterval:RestoreDBInstanceFromS3' :: Maybe Int
monitoringInterval = Maybe Int
forall a. Maybe a
Prelude.Nothing,
        $sel:processorFeatures:RestoreDBInstanceFromS3' :: Maybe [ProcessorFeature]
processorFeatures = Maybe [ProcessorFeature]
forall a. Maybe a
Prelude.Nothing,
        $sel:licenseModel:RestoreDBInstanceFromS3' :: Maybe Text
licenseModel = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:preferredMaintenanceWindow:RestoreDBInstanceFromS3' :: Maybe Text
preferredMaintenanceWindow = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:performanceInsightsRetentionPeriod:RestoreDBInstanceFromS3' :: Maybe Int
performanceInsightsRetentionPeriod =
          Maybe Int
forall a. Maybe a
Prelude.Nothing,
        $sel:maxAllocatedStorage:RestoreDBInstanceFromS3' :: Maybe Int
maxAllocatedStorage = Maybe Int
forall a. Maybe a
Prelude.Nothing,
        $sel:enablePerformanceInsights:RestoreDBInstanceFromS3' :: Maybe Bool
enablePerformanceInsights = Maybe Bool
forall a. Maybe a
Prelude.Nothing,
        $sel:kmsKeyId:RestoreDBInstanceFromS3' :: Maybe Text
kmsKeyId = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:dbParameterGroupName:RestoreDBInstanceFromS3' :: Maybe Text
dbParameterGroupName = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:preferredBackupWindow:RestoreDBInstanceFromS3' :: Maybe Text
preferredBackupWindow = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:availabilityZone:RestoreDBInstanceFromS3' :: Maybe Text
availabilityZone = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:backupRetentionPeriod:RestoreDBInstanceFromS3' :: Maybe Int
backupRetentionPeriod = Maybe Int
forall a. Maybe a
Prelude.Nothing,
        $sel:performanceInsightsKMSKeyId:RestoreDBInstanceFromS3' :: Maybe Text
performanceInsightsKMSKeyId = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:vpcSecurityGroupIds:RestoreDBInstanceFromS3' :: Maybe [Text]
vpcSecurityGroupIds = Maybe [Text]
forall a. Maybe a
Prelude.Nothing,
        $sel:multiAZ:RestoreDBInstanceFromS3' :: Maybe Bool
multiAZ = Maybe Bool
forall a. Maybe a
Prelude.Nothing,
        $sel:s3Prefix:RestoreDBInstanceFromS3' :: Maybe Text
s3Prefix = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:allocatedStorage:RestoreDBInstanceFromS3' :: Maybe Int
allocatedStorage = Maybe Int
forall a. Maybe a
Prelude.Nothing,
        $sel:optionGroupName:RestoreDBInstanceFromS3' :: Maybe Text
optionGroupName = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:copyTagsToSnapshot:RestoreDBInstanceFromS3' :: Maybe Bool
copyTagsToSnapshot = Maybe Bool
forall a. Maybe a
Prelude.Nothing,
        $sel:tags:RestoreDBInstanceFromS3' :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing,
        $sel:port:RestoreDBInstanceFromS3' :: Maybe Int
port = Maybe Int
forall a. Maybe a
Prelude.Nothing,
        $sel:enableIAMDatabaseAuthentication:RestoreDBInstanceFromS3' :: Maybe Bool
enableIAMDatabaseAuthentication = Maybe Bool
forall a. Maybe a
Prelude.Nothing,
        $sel:useDefaultProcessorFeatures:RestoreDBInstanceFromS3' :: Maybe Bool
useDefaultProcessorFeatures = Maybe Bool
forall a. Maybe a
Prelude.Nothing,
        $sel:storageType:RestoreDBInstanceFromS3' :: Maybe Text
storageType = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:enableCloudwatchLogsExports:RestoreDBInstanceFromS3' :: Maybe [Text]
enableCloudwatchLogsExports = Maybe [Text]
forall a. Maybe a
Prelude.Nothing,
        $sel:dbName:RestoreDBInstanceFromS3' :: Maybe Text
dbName = Maybe Text
forall a. Maybe a
Prelude.Nothing,
        $sel:dbInstanceIdentifier:RestoreDBInstanceFromS3' :: Text
dbInstanceIdentifier = Text
pDBInstanceIdentifier_,
        $sel:dbInstanceClass:RestoreDBInstanceFromS3' :: Text
dbInstanceClass = Text
pDBInstanceClass_,
        $sel:engine:RestoreDBInstanceFromS3' :: Text
engine = Text
pEngine_,
        $sel:sourceEngine:RestoreDBInstanceFromS3' :: Text
sourceEngine = Text
pSourceEngine_,
        $sel:sourceEngineVersion:RestoreDBInstanceFromS3' :: Text
sourceEngineVersion = Text
pSourceEngineVersion_,
        $sel:s3BucketName:RestoreDBInstanceFromS3' :: Text
s3BucketName = Text
pS3BucketName_,
        $sel:s3IngestionRoleArn:RestoreDBInstanceFromS3' :: Text
s3IngestionRoleArn = Text
pS3IngestionRoleArn_
      }

-- | The version number of the database engine to use. Choose the latest
-- minor version of your database engine. For information about engine
-- versions, see @CreateDBInstance@, or call @DescribeDBEngineVersions@.
restoreDBInstanceFromS3_engineVersion :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_engineVersion :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_engineVersion = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
engineVersion :: Maybe Text
$sel:engineVersion:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
engineVersion} -> Maybe Text
engineVersion) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:engineVersion:RestoreDBInstanceFromS3' :: Maybe Text
engineVersion = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | A list of DB security groups to associate with this DB instance.
--
-- Default: The default DB security group for the database engine.
restoreDBInstanceFromS3_dbSecurityGroups :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe [Prelude.Text])
restoreDBInstanceFromS3_dbSecurityGroups :: (Maybe [Text] -> f (Maybe [Text]))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_dbSecurityGroups = (RestoreDBInstanceFromS3 -> Maybe [Text])
-> (RestoreDBInstanceFromS3
    -> Maybe [Text] -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe [Text])
     (Maybe [Text])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe [Text]
dbSecurityGroups :: Maybe [Text]
$sel:dbSecurityGroups:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe [Text]
dbSecurityGroups} -> Maybe [Text]
dbSecurityGroups) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe [Text]
a -> RestoreDBInstanceFromS3
s {$sel:dbSecurityGroups:RestoreDBInstanceFromS3' :: Maybe [Text]
dbSecurityGroups = Maybe [Text]
a} :: RestoreDBInstanceFromS3) ((Maybe [Text] -> f (Maybe [Text]))
 -> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3)
-> ((Maybe [Text] -> f (Maybe [Text]))
    -> Maybe [Text] -> f (Maybe [Text]))
-> (Maybe [Text] -> f (Maybe [Text]))
-> RestoreDBInstanceFromS3
-> f RestoreDBInstanceFromS3
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso [Text] [Text] [Text] [Text]
-> Iso (Maybe [Text]) (Maybe [Text]) (Maybe [Text]) (Maybe [Text])
forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping AnIso [Text] [Text] [Text] [Text]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | A value that indicates whether the DB instance has deletion protection
-- enabled. The database can\'t be deleted when deletion protection is
-- enabled. By default, deletion protection is disabled. For more
-- information, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html Deleting a DB Instance>.
restoreDBInstanceFromS3_deletionProtection :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Bool)
restoreDBInstanceFromS3_deletionProtection :: (Maybe Bool -> f (Maybe Bool))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_deletionProtection = (RestoreDBInstanceFromS3 -> Maybe Bool)
-> (RestoreDBInstanceFromS3
    -> Maybe Bool -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Bool)
     (Maybe Bool)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Bool
deletionProtection :: Maybe Bool
$sel:deletionProtection:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
deletionProtection} -> Maybe Bool
deletionProtection) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Bool
a -> RestoreDBInstanceFromS3
s {$sel:deletionProtection:RestoreDBInstanceFromS3' :: Maybe Bool
deletionProtection = Maybe Bool
a} :: RestoreDBInstanceFromS3)

-- | A value that indicates whether the new DB instance is encrypted or not.
restoreDBInstanceFromS3_storageEncrypted :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Bool)
restoreDBInstanceFromS3_storageEncrypted :: (Maybe Bool -> f (Maybe Bool))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_storageEncrypted = (RestoreDBInstanceFromS3 -> Maybe Bool)
-> (RestoreDBInstanceFromS3
    -> Maybe Bool -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Bool)
     (Maybe Bool)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Bool
storageEncrypted :: Maybe Bool
$sel:storageEncrypted:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
storageEncrypted} -> Maybe Bool
storageEncrypted) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Bool
a -> RestoreDBInstanceFromS3
s {$sel:storageEncrypted:RestoreDBInstanceFromS3' :: Maybe Bool
storageEncrypted = Maybe Bool
a} :: RestoreDBInstanceFromS3)

-- | The password for the master user. The password can include any printable
-- ASCII character except \"\/\", \"\"\", or \"\@\".
--
-- Constraints: Must contain from 8 to 41 characters.
restoreDBInstanceFromS3_masterUserPassword :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_masterUserPassword :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_masterUserPassword = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
masterUserPassword :: Maybe Text
$sel:masterUserPassword:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
masterUserPassword} -> Maybe Text
masterUserPassword) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:masterUserPassword:RestoreDBInstanceFromS3' :: Maybe Text
masterUserPassword = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | A value that indicates whether the DB instance is publicly accessible.
--
-- When the DB instance is publicly accessible, its DNS endpoint resolves
-- to the private IP address from within the DB instance\'s VPC, and to the
-- public IP address from outside of the DB instance\'s VPC. Access to the
-- DB instance is ultimately controlled by the security group it uses, and
-- that public access is not permitted if the security group assigned to
-- the DB instance doesn\'t permit it.
--
-- When the DB instance isn\'t publicly accessible, it is an internal DB
-- instance with a DNS name that resolves to a private IP address.
--
-- For more information, see CreateDBInstance.
restoreDBInstanceFromS3_publiclyAccessible :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Bool)
restoreDBInstanceFromS3_publiclyAccessible :: (Maybe Bool -> f (Maybe Bool))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_publiclyAccessible = (RestoreDBInstanceFromS3 -> Maybe Bool)
-> (RestoreDBInstanceFromS3
    -> Maybe Bool -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Bool)
     (Maybe Bool)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Bool
publiclyAccessible :: Maybe Bool
$sel:publiclyAccessible:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
publiclyAccessible} -> Maybe Bool
publiclyAccessible) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Bool
a -> RestoreDBInstanceFromS3
s {$sel:publiclyAccessible:RestoreDBInstanceFromS3' :: Maybe Bool
publiclyAccessible = Maybe Bool
a} :: RestoreDBInstanceFromS3)

-- | A value that indicates whether minor engine upgrades are applied
-- automatically to the DB instance during the maintenance window. By
-- default, minor engine upgrades are not applied automatically.
restoreDBInstanceFromS3_autoMinorVersionUpgrade :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Bool)
restoreDBInstanceFromS3_autoMinorVersionUpgrade :: (Maybe Bool -> f (Maybe Bool))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_autoMinorVersionUpgrade = (RestoreDBInstanceFromS3 -> Maybe Bool)
-> (RestoreDBInstanceFromS3
    -> Maybe Bool -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Bool)
     (Maybe Bool)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Bool
autoMinorVersionUpgrade :: Maybe Bool
$sel:autoMinorVersionUpgrade:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
autoMinorVersionUpgrade} -> Maybe Bool
autoMinorVersionUpgrade) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Bool
a -> RestoreDBInstanceFromS3
s {$sel:autoMinorVersionUpgrade:RestoreDBInstanceFromS3' :: Maybe Bool
autoMinorVersionUpgrade = Maybe Bool
a} :: RestoreDBInstanceFromS3)

-- | The name for the master user.
--
-- Constraints:
--
-- -   Must be 1 to 16 letters or numbers.
--
-- -   First character must be a letter.
--
-- -   Can\'t be a reserved word for the chosen database engine.
restoreDBInstanceFromS3_masterUsername :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_masterUsername :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_masterUsername = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
masterUsername :: Maybe Text
$sel:masterUsername:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
masterUsername} -> Maybe Text
masterUsername) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:masterUsername:RestoreDBInstanceFromS3' :: Maybe Text
masterUsername = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | A DB subnet group to associate with this DB instance.
restoreDBInstanceFromS3_dbSubnetGroupName :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_dbSubnetGroupName :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_dbSubnetGroupName = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
dbSubnetGroupName :: Maybe Text
$sel:dbSubnetGroupName:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
dbSubnetGroupName} -> Maybe Text
dbSubnetGroupName) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:dbSubnetGroupName:RestoreDBInstanceFromS3' :: Maybe Text
dbSubnetGroupName = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | The ARN for the IAM role that permits RDS to send enhanced monitoring
-- metrics to Amazon CloudWatch Logs. For example,
-- @arn:aws:iam:123456789012:role\/emaccess@. For information on creating a
-- monitoring role, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling Setting Up and Enabling Enhanced Monitoring>
-- in the /Amazon RDS User Guide./
--
-- If @MonitoringInterval@ is set to a value other than 0, then you must
-- supply a @MonitoringRoleArn@ value.
restoreDBInstanceFromS3_monitoringRoleArn :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_monitoringRoleArn :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_monitoringRoleArn = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
monitoringRoleArn :: Maybe Text
$sel:monitoringRoleArn:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
monitoringRoleArn} -> Maybe Text
monitoringRoleArn) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:monitoringRoleArn:RestoreDBInstanceFromS3' :: Maybe Text
monitoringRoleArn = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | The amount of Provisioned IOPS (input\/output operations per second) to
-- allocate initially for the DB instance. For information about valid Iops
-- values, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS Amazon RDS Provisioned IOPS Storage to Improve Performance>
-- in the /Amazon RDS User Guide./
restoreDBInstanceFromS3_iops :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Int)
restoreDBInstanceFromS3_iops :: (Maybe Int -> f (Maybe Int))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_iops = (RestoreDBInstanceFromS3 -> Maybe Int)
-> (RestoreDBInstanceFromS3
    -> Maybe Int -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Int)
     (Maybe Int)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Int
iops :: Maybe Int
$sel:iops:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Int
iops} -> Maybe Int
iops) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Int
a -> RestoreDBInstanceFromS3
s {$sel:iops:RestoreDBInstanceFromS3' :: Maybe Int
iops = Maybe Int
a} :: RestoreDBInstanceFromS3)

-- | The interval, in seconds, between points when Enhanced Monitoring
-- metrics are collected for the DB instance. To disable collecting
-- Enhanced Monitoring metrics, specify 0.
--
-- If @MonitoringRoleArn@ is specified, then you must also set
-- @MonitoringInterval@ to a value other than 0.
--
-- Valid Values: 0, 1, 5, 10, 15, 30, 60
--
-- Default: @0@
restoreDBInstanceFromS3_monitoringInterval :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Int)
restoreDBInstanceFromS3_monitoringInterval :: (Maybe Int -> f (Maybe Int))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_monitoringInterval = (RestoreDBInstanceFromS3 -> Maybe Int)
-> (RestoreDBInstanceFromS3
    -> Maybe Int -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Int)
     (Maybe Int)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Int
monitoringInterval :: Maybe Int
$sel:monitoringInterval:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Int
monitoringInterval} -> Maybe Int
monitoringInterval) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Int
a -> RestoreDBInstanceFromS3
s {$sel:monitoringInterval:RestoreDBInstanceFromS3' :: Maybe Int
monitoringInterval = Maybe Int
a} :: RestoreDBInstanceFromS3)

-- | The number of CPU cores and the number of threads per core for the DB
-- instance class of the DB instance.
restoreDBInstanceFromS3_processorFeatures :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe [ProcessorFeature])
restoreDBInstanceFromS3_processorFeatures :: (Maybe [ProcessorFeature] -> f (Maybe [ProcessorFeature]))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_processorFeatures = (RestoreDBInstanceFromS3 -> Maybe [ProcessorFeature])
-> (RestoreDBInstanceFromS3
    -> Maybe [ProcessorFeature] -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe [ProcessorFeature])
     (Maybe [ProcessorFeature])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe [ProcessorFeature]
processorFeatures :: Maybe [ProcessorFeature]
$sel:processorFeatures:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe [ProcessorFeature]
processorFeatures} -> Maybe [ProcessorFeature]
processorFeatures) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe [ProcessorFeature]
a -> RestoreDBInstanceFromS3
s {$sel:processorFeatures:RestoreDBInstanceFromS3' :: Maybe [ProcessorFeature]
processorFeatures = Maybe [ProcessorFeature]
a} :: RestoreDBInstanceFromS3) ((Maybe [ProcessorFeature] -> f (Maybe [ProcessorFeature]))
 -> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3)
-> ((Maybe [ProcessorFeature] -> f (Maybe [ProcessorFeature]))
    -> Maybe [ProcessorFeature] -> f (Maybe [ProcessorFeature]))
-> (Maybe [ProcessorFeature] -> f (Maybe [ProcessorFeature]))
-> RestoreDBInstanceFromS3
-> f RestoreDBInstanceFromS3
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso
  [ProcessorFeature]
  [ProcessorFeature]
  [ProcessorFeature]
  [ProcessorFeature]
-> Iso
     (Maybe [ProcessorFeature])
     (Maybe [ProcessorFeature])
     (Maybe [ProcessorFeature])
     (Maybe [ProcessorFeature])
forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping AnIso
  [ProcessorFeature]
  [ProcessorFeature]
  [ProcessorFeature]
  [ProcessorFeature]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | The license model for this DB instance. Use @general-public-license@.
restoreDBInstanceFromS3_licenseModel :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_licenseModel :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_licenseModel = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
licenseModel :: Maybe Text
$sel:licenseModel:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
licenseModel} -> Maybe Text
licenseModel) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:licenseModel:RestoreDBInstanceFromS3' :: Maybe Text
licenseModel = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | The time range each week during which system maintenance can occur, in
-- Universal Coordinated Time (UTC). For more information, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance Amazon RDS Maintenance Window>
-- in the /Amazon RDS User Guide./
--
-- Constraints:
--
-- -   Must be in the format @ddd:hh24:mi-ddd:hh24:mi@.
--
-- -   Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
--
-- -   Must be in Universal Coordinated Time (UTC).
--
-- -   Must not conflict with the preferred backup window.
--
-- -   Must be at least 30 minutes.
restoreDBInstanceFromS3_preferredMaintenanceWindow :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_preferredMaintenanceWindow :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_preferredMaintenanceWindow = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
preferredMaintenanceWindow :: Maybe Text
$sel:preferredMaintenanceWindow:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
preferredMaintenanceWindow} -> Maybe Text
preferredMaintenanceWindow) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:preferredMaintenanceWindow:RestoreDBInstanceFromS3' :: Maybe Text
preferredMaintenanceWindow = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | The amount of time, in days, to retain Performance Insights data. Valid
-- values are 7 or 731 (2 years).
restoreDBInstanceFromS3_performanceInsightsRetentionPeriod :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Int)
restoreDBInstanceFromS3_performanceInsightsRetentionPeriod :: (Maybe Int -> f (Maybe Int))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_performanceInsightsRetentionPeriod = (RestoreDBInstanceFromS3 -> Maybe Int)
-> (RestoreDBInstanceFromS3
    -> Maybe Int -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Int)
     (Maybe Int)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Int
performanceInsightsRetentionPeriod :: Maybe Int
$sel:performanceInsightsRetentionPeriod:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Int
performanceInsightsRetentionPeriod} -> Maybe Int
performanceInsightsRetentionPeriod) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Int
a -> RestoreDBInstanceFromS3
s {$sel:performanceInsightsRetentionPeriod:RestoreDBInstanceFromS3' :: Maybe Int
performanceInsightsRetentionPeriod = Maybe Int
a} :: RestoreDBInstanceFromS3)

-- | The upper limit in gibibytes (GiB) to which Amazon RDS can automatically
-- scale the storage of the DB instance.
--
-- For more information about this setting, including limitations that
-- apply to it, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling Managing capacity automatically with Amazon RDS storage autoscaling>
-- in the /Amazon RDS User Guide/.
restoreDBInstanceFromS3_maxAllocatedStorage :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Int)
restoreDBInstanceFromS3_maxAllocatedStorage :: (Maybe Int -> f (Maybe Int))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_maxAllocatedStorage = (RestoreDBInstanceFromS3 -> Maybe Int)
-> (RestoreDBInstanceFromS3
    -> Maybe Int -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Int)
     (Maybe Int)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Int
maxAllocatedStorage :: Maybe Int
$sel:maxAllocatedStorage:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Int
maxAllocatedStorage} -> Maybe Int
maxAllocatedStorage) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Int
a -> RestoreDBInstanceFromS3
s {$sel:maxAllocatedStorage:RestoreDBInstanceFromS3' :: Maybe Int
maxAllocatedStorage = Maybe Int
a} :: RestoreDBInstanceFromS3)

-- | A value that indicates whether to enable Performance Insights for the DB
-- instance.
--
-- For more information, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html Using Amazon Performance Insights>
-- in the /Amazon Relational Database Service User Guide/.
restoreDBInstanceFromS3_enablePerformanceInsights :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Bool)
restoreDBInstanceFromS3_enablePerformanceInsights :: (Maybe Bool -> f (Maybe Bool))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_enablePerformanceInsights = (RestoreDBInstanceFromS3 -> Maybe Bool)
-> (RestoreDBInstanceFromS3
    -> Maybe Bool -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Bool)
     (Maybe Bool)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Bool
enablePerformanceInsights :: Maybe Bool
$sel:enablePerformanceInsights:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
enablePerformanceInsights} -> Maybe Bool
enablePerformanceInsights) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Bool
a -> RestoreDBInstanceFromS3
s {$sel:enablePerformanceInsights:RestoreDBInstanceFromS3' :: Maybe Bool
enablePerformanceInsights = Maybe Bool
a} :: RestoreDBInstanceFromS3)

-- | The Amazon Web Services KMS key identifier for an encrypted DB instance.
--
-- The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
-- ARN, or alias name for the Amazon Web Services KMS customer master key
-- (CMK). To use a CMK in a different Amazon Web Services account, specify
-- the key ARN or alias ARN.
--
-- If the @StorageEncrypted@ parameter is enabled, and you do not specify a
-- value for the @KmsKeyId@ parameter, then Amazon RDS will use your
-- default CMK. There is a default CMK for your Amazon Web Services
-- account. Your Amazon Web Services account has a different default CMK
-- for each Amazon Web Services Region.
restoreDBInstanceFromS3_kmsKeyId :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_kmsKeyId :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_kmsKeyId = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
kmsKeyId :: Maybe Text
$sel:kmsKeyId:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
kmsKeyId} -> Maybe Text
kmsKeyId) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:kmsKeyId:RestoreDBInstanceFromS3' :: Maybe Text
kmsKeyId = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | The name of the DB parameter group to associate with this DB instance.
--
-- If you do not specify a value for @DBParameterGroupName@, then the
-- default @DBParameterGroup@ for the specified DB engine is used.
restoreDBInstanceFromS3_dbParameterGroupName :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_dbParameterGroupName :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_dbParameterGroupName = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
dbParameterGroupName :: Maybe Text
$sel:dbParameterGroupName:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
dbParameterGroupName} -> Maybe Text
dbParameterGroupName) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:dbParameterGroupName:RestoreDBInstanceFromS3' :: Maybe Text
dbParameterGroupName = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | The time range each day during which automated backups are created if
-- automated backups are enabled. For more information, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow Backup window>
-- in the /Amazon RDS User Guide./
--
-- Constraints:
--
-- -   Must be in the format @hh24:mi-hh24:mi@.
--
-- -   Must be in Universal Coordinated Time (UTC).
--
-- -   Must not conflict with the preferred maintenance window.
--
-- -   Must be at least 30 minutes.
restoreDBInstanceFromS3_preferredBackupWindow :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_preferredBackupWindow :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_preferredBackupWindow = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
preferredBackupWindow :: Maybe Text
$sel:preferredBackupWindow:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
preferredBackupWindow} -> Maybe Text
preferredBackupWindow) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:preferredBackupWindow:RestoreDBInstanceFromS3' :: Maybe Text
preferredBackupWindow = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | The Availability Zone that the DB instance is created in. For
-- information about Amazon Web Services Regions and Availability Zones,
-- see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html Regions and Availability Zones>
-- in the /Amazon RDS User Guide./
--
-- Default: A random, system-chosen Availability Zone in the endpoint\'s
-- Amazon Web Services Region.
--
-- Example: @us-east-1d@
--
-- Constraint: The @AvailabilityZone@ parameter can\'t be specified if the
-- DB instance is a Multi-AZ deployment. The specified Availability Zone
-- must be in the same Amazon Web Services Region as the current endpoint.
restoreDBInstanceFromS3_availabilityZone :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_availabilityZone :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_availabilityZone = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
availabilityZone :: Maybe Text
$sel:availabilityZone:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
availabilityZone} -> Maybe Text
availabilityZone) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:availabilityZone:RestoreDBInstanceFromS3' :: Maybe Text
availabilityZone = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | The number of days for which automated backups are retained. Setting
-- this parameter to a positive number enables backups. For more
-- information, see @CreateDBInstance@.
restoreDBInstanceFromS3_backupRetentionPeriod :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Int)
restoreDBInstanceFromS3_backupRetentionPeriod :: (Maybe Int -> f (Maybe Int))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_backupRetentionPeriod = (RestoreDBInstanceFromS3 -> Maybe Int)
-> (RestoreDBInstanceFromS3
    -> Maybe Int -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Int)
     (Maybe Int)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Int
backupRetentionPeriod :: Maybe Int
$sel:backupRetentionPeriod:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Int
backupRetentionPeriod} -> Maybe Int
backupRetentionPeriod) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Int
a -> RestoreDBInstanceFromS3
s {$sel:backupRetentionPeriod:RestoreDBInstanceFromS3' :: Maybe Int
backupRetentionPeriod = Maybe Int
a} :: RestoreDBInstanceFromS3)

-- | The Amazon Web Services KMS key identifier for encryption of Performance
-- Insights data.
--
-- The Amazon Web Services KMS key identifier is the key ARN, key ID, alias
-- ARN, or alias name for the Amazon Web Services KMS customer master key
-- (CMK).
--
-- If you do not specify a value for @PerformanceInsightsKMSKeyId@, then
-- Amazon RDS uses your default CMK. There is a default CMK for your Amazon
-- Web Services account. Your Amazon Web Services account has a different
-- default CMK for each Amazon Web Services Region.
restoreDBInstanceFromS3_performanceInsightsKMSKeyId :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_performanceInsightsKMSKeyId :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_performanceInsightsKMSKeyId = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
performanceInsightsKMSKeyId :: Maybe Text
$sel:performanceInsightsKMSKeyId:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
performanceInsightsKMSKeyId} -> Maybe Text
performanceInsightsKMSKeyId) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:performanceInsightsKMSKeyId:RestoreDBInstanceFromS3' :: Maybe Text
performanceInsightsKMSKeyId = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | A list of VPC security groups to associate with this DB instance.
restoreDBInstanceFromS3_vpcSecurityGroupIds :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe [Prelude.Text])
restoreDBInstanceFromS3_vpcSecurityGroupIds :: (Maybe [Text] -> f (Maybe [Text]))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_vpcSecurityGroupIds = (RestoreDBInstanceFromS3 -> Maybe [Text])
-> (RestoreDBInstanceFromS3
    -> Maybe [Text] -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe [Text])
     (Maybe [Text])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe [Text]
vpcSecurityGroupIds :: Maybe [Text]
$sel:vpcSecurityGroupIds:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe [Text]
vpcSecurityGroupIds} -> Maybe [Text]
vpcSecurityGroupIds) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe [Text]
a -> RestoreDBInstanceFromS3
s {$sel:vpcSecurityGroupIds:RestoreDBInstanceFromS3' :: Maybe [Text]
vpcSecurityGroupIds = Maybe [Text]
a} :: RestoreDBInstanceFromS3) ((Maybe [Text] -> f (Maybe [Text]))
 -> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3)
-> ((Maybe [Text] -> f (Maybe [Text]))
    -> Maybe [Text] -> f (Maybe [Text]))
-> (Maybe [Text] -> f (Maybe [Text]))
-> RestoreDBInstanceFromS3
-> f RestoreDBInstanceFromS3
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso [Text] [Text] [Text] [Text]
-> Iso (Maybe [Text]) (Maybe [Text]) (Maybe [Text]) (Maybe [Text])
forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping AnIso [Text] [Text] [Text] [Text]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | A value that indicates whether the DB instance is a Multi-AZ deployment.
-- If the DB instance is a Multi-AZ deployment, you can\'t set the
-- @AvailabilityZone@ parameter.
restoreDBInstanceFromS3_multiAZ :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Bool)
restoreDBInstanceFromS3_multiAZ :: (Maybe Bool -> f (Maybe Bool))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_multiAZ = (RestoreDBInstanceFromS3 -> Maybe Bool)
-> (RestoreDBInstanceFromS3
    -> Maybe Bool -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Bool)
     (Maybe Bool)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Bool
multiAZ :: Maybe Bool
$sel:multiAZ:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
multiAZ} -> Maybe Bool
multiAZ) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Bool
a -> RestoreDBInstanceFromS3
s {$sel:multiAZ:RestoreDBInstanceFromS3' :: Maybe Bool
multiAZ = Maybe Bool
a} :: RestoreDBInstanceFromS3)

-- | The prefix of your Amazon S3 bucket.
restoreDBInstanceFromS3_s3Prefix :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_s3Prefix :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_s3Prefix = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
s3Prefix :: Maybe Text
$sel:s3Prefix:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
s3Prefix} -> Maybe Text
s3Prefix) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:s3Prefix:RestoreDBInstanceFromS3' :: Maybe Text
s3Prefix = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | The amount of storage (in gigabytes) to allocate initially for the DB
-- instance. Follow the allocation rules specified in @CreateDBInstance@.
--
-- Be sure to allocate enough memory for your new DB instance so that the
-- restore operation can succeed. You can also allocate additional memory
-- for future growth.
restoreDBInstanceFromS3_allocatedStorage :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Int)
restoreDBInstanceFromS3_allocatedStorage :: (Maybe Int -> f (Maybe Int))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_allocatedStorage = (RestoreDBInstanceFromS3 -> Maybe Int)
-> (RestoreDBInstanceFromS3
    -> Maybe Int -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Int)
     (Maybe Int)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Int
allocatedStorage :: Maybe Int
$sel:allocatedStorage:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Int
allocatedStorage} -> Maybe Int
allocatedStorage) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Int
a -> RestoreDBInstanceFromS3
s {$sel:allocatedStorage:RestoreDBInstanceFromS3' :: Maybe Int
allocatedStorage = Maybe Int
a} :: RestoreDBInstanceFromS3)

-- | The name of the option group to associate with this DB instance. If this
-- argument is omitted, the default option group for the specified engine
-- is used.
restoreDBInstanceFromS3_optionGroupName :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_optionGroupName :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_optionGroupName = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
optionGroupName :: Maybe Text
$sel:optionGroupName:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
optionGroupName} -> Maybe Text
optionGroupName) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:optionGroupName:RestoreDBInstanceFromS3' :: Maybe Text
optionGroupName = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | A value that indicates whether to copy all tags from the DB instance to
-- snapshots of the DB instance. By default, tags are not copied.
restoreDBInstanceFromS3_copyTagsToSnapshot :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Bool)
restoreDBInstanceFromS3_copyTagsToSnapshot :: (Maybe Bool -> f (Maybe Bool))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_copyTagsToSnapshot = (RestoreDBInstanceFromS3 -> Maybe Bool)
-> (RestoreDBInstanceFromS3
    -> Maybe Bool -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Bool)
     (Maybe Bool)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Bool
copyTagsToSnapshot :: Maybe Bool
$sel:copyTagsToSnapshot:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
copyTagsToSnapshot} -> Maybe Bool
copyTagsToSnapshot) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Bool
a -> RestoreDBInstanceFromS3
s {$sel:copyTagsToSnapshot:RestoreDBInstanceFromS3' :: Maybe Bool
copyTagsToSnapshot = Maybe Bool
a} :: RestoreDBInstanceFromS3)

-- | A list of tags to associate with this DB instance. For more information,
-- see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html Tagging Amazon RDS Resources>
-- in the /Amazon RDS User Guide./
restoreDBInstanceFromS3_tags :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe [Tag])
restoreDBInstanceFromS3_tags :: (Maybe [Tag] -> f (Maybe [Tag]))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_tags = (RestoreDBInstanceFromS3 -> Maybe [Tag])
-> (RestoreDBInstanceFromS3
    -> Maybe [Tag] -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe [Tag])
     (Maybe [Tag])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe [Tag]
tags :: Maybe [Tag]
$sel:tags:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe [Tag]
tags} -> Maybe [Tag]
tags) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe [Tag]
a -> RestoreDBInstanceFromS3
s {$sel:tags:RestoreDBInstanceFromS3' :: Maybe [Tag]
tags = Maybe [Tag]
a} :: RestoreDBInstanceFromS3) ((Maybe [Tag] -> f (Maybe [Tag]))
 -> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3)
-> ((Maybe [Tag] -> f (Maybe [Tag]))
    -> Maybe [Tag] -> f (Maybe [Tag]))
-> (Maybe [Tag] -> f (Maybe [Tag]))
-> RestoreDBInstanceFromS3
-> f RestoreDBInstanceFromS3
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso [Tag] [Tag] [Tag] [Tag]
-> Iso (Maybe [Tag]) (Maybe [Tag]) (Maybe [Tag]) (Maybe [Tag])
forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping AnIso [Tag] [Tag] [Tag] [Tag]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | The port number on which the database accepts connections.
--
-- Type: Integer
--
-- Valid Values: @1150@-@65535@
--
-- Default: @3306@
restoreDBInstanceFromS3_port :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Int)
restoreDBInstanceFromS3_port :: (Maybe Int -> f (Maybe Int))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_port = (RestoreDBInstanceFromS3 -> Maybe Int)
-> (RestoreDBInstanceFromS3
    -> Maybe Int -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Int)
     (Maybe Int)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Int
port :: Maybe Int
$sel:port:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Int
port} -> Maybe Int
port) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Int
a -> RestoreDBInstanceFromS3
s {$sel:port:RestoreDBInstanceFromS3' :: Maybe Int
port = Maybe Int
a} :: RestoreDBInstanceFromS3)

-- | A value that indicates whether to enable mapping of Amazon Web Services
-- Identity and Access Management (IAM) accounts to database accounts. By
-- default, mapping is disabled.
--
-- For more information about IAM database authentication, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html IAM Database Authentication for MySQL and PostgreSQL>
-- in the /Amazon RDS User Guide./
restoreDBInstanceFromS3_enableIAMDatabaseAuthentication :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Bool)
restoreDBInstanceFromS3_enableIAMDatabaseAuthentication :: (Maybe Bool -> f (Maybe Bool))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_enableIAMDatabaseAuthentication = (RestoreDBInstanceFromS3 -> Maybe Bool)
-> (RestoreDBInstanceFromS3
    -> Maybe Bool -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Bool)
     (Maybe Bool)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Bool
enableIAMDatabaseAuthentication :: Maybe Bool
$sel:enableIAMDatabaseAuthentication:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
enableIAMDatabaseAuthentication} -> Maybe Bool
enableIAMDatabaseAuthentication) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Bool
a -> RestoreDBInstanceFromS3
s {$sel:enableIAMDatabaseAuthentication:RestoreDBInstanceFromS3' :: Maybe Bool
enableIAMDatabaseAuthentication = Maybe Bool
a} :: RestoreDBInstanceFromS3)

-- | A value that indicates whether the DB instance class of the DB instance
-- uses its default processor features.
restoreDBInstanceFromS3_useDefaultProcessorFeatures :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Bool)
restoreDBInstanceFromS3_useDefaultProcessorFeatures :: (Maybe Bool -> f (Maybe Bool))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_useDefaultProcessorFeatures = (RestoreDBInstanceFromS3 -> Maybe Bool)
-> (RestoreDBInstanceFromS3
    -> Maybe Bool -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Bool)
     (Maybe Bool)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Bool
useDefaultProcessorFeatures :: Maybe Bool
$sel:useDefaultProcessorFeatures:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
useDefaultProcessorFeatures} -> Maybe Bool
useDefaultProcessorFeatures) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Bool
a -> RestoreDBInstanceFromS3
s {$sel:useDefaultProcessorFeatures:RestoreDBInstanceFromS3' :: Maybe Bool
useDefaultProcessorFeatures = Maybe Bool
a} :: RestoreDBInstanceFromS3)

-- | Specifies the storage type to be associated with the DB instance.
--
-- Valid values: @standard@ | @gp2@ | @io1@
--
-- If you specify @io1@, you must also include a value for the @Iops@
-- parameter.
--
-- Default: @io1@ if the @Iops@ parameter is specified; otherwise @gp2@
restoreDBInstanceFromS3_storageType :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_storageType :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_storageType = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
storageType :: Maybe Text
$sel:storageType:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
storageType} -> Maybe Text
storageType) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:storageType:RestoreDBInstanceFromS3' :: Maybe Text
storageType = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | The list of logs that the restored DB instance is to export to
-- CloudWatch Logs. The values in the list depend on the DB engine being
-- used. For more information, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch Publishing Database Logs to Amazon CloudWatch Logs>
-- in the /Amazon RDS User Guide/.
restoreDBInstanceFromS3_enableCloudwatchLogsExports :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe [Prelude.Text])
restoreDBInstanceFromS3_enableCloudwatchLogsExports :: (Maybe [Text] -> f (Maybe [Text]))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_enableCloudwatchLogsExports = (RestoreDBInstanceFromS3 -> Maybe [Text])
-> (RestoreDBInstanceFromS3
    -> Maybe [Text] -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe [Text])
     (Maybe [Text])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe [Text]
enableCloudwatchLogsExports :: Maybe [Text]
$sel:enableCloudwatchLogsExports:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe [Text]
enableCloudwatchLogsExports} -> Maybe [Text]
enableCloudwatchLogsExports) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe [Text]
a -> RestoreDBInstanceFromS3
s {$sel:enableCloudwatchLogsExports:RestoreDBInstanceFromS3' :: Maybe [Text]
enableCloudwatchLogsExports = Maybe [Text]
a} :: RestoreDBInstanceFromS3) ((Maybe [Text] -> f (Maybe [Text]))
 -> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3)
-> ((Maybe [Text] -> f (Maybe [Text]))
    -> Maybe [Text] -> f (Maybe [Text]))
-> (Maybe [Text] -> f (Maybe [Text]))
-> RestoreDBInstanceFromS3
-> f RestoreDBInstanceFromS3
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso [Text] [Text] [Text] [Text]
-> Iso (Maybe [Text]) (Maybe [Text]) (Maybe [Text]) (Maybe [Text])
forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping AnIso [Text] [Text] [Text] [Text]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | The name of the database to create when the DB instance is created.
-- Follow the naming rules specified in @CreateDBInstance@.
restoreDBInstanceFromS3_dbName :: Lens.Lens' RestoreDBInstanceFromS3 (Prelude.Maybe Prelude.Text)
restoreDBInstanceFromS3_dbName :: (Maybe Text -> f (Maybe Text))
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_dbName = (RestoreDBInstanceFromS3 -> Maybe Text)
-> (RestoreDBInstanceFromS3
    -> Maybe Text -> RestoreDBInstanceFromS3)
-> Lens
     RestoreDBInstanceFromS3
     RestoreDBInstanceFromS3
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Maybe Text
dbName :: Maybe Text
$sel:dbName:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
dbName} -> Maybe Text
dbName) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Maybe Text
a -> RestoreDBInstanceFromS3
s {$sel:dbName:RestoreDBInstanceFromS3' :: Maybe Text
dbName = Maybe Text
a} :: RestoreDBInstanceFromS3)

-- | The DB instance identifier. This parameter is stored as a lowercase
-- string.
--
-- Constraints:
--
-- -   Must contain from 1 to 63 letters, numbers, or hyphens.
--
-- -   First character must be a letter.
--
-- -   Can\'t end with a hyphen or contain two consecutive hyphens.
--
-- Example: @mydbinstance@
restoreDBInstanceFromS3_dbInstanceIdentifier :: Lens.Lens' RestoreDBInstanceFromS3 Prelude.Text
restoreDBInstanceFromS3_dbInstanceIdentifier :: (Text -> f Text)
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_dbInstanceIdentifier = (RestoreDBInstanceFromS3 -> Text)
-> (RestoreDBInstanceFromS3 -> Text -> RestoreDBInstanceFromS3)
-> Lens RestoreDBInstanceFromS3 RestoreDBInstanceFromS3 Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Text
dbInstanceIdentifier :: Text
$sel:dbInstanceIdentifier:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Text
dbInstanceIdentifier} -> Text
dbInstanceIdentifier) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Text
a -> RestoreDBInstanceFromS3
s {$sel:dbInstanceIdentifier:RestoreDBInstanceFromS3' :: Text
dbInstanceIdentifier = Text
a} :: RestoreDBInstanceFromS3)

-- | The compute and memory capacity of the DB instance, for example,
-- @db.m4.large@. Not all DB instance classes are available in all Amazon
-- Web Services Regions, or for all database engines. For the full list of
-- DB instance classes, and availability for your engine, see
-- <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html DB Instance Class>
-- in the /Amazon RDS User Guide./
--
-- Importing from Amazon S3 isn\'t supported on the db.t2.micro DB instance
-- class.
restoreDBInstanceFromS3_dbInstanceClass :: Lens.Lens' RestoreDBInstanceFromS3 Prelude.Text
restoreDBInstanceFromS3_dbInstanceClass :: (Text -> f Text)
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_dbInstanceClass = (RestoreDBInstanceFromS3 -> Text)
-> (RestoreDBInstanceFromS3 -> Text -> RestoreDBInstanceFromS3)
-> Lens RestoreDBInstanceFromS3 RestoreDBInstanceFromS3 Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Text
dbInstanceClass :: Text
$sel:dbInstanceClass:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Text
dbInstanceClass} -> Text
dbInstanceClass) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Text
a -> RestoreDBInstanceFromS3
s {$sel:dbInstanceClass:RestoreDBInstanceFromS3' :: Text
dbInstanceClass = Text
a} :: RestoreDBInstanceFromS3)

-- | The name of the database engine to be used for this instance.
--
-- Valid Values: @mysql@
restoreDBInstanceFromS3_engine :: Lens.Lens' RestoreDBInstanceFromS3 Prelude.Text
restoreDBInstanceFromS3_engine :: (Text -> f Text)
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_engine = (RestoreDBInstanceFromS3 -> Text)
-> (RestoreDBInstanceFromS3 -> Text -> RestoreDBInstanceFromS3)
-> Lens RestoreDBInstanceFromS3 RestoreDBInstanceFromS3 Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Text
engine :: Text
$sel:engine:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Text
engine} -> Text
engine) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Text
a -> RestoreDBInstanceFromS3
s {$sel:engine:RestoreDBInstanceFromS3' :: Text
engine = Text
a} :: RestoreDBInstanceFromS3)

-- | The name of the engine of your source database.
--
-- Valid Values: @mysql@
restoreDBInstanceFromS3_sourceEngine :: Lens.Lens' RestoreDBInstanceFromS3 Prelude.Text
restoreDBInstanceFromS3_sourceEngine :: (Text -> f Text)
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_sourceEngine = (RestoreDBInstanceFromS3 -> Text)
-> (RestoreDBInstanceFromS3 -> Text -> RestoreDBInstanceFromS3)
-> Lens RestoreDBInstanceFromS3 RestoreDBInstanceFromS3 Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Text
sourceEngine :: Text
$sel:sourceEngine:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Text
sourceEngine} -> Text
sourceEngine) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Text
a -> RestoreDBInstanceFromS3
s {$sel:sourceEngine:RestoreDBInstanceFromS3' :: Text
sourceEngine = Text
a} :: RestoreDBInstanceFromS3)

-- | The version of the database that the backup files were created from.
--
-- MySQL versions 5.6 and 5.7 are supported.
--
-- Example: @5.6.40@
restoreDBInstanceFromS3_sourceEngineVersion :: Lens.Lens' RestoreDBInstanceFromS3 Prelude.Text
restoreDBInstanceFromS3_sourceEngineVersion :: (Text -> f Text)
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_sourceEngineVersion = (RestoreDBInstanceFromS3 -> Text)
-> (RestoreDBInstanceFromS3 -> Text -> RestoreDBInstanceFromS3)
-> Lens RestoreDBInstanceFromS3 RestoreDBInstanceFromS3 Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Text
sourceEngineVersion :: Text
$sel:sourceEngineVersion:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Text
sourceEngineVersion} -> Text
sourceEngineVersion) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Text
a -> RestoreDBInstanceFromS3
s {$sel:sourceEngineVersion:RestoreDBInstanceFromS3' :: Text
sourceEngineVersion = Text
a} :: RestoreDBInstanceFromS3)

-- | The name of your Amazon S3 bucket that contains your database backup
-- file.
restoreDBInstanceFromS3_s3BucketName :: Lens.Lens' RestoreDBInstanceFromS3 Prelude.Text
restoreDBInstanceFromS3_s3BucketName :: (Text -> f Text)
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_s3BucketName = (RestoreDBInstanceFromS3 -> Text)
-> (RestoreDBInstanceFromS3 -> Text -> RestoreDBInstanceFromS3)
-> Lens RestoreDBInstanceFromS3 RestoreDBInstanceFromS3 Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Text
s3BucketName :: Text
$sel:s3BucketName:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Text
s3BucketName} -> Text
s3BucketName) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Text
a -> RestoreDBInstanceFromS3
s {$sel:s3BucketName:RestoreDBInstanceFromS3' :: Text
s3BucketName = Text
a} :: RestoreDBInstanceFromS3)

-- | An Amazon Web Services Identity and Access Management (IAM) role to
-- allow Amazon RDS to access your Amazon S3 bucket.
restoreDBInstanceFromS3_s3IngestionRoleArn :: Lens.Lens' RestoreDBInstanceFromS3 Prelude.Text
restoreDBInstanceFromS3_s3IngestionRoleArn :: (Text -> f Text)
-> RestoreDBInstanceFromS3 -> f RestoreDBInstanceFromS3
restoreDBInstanceFromS3_s3IngestionRoleArn = (RestoreDBInstanceFromS3 -> Text)
-> (RestoreDBInstanceFromS3 -> Text -> RestoreDBInstanceFromS3)
-> Lens RestoreDBInstanceFromS3 RestoreDBInstanceFromS3 Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3' {Text
s3IngestionRoleArn :: Text
$sel:s3IngestionRoleArn:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Text
s3IngestionRoleArn} -> Text
s3IngestionRoleArn) (\s :: RestoreDBInstanceFromS3
s@RestoreDBInstanceFromS3' {} Text
a -> RestoreDBInstanceFromS3
s {$sel:s3IngestionRoleArn:RestoreDBInstanceFromS3' :: Text
s3IngestionRoleArn = Text
a} :: RestoreDBInstanceFromS3)

instance Core.AWSRequest RestoreDBInstanceFromS3 where
  type
    AWSResponse RestoreDBInstanceFromS3 =
      RestoreDBInstanceFromS3Response
  request :: RestoreDBInstanceFromS3 -> Request RestoreDBInstanceFromS3
request = Service
-> RestoreDBInstanceFromS3 -> Request RestoreDBInstanceFromS3
forall a. ToRequest a => Service -> a -> Request a
Request.postQuery Service
defaultService
  response :: Logger
-> Service
-> Proxy RestoreDBInstanceFromS3
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse RestoreDBInstanceFromS3)))
response =
    Text
-> (Int
    -> ResponseHeaders
    -> [Node]
    -> Either String (AWSResponse RestoreDBInstanceFromS3))
-> Logger
-> Service
-> Proxy RestoreDBInstanceFromS3
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse RestoreDBInstanceFromS3)))
forall (m :: * -> *) a.
MonadResource m =>
Text
-> (Int
    -> ResponseHeaders -> [Node] -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveXMLWrapper
      Text
"RestoreDBInstanceFromS3Result"
      ( \Int
s ResponseHeaders
h [Node]
x ->
          Maybe DBInstance -> Int -> RestoreDBInstanceFromS3Response
RestoreDBInstanceFromS3Response'
            (Maybe DBInstance -> Int -> RestoreDBInstanceFromS3Response)
-> Either String (Maybe DBInstance)
-> Either String (Int -> RestoreDBInstanceFromS3Response)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> ([Node]
x [Node] -> Text -> Either String (Maybe DBInstance)
forall a. FromXML a => [Node] -> Text -> Either String (Maybe a)
Core..@? Text
"DBInstance")
            Either String (Int -> RestoreDBInstanceFromS3Response)
-> Either String Int
-> Either String RestoreDBInstanceFromS3Response
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Int -> Either String Int
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (Int -> Int
forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
      )

instance Prelude.Hashable RestoreDBInstanceFromS3

instance Prelude.NFData RestoreDBInstanceFromS3

instance Core.ToHeaders RestoreDBInstanceFromS3 where
  toHeaders :: RestoreDBInstanceFromS3 -> ResponseHeaders
toHeaders = ResponseHeaders -> RestoreDBInstanceFromS3 -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty

instance Core.ToPath RestoreDBInstanceFromS3 where
  toPath :: RestoreDBInstanceFromS3 -> ByteString
toPath = ByteString -> RestoreDBInstanceFromS3 -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"

instance Core.ToQuery RestoreDBInstanceFromS3 where
  toQuery :: RestoreDBInstanceFromS3 -> QueryString
toQuery RestoreDBInstanceFromS3' {Maybe Bool
Maybe Int
Maybe [Text]
Maybe [ProcessorFeature]
Maybe [Tag]
Maybe Text
Text
s3IngestionRoleArn :: Text
s3BucketName :: Text
sourceEngineVersion :: Text
sourceEngine :: Text
engine :: Text
dbInstanceClass :: Text
dbInstanceIdentifier :: Text
dbName :: Maybe Text
enableCloudwatchLogsExports :: Maybe [Text]
storageType :: Maybe Text
useDefaultProcessorFeatures :: Maybe Bool
enableIAMDatabaseAuthentication :: Maybe Bool
port :: Maybe Int
tags :: Maybe [Tag]
copyTagsToSnapshot :: Maybe Bool
optionGroupName :: Maybe Text
allocatedStorage :: Maybe Int
s3Prefix :: Maybe Text
multiAZ :: Maybe Bool
vpcSecurityGroupIds :: Maybe [Text]
performanceInsightsKMSKeyId :: Maybe Text
backupRetentionPeriod :: Maybe Int
availabilityZone :: Maybe Text
preferredBackupWindow :: Maybe Text
dbParameterGroupName :: Maybe Text
kmsKeyId :: Maybe Text
enablePerformanceInsights :: Maybe Bool
maxAllocatedStorage :: Maybe Int
performanceInsightsRetentionPeriod :: Maybe Int
preferredMaintenanceWindow :: Maybe Text
licenseModel :: Maybe Text
processorFeatures :: Maybe [ProcessorFeature]
monitoringInterval :: Maybe Int
iops :: Maybe Int
monitoringRoleArn :: Maybe Text
dbSubnetGroupName :: Maybe Text
masterUsername :: Maybe Text
autoMinorVersionUpgrade :: Maybe Bool
publiclyAccessible :: Maybe Bool
masterUserPassword :: Maybe Text
storageEncrypted :: Maybe Bool
deletionProtection :: Maybe Bool
dbSecurityGroups :: Maybe [Text]
engineVersion :: Maybe Text
$sel:s3IngestionRoleArn:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Text
$sel:s3BucketName:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Text
$sel:sourceEngineVersion:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Text
$sel:sourceEngine:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Text
$sel:engine:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Text
$sel:dbInstanceClass:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Text
$sel:dbInstanceIdentifier:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Text
$sel:dbName:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:enableCloudwatchLogsExports:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe [Text]
$sel:storageType:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:useDefaultProcessorFeatures:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
$sel:enableIAMDatabaseAuthentication:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
$sel:port:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Int
$sel:tags:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe [Tag]
$sel:copyTagsToSnapshot:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
$sel:optionGroupName:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:allocatedStorage:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Int
$sel:s3Prefix:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:multiAZ:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
$sel:vpcSecurityGroupIds:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe [Text]
$sel:performanceInsightsKMSKeyId:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:backupRetentionPeriod:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Int
$sel:availabilityZone:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:preferredBackupWindow:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:dbParameterGroupName:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:kmsKeyId:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:enablePerformanceInsights:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
$sel:maxAllocatedStorage:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Int
$sel:performanceInsightsRetentionPeriod:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Int
$sel:preferredMaintenanceWindow:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:licenseModel:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:processorFeatures:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe [ProcessorFeature]
$sel:monitoringInterval:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Int
$sel:iops:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Int
$sel:monitoringRoleArn:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:dbSubnetGroupName:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:masterUsername:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:autoMinorVersionUpgrade:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
$sel:publiclyAccessible:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
$sel:masterUserPassword:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
$sel:storageEncrypted:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
$sel:deletionProtection:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Bool
$sel:dbSecurityGroups:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe [Text]
$sel:engineVersion:RestoreDBInstanceFromS3' :: RestoreDBInstanceFromS3 -> Maybe Text
..} =
    [QueryString] -> QueryString
forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ ByteString
"Action"
          ByteString -> ByteString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: (ByteString
"RestoreDBInstanceFromS3" :: Prelude.ByteString),
        ByteString
"Version"
          ByteString -> ByteString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: (ByteString
"2014-10-31" :: Prelude.ByteString),
        ByteString
"EngineVersion" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
engineVersion,
        ByteString
"DBSecurityGroups"
          ByteString -> QueryString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe QueryString -> QueryString
forall a. ToQuery a => a -> QueryString
Core.toQuery
            ( ByteString -> [Text] -> QueryString
forall a.
(IsList a, ToQuery (Item a)) =>
ByteString -> a -> QueryString
Core.toQueryList ByteString
"DBSecurityGroupName"
                ([Text] -> QueryString) -> Maybe [Text] -> Maybe QueryString
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Text]
dbSecurityGroups
            ),
        ByteString
"DeletionProtection" ByteString -> Maybe Bool -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Bool
deletionProtection,
        ByteString
"StorageEncrypted" ByteString -> Maybe Bool -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Bool
storageEncrypted,
        ByteString
"MasterUserPassword" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
masterUserPassword,
        ByteString
"PubliclyAccessible" ByteString -> Maybe Bool -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Bool
publiclyAccessible,
        ByteString
"AutoMinorVersionUpgrade"
          ByteString -> Maybe Bool -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Bool
autoMinorVersionUpgrade,
        ByteString
"MasterUsername" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
masterUsername,
        ByteString
"DBSubnetGroupName" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
dbSubnetGroupName,
        ByteString
"MonitoringRoleArn" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
monitoringRoleArn,
        ByteString
"Iops" ByteString -> Maybe Int -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Int
iops,
        ByteString
"MonitoringInterval" ByteString -> Maybe Int -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Int
monitoringInterval,
        ByteString
"ProcessorFeatures"
          ByteString -> QueryString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe QueryString -> QueryString
forall a. ToQuery a => a -> QueryString
Core.toQuery
            ( ByteString -> [ProcessorFeature] -> QueryString
forall a.
(IsList a, ToQuery (Item a)) =>
ByteString -> a -> QueryString
Core.toQueryList ByteString
"ProcessorFeature"
                ([ProcessorFeature] -> QueryString)
-> Maybe [ProcessorFeature] -> Maybe QueryString
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ProcessorFeature]
processorFeatures
            ),
        ByteString
"LicenseModel" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
licenseModel,
        ByteString
"PreferredMaintenanceWindow"
          ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
preferredMaintenanceWindow,
        ByteString
"PerformanceInsightsRetentionPeriod"
          ByteString -> Maybe Int -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Int
performanceInsightsRetentionPeriod,
        ByteString
"MaxAllocatedStorage" ByteString -> Maybe Int -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Int
maxAllocatedStorage,
        ByteString
"EnablePerformanceInsights"
          ByteString -> Maybe Bool -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Bool
enablePerformanceInsights,
        ByteString
"KmsKeyId" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
kmsKeyId,
        ByteString
"DBParameterGroupName" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
dbParameterGroupName,
        ByteString
"PreferredBackupWindow"
          ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
preferredBackupWindow,
        ByteString
"AvailabilityZone" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
availabilityZone,
        ByteString
"BackupRetentionPeriod"
          ByteString -> Maybe Int -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Int
backupRetentionPeriod,
        ByteString
"PerformanceInsightsKMSKeyId"
          ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
performanceInsightsKMSKeyId,
        ByteString
"VpcSecurityGroupIds"
          ByteString -> QueryString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe QueryString -> QueryString
forall a. ToQuery a => a -> QueryString
Core.toQuery
            ( ByteString -> [Text] -> QueryString
forall a.
(IsList a, ToQuery (Item a)) =>
ByteString -> a -> QueryString
Core.toQueryList ByteString
"VpcSecurityGroupId"
                ([Text] -> QueryString) -> Maybe [Text] -> Maybe QueryString
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Text]
vpcSecurityGroupIds
            ),
        ByteString
"MultiAZ" ByteString -> Maybe Bool -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Bool
multiAZ,
        ByteString
"S3Prefix" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
s3Prefix,
        ByteString
"AllocatedStorage" ByteString -> Maybe Int -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Int
allocatedStorage,
        ByteString
"OptionGroupName" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
optionGroupName,
        ByteString
"CopyTagsToSnapshot" ByteString -> Maybe Bool -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Bool
copyTagsToSnapshot,
        ByteString
"Tags"
          ByteString -> QueryString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe QueryString -> QueryString
forall a. ToQuery a => a -> QueryString
Core.toQuery
            (ByteString -> [Tag] -> QueryString
forall a.
(IsList a, ToQuery (Item a)) =>
ByteString -> a -> QueryString
Core.toQueryList ByteString
"Tag" ([Tag] -> QueryString) -> Maybe [Tag] -> Maybe QueryString
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags),
        ByteString
"Port" ByteString -> Maybe Int -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Int
port,
        ByteString
"EnableIAMDatabaseAuthentication"
          ByteString -> Maybe Bool -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Bool
enableIAMDatabaseAuthentication,
        ByteString
"UseDefaultProcessorFeatures"
          ByteString -> Maybe Bool -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Bool
useDefaultProcessorFeatures,
        ByteString
"StorageType" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
storageType,
        ByteString
"EnableCloudwatchLogsExports"
          ByteString -> QueryString -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe QueryString -> QueryString
forall a. ToQuery a => a -> QueryString
Core.toQuery
            ( ByteString -> [Text] -> QueryString
forall a.
(IsList a, ToQuery (Item a)) =>
ByteString -> a -> QueryString
Core.toQueryList ByteString
"member"
                ([Text] -> QueryString) -> Maybe [Text] -> Maybe QueryString
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Text]
enableCloudwatchLogsExports
            ),
        ByteString
"DBName" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
dbName,
        ByteString
"DBInstanceIdentifier" ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
dbInstanceIdentifier,
        ByteString
"DBInstanceClass" ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
dbInstanceClass,
        ByteString
"Engine" ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
engine,
        ByteString
"SourceEngine" ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
sourceEngine,
        ByteString
"SourceEngineVersion" ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
sourceEngineVersion,
        ByteString
"S3BucketName" ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
s3BucketName,
        ByteString
"S3IngestionRoleArn" ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
s3IngestionRoleArn
      ]

-- | /See:/ 'newRestoreDBInstanceFromS3Response' smart constructor.
data RestoreDBInstanceFromS3Response = RestoreDBInstanceFromS3Response'
  { RestoreDBInstanceFromS3Response -> Maybe DBInstance
dbInstance :: Prelude.Maybe DBInstance,
    -- | The response's http status code.
    RestoreDBInstanceFromS3Response -> Int
httpStatus :: Prelude.Int
  }
  deriving (RestoreDBInstanceFromS3Response
-> RestoreDBInstanceFromS3Response -> Bool
(RestoreDBInstanceFromS3Response
 -> RestoreDBInstanceFromS3Response -> Bool)
-> (RestoreDBInstanceFromS3Response
    -> RestoreDBInstanceFromS3Response -> Bool)
-> Eq RestoreDBInstanceFromS3Response
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: RestoreDBInstanceFromS3Response
-> RestoreDBInstanceFromS3Response -> Bool
$c/= :: RestoreDBInstanceFromS3Response
-> RestoreDBInstanceFromS3Response -> Bool
== :: RestoreDBInstanceFromS3Response
-> RestoreDBInstanceFromS3Response -> Bool
$c== :: RestoreDBInstanceFromS3Response
-> RestoreDBInstanceFromS3Response -> Bool
Prelude.Eq, ReadPrec [RestoreDBInstanceFromS3Response]
ReadPrec RestoreDBInstanceFromS3Response
Int -> ReadS RestoreDBInstanceFromS3Response
ReadS [RestoreDBInstanceFromS3Response]
(Int -> ReadS RestoreDBInstanceFromS3Response)
-> ReadS [RestoreDBInstanceFromS3Response]
-> ReadPrec RestoreDBInstanceFromS3Response
-> ReadPrec [RestoreDBInstanceFromS3Response]
-> Read RestoreDBInstanceFromS3Response
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [RestoreDBInstanceFromS3Response]
$creadListPrec :: ReadPrec [RestoreDBInstanceFromS3Response]
readPrec :: ReadPrec RestoreDBInstanceFromS3Response
$creadPrec :: ReadPrec RestoreDBInstanceFromS3Response
readList :: ReadS [RestoreDBInstanceFromS3Response]
$creadList :: ReadS [RestoreDBInstanceFromS3Response]
readsPrec :: Int -> ReadS RestoreDBInstanceFromS3Response
$creadsPrec :: Int -> ReadS RestoreDBInstanceFromS3Response
Prelude.Read, Int -> RestoreDBInstanceFromS3Response -> ShowS
[RestoreDBInstanceFromS3Response] -> ShowS
RestoreDBInstanceFromS3Response -> String
(Int -> RestoreDBInstanceFromS3Response -> ShowS)
-> (RestoreDBInstanceFromS3Response -> String)
-> ([RestoreDBInstanceFromS3Response] -> ShowS)
-> Show RestoreDBInstanceFromS3Response
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [RestoreDBInstanceFromS3Response] -> ShowS
$cshowList :: [RestoreDBInstanceFromS3Response] -> ShowS
show :: RestoreDBInstanceFromS3Response -> String
$cshow :: RestoreDBInstanceFromS3Response -> String
showsPrec :: Int -> RestoreDBInstanceFromS3Response -> ShowS
$cshowsPrec :: Int -> RestoreDBInstanceFromS3Response -> ShowS
Prelude.Show, (forall x.
 RestoreDBInstanceFromS3Response
 -> Rep RestoreDBInstanceFromS3Response x)
-> (forall x.
    Rep RestoreDBInstanceFromS3Response x
    -> RestoreDBInstanceFromS3Response)
-> Generic RestoreDBInstanceFromS3Response
forall x.
Rep RestoreDBInstanceFromS3Response x
-> RestoreDBInstanceFromS3Response
forall x.
RestoreDBInstanceFromS3Response
-> Rep RestoreDBInstanceFromS3Response x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep RestoreDBInstanceFromS3Response x
-> RestoreDBInstanceFromS3Response
$cfrom :: forall x.
RestoreDBInstanceFromS3Response
-> Rep RestoreDBInstanceFromS3Response x
Prelude.Generic)

-- |
-- Create a value of 'RestoreDBInstanceFromS3Response' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'dbInstance', 'restoreDBInstanceFromS3Response_dbInstance' - Undocumented member.
--
-- 'httpStatus', 'restoreDBInstanceFromS3Response_httpStatus' - The response's http status code.
newRestoreDBInstanceFromS3Response ::
  -- | 'httpStatus'
  Prelude.Int ->
  RestoreDBInstanceFromS3Response
newRestoreDBInstanceFromS3Response :: Int -> RestoreDBInstanceFromS3Response
newRestoreDBInstanceFromS3Response Int
pHttpStatus_ =
  RestoreDBInstanceFromS3Response' :: Maybe DBInstance -> Int -> RestoreDBInstanceFromS3Response
RestoreDBInstanceFromS3Response'
    { $sel:dbInstance:RestoreDBInstanceFromS3Response' :: Maybe DBInstance
dbInstance =
        Maybe DBInstance
forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:RestoreDBInstanceFromS3Response' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | Undocumented member.
restoreDBInstanceFromS3Response_dbInstance :: Lens.Lens' RestoreDBInstanceFromS3Response (Prelude.Maybe DBInstance)
restoreDBInstanceFromS3Response_dbInstance :: (Maybe DBInstance -> f (Maybe DBInstance))
-> RestoreDBInstanceFromS3Response
-> f RestoreDBInstanceFromS3Response
restoreDBInstanceFromS3Response_dbInstance = (RestoreDBInstanceFromS3Response -> Maybe DBInstance)
-> (RestoreDBInstanceFromS3Response
    -> Maybe DBInstance -> RestoreDBInstanceFromS3Response)
-> Lens
     RestoreDBInstanceFromS3Response
     RestoreDBInstanceFromS3Response
     (Maybe DBInstance)
     (Maybe DBInstance)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3Response' {Maybe DBInstance
dbInstance :: Maybe DBInstance
$sel:dbInstance:RestoreDBInstanceFromS3Response' :: RestoreDBInstanceFromS3Response -> Maybe DBInstance
dbInstance} -> Maybe DBInstance
dbInstance) (\s :: RestoreDBInstanceFromS3Response
s@RestoreDBInstanceFromS3Response' {} Maybe DBInstance
a -> RestoreDBInstanceFromS3Response
s {$sel:dbInstance:RestoreDBInstanceFromS3Response' :: Maybe DBInstance
dbInstance = Maybe DBInstance
a} :: RestoreDBInstanceFromS3Response)

-- | The response's http status code.
restoreDBInstanceFromS3Response_httpStatus :: Lens.Lens' RestoreDBInstanceFromS3Response Prelude.Int
restoreDBInstanceFromS3Response_httpStatus :: (Int -> f Int)
-> RestoreDBInstanceFromS3Response
-> f RestoreDBInstanceFromS3Response
restoreDBInstanceFromS3Response_httpStatus = (RestoreDBInstanceFromS3Response -> Int)
-> (RestoreDBInstanceFromS3Response
    -> Int -> RestoreDBInstanceFromS3Response)
-> Lens
     RestoreDBInstanceFromS3Response
     RestoreDBInstanceFromS3Response
     Int
     Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\RestoreDBInstanceFromS3Response' {Int
httpStatus :: Int
$sel:httpStatus:RestoreDBInstanceFromS3Response' :: RestoreDBInstanceFromS3Response -> Int
httpStatus} -> Int
httpStatus) (\s :: RestoreDBInstanceFromS3Response
s@RestoreDBInstanceFromS3Response' {} Int
a -> RestoreDBInstanceFromS3Response
s {$sel:httpStatus:RestoreDBInstanceFromS3Response' :: Int
httpStatus = Int
a} :: RestoreDBInstanceFromS3Response)

instance
  Prelude.NFData
    RestoreDBInstanceFromS3Response