diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -8,24 +8,27 @@
 
 ## Version
 
-`1.4.4`
+`1.4.5`
 
 
 ## Description
 
-Pending
-
 Documentation is available via [Hackage](http://hackage.haskell.org/package/amazonka-route53-domains)
 and the [AWS API Reference](https://aws.amazon.com/documentation/).
 
 The types from this library are intended to be used with [amazonka](http://hackage.haskell.org/package/amazonka),
-which provides mechanisms for specifying AuthN/AuthZ information and sending requests.
+which provides mechanisms for specifying AuthN/AuthZ information, sending requests,
+and receiving responses.
 
-Use of lenses is required for constructing and manipulating types.
-This is due to the amount of nesting of AWS types and transparency regarding
+Lenses are used for constructing and manipulating types,
+due to the depth of nesting of AWS types and transparency regarding
 de/serialisation into more palatable Haskell values.
 The provided lenses should be compatible with any of the major lens libraries
 [lens](http://hackage.haskell.org/package/lens) or [lens-family-core](http://hackage.haskell.org/package/lens-family-core).
+
+See [Network.AWS.Route53Domains](http://hackage.haskell.org/package/amazonka-route53-domains/docs/Network-AWS-Route53Domains.html)
+or [the AWS documentation](https://aws.amazon.com/documentation/) to get started.
+
 
 ## Contribute
 
diff --git a/amazonka-route53-domains.cabal b/amazonka-route53-domains.cabal
--- a/amazonka-route53-domains.cabal
+++ b/amazonka-route53-domains.cabal
@@ -1,5 +1,5 @@
 name:                  amazonka-route53-domains
-version:               1.4.4
+version:               1.4.5
 synopsis:              Amazon Route 53 Domains SDK.
 homepage:              https://github.com/brendanhay/amazonka
 bug-reports:           https://github.com/brendanhay/amazonka/issues
@@ -13,20 +13,19 @@
 cabal-version:         >= 1.10
 extra-source-files:    README.md fixture/*.yaml fixture/*.proto src/.gitkeep
 description:
-    Pending
-    .
     The types from this library are intended to be used with
     <http://hackage.haskell.org/package/amazonka amazonka>, which provides
-    mechanisms for specifying AuthN/AuthZ information and sending requests.
+    mechanisms for specifying AuthN/AuthZ information, sending requests,
+    and receiving responses.
     .
-    Use of lenses is required for constructing and manipulating types.
-    This is due to the amount of nesting of AWS types and transparency regarding
+    Lenses are used for constructing and manipulating types,
+    due to the depth of nesting of AWS types and transparency regarding
     de/serialisation into more palatable Haskell values.
     The provided lenses should be compatible with any of the major lens libraries
     such as <http://hackage.haskell.org/package/lens lens> or
     <http://hackage.haskell.org/package/lens-family-core lens-family-core>.
     .
-    See "Network.AWS.Route53Domains" or <https://aws.amazon.com/documentation/ the AWS Documentation>
+    See "Network.AWS.Route53Domains" or <https://aws.amazon.com/documentation/ the AWS documentation>
     to get started.
 
 source-repository head
@@ -72,7 +71,7 @@
         , Network.AWS.Route53Domains.Types.Sum
 
     build-depends:
-          amazonka-core == 1.4.4.*
+          amazonka-core == 1.4.5.*
         , base          >= 4.7     && < 5
 
 test-suite amazonka-route53-domains-test
@@ -92,9 +91,9 @@
         , Test.AWS.Route53Domains.Internal
 
     build-depends:
-          amazonka-core == 1.4.4.*
-        , amazonka-test == 1.4.4.*
-        , amazonka-route53-domains == 1.4.4.*
+          amazonka-core == 1.4.5.*
+        , amazonka-test == 1.4.5.*
+        , amazonka-route53-domains == 1.4.5.*
         , base
         , bytestring
         , tasty
diff --git a/gen/Network/AWS/Route53Domains/CheckDomainAvailability.hs b/gen/Network/AWS/Route53Domains/CheckDomainAvailability.hs
--- a/gen/Network/AWS/Route53Domains/CheckDomainAvailability.hs
+++ b/gen/Network/AWS/Route53Domains/CheckDomainAvailability.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- This operation checks the availability of one domain name. Note that if the availability status of a domain is pending, you must submit another request to determine the availability of the domain name.
+--
+--
 module Network.AWS.Route53Domains.CheckDomainAvailability
     (
     -- * Creating a Request
@@ -45,6 +47,8 @@
 
 -- | The CheckDomainAvailability request contains the following elements.
 --
+--
+--
 -- /See:/ 'checkDomainAvailability' smart constructor.
 data CheckDomainAvailability = CheckDomainAvailability'
     { _cdaIdNLangCode :: !(Maybe Text)
@@ -55,9 +59,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'cdaIdNLangCode'
+-- * 'cdaIdNLangCode' - Reserved for future use.
 --
--- * 'cdaDomainName'
+-- * 'cdaDomainName' - The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 checkDomainAvailability
     :: Text -- ^ 'cdaDomainName'
     -> CheckDomainAvailability
@@ -71,15 +75,7 @@
 cdaIdNLangCode :: Lens' CheckDomainAvailability (Maybe Text)
 cdaIdNLangCode = lens _cdaIdNLangCode (\ s a -> s{_cdaIdNLangCode = a});
 
--- | The name of a domain.
---
--- Type: String
---
--- Default: None
---
--- Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported.
---
--- Required: Yes
+-- | The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 cdaDomainName :: Lens' CheckDomainAvailability Text
 cdaDomainName = lens _cdaDomainName (\ s a -> s{_cdaDomainName = a});
 
@@ -122,6 +118,8 @@
 
 -- | The CheckDomainAvailability response includes the following elements.
 --
+--
+--
 -- /See:/ 'checkDomainAvailabilityResponse' smart constructor.
 data CheckDomainAvailabilityResponse = CheckDomainAvailabilityResponse'
     { _cdarsResponseStatus :: !Int
@@ -132,9 +130,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'cdarsResponseStatus'
+-- * 'cdarsResponseStatus' - -- | The response status code.
 --
--- * 'cdarsAvailability'
+-- * 'cdarsAvailability' - Whether the domain name is available for registering. Type: String Valid values:     * @AVAILABLE@ – The domain name is available.    * @AVAILABLE_RESERVED@ – The domain name is reserved under specific conditions.    * @AVAILABLE_PREORDER@ – The domain name is available and can be preordered.    * @UNAVAILABLE@ – The domain name is not available.    * @UNAVAILABLE_PREMIUM@ – The domain name is not available.    * @UNAVAILABLE_RESTRICTED@ – The domain name is forbidden.    * @RESERVED@ – The domain name has been reserved for another person or organization.    * @DONT_KNOW@ – The TLD registry didn't reply with a definitive answer about whether the domain name is available. Amazon Route 53 can return this response for a variety of reasons, for example, the registry is performing maintenance. Try again later.
 checkDomainAvailabilityResponse
     :: Int -- ^ 'cdarsResponseStatus'
     -> DomainAvailability -- ^ 'cdarsAvailability'
@@ -145,26 +143,11 @@
     , _cdarsAvailability = pAvailability_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 cdarsResponseStatus :: Lens' CheckDomainAvailabilityResponse Int
 cdarsResponseStatus = lens _cdarsResponseStatus (\ s a -> s{_cdarsResponseStatus = a});
 
--- | Whether the domain name is available for registering.
---
--- You can only register domains designated as 'AVAILABLE'.
---
--- Type: String
---
--- Valid values:
---
--- -   'AVAILABLE' – The domain name is available.
--- -   'AVAILABLE_RESERVED' – The domain name is reserved under specific conditions.
--- -   'AVAILABLE_PREORDER' – The domain name is available and can be preordered.
--- -   'UNAVAILABLE' – The domain name is not available.
--- -   'UNAVAILABLE_PREMIUM' – The domain name is not available.
--- -   'UNAVAILABLE_RESTRICTED' – The domain name is forbidden.
--- -   'RESERVED' – The domain name has been reserved for another person or organization.
--- -   'DONT_KNOW' – The TLD registry didn\'t reply with a definitive answer about whether the domain name is available. Amazon Route 53 can return this response for a variety of reasons, for example, the registry is performing maintenance. Try again later.
+-- | Whether the domain name is available for registering. Type: String Valid values:     * @AVAILABLE@ – The domain name is available.    * @AVAILABLE_RESERVED@ – The domain name is reserved under specific conditions.    * @AVAILABLE_PREORDER@ – The domain name is available and can be preordered.    * @UNAVAILABLE@ – The domain name is not available.    * @UNAVAILABLE_PREMIUM@ – The domain name is not available.    * @UNAVAILABLE_RESTRICTED@ – The domain name is forbidden.    * @RESERVED@ – The domain name has been reserved for another person or organization.    * @DONT_KNOW@ – The TLD registry didn't reply with a definitive answer about whether the domain name is available. Amazon Route 53 can return this response for a variety of reasons, for example, the registry is performing maintenance. Try again later.
 cdarsAvailability :: Lens' CheckDomainAvailabilityResponse DomainAvailability
 cdarsAvailability = lens _cdarsAvailability (\ s a -> s{_cdarsAvailability = a});
 
diff --git a/gen/Network/AWS/Route53Domains/DeleteTagsForDomain.hs b/gen/Network/AWS/Route53Domains/DeleteTagsForDomain.hs
--- a/gen/Network/AWS/Route53Domains/DeleteTagsForDomain.hs
+++ b/gen/Network/AWS/Route53Domains/DeleteTagsForDomain.hs
@@ -20,7 +20,9 @@
 --
 -- This operation deletes the specified tags for a domain.
 --
+--
 -- All tag operations are eventually consistent; subsequent operations may not immediately represent all issued operations.
+--
 module Network.AWS.Route53Domains.DeleteTagsForDomain
     (
     -- * Creating a Request
@@ -46,6 +48,8 @@
 
 -- | The DeleteTagsForDomainRequest includes the following elements.
 --
+--
+--
 -- /See:/ 'deleteTagsForDomain' smart constructor.
 data DeleteTagsForDomain = DeleteTagsForDomain'
     { _dtfdDomainName   :: !Text
@@ -56,9 +60,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'dtfdDomainName'
+-- * 'dtfdDomainName' - The domain for which you want to delete one or more tags. The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Hyphens are allowed only when they're surrounded by letters, numbers, or other hyphens. You can't specify a hyphen at the beginning or end of a label. To specify an Internationalized Domain Name, you must convert the name to Punycode. Required: Yes
 --
--- * 'dtfdTagsToDelete'
+-- * 'dtfdTagsToDelete' - A list of tag keys to delete. Type: A list that contains the keys of the tags that you want to delete. Default: None Required: No '>
 deleteTagsForDomain
     :: Text -- ^ 'dtfdDomainName'
     -> DeleteTagsForDomain
@@ -68,29 +72,11 @@
     , _dtfdTagsToDelete = mempty
     }
 
--- | The domain for which you want to delete one or more tags.
---
--- The name of a domain.
---
--- Type: String
---
--- Default: None
---
--- Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Hyphens are allowed only when they\'re surrounded by letters, numbers, or other hyphens. You can\'t specify a hyphen at the beginning or end of a label. To specify an Internationalized Domain Name, you must convert the name to Punycode.
---
--- Required: Yes
+-- | The domain for which you want to delete one or more tags. The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Hyphens are allowed only when they're surrounded by letters, numbers, or other hyphens. You can't specify a hyphen at the beginning or end of a label. To specify an Internationalized Domain Name, you must convert the name to Punycode. Required: Yes
 dtfdDomainName :: Lens' DeleteTagsForDomain Text
 dtfdDomainName = lens _dtfdDomainName (\ s a -> s{_dtfdDomainName = a});
 
--- | A list of tag keys to delete.
---
--- Type: A list that contains the keys of the tags that you want to delete.
---
--- Default: None
---
--- Required: No
---
--- \'>
+-- | A list of tag keys to delete. Type: A list that contains the keys of the tags that you want to delete. Default: None Required: No '>
 dtfdTagsToDelete :: Lens' DeleteTagsForDomain [Text]
 dtfdTagsToDelete = lens _dtfdTagsToDelete (\ s a -> s{_dtfdTagsToDelete = a}) . _Coerce;
 
@@ -139,7 +125,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'dtfdrsResponseStatus'
+-- * 'dtfdrsResponseStatus' - -- | The response status code.
 deleteTagsForDomainResponse
     :: Int -- ^ 'dtfdrsResponseStatus'
     -> DeleteTagsForDomainResponse
@@ -148,7 +134,7 @@
     { _dtfdrsResponseStatus = pResponseStatus_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 dtfdrsResponseStatus :: Lens' DeleteTagsForDomainResponse Int
 dtfdrsResponseStatus = lens _dtfdrsResponseStatus (\ s a -> s{_dtfdrsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Route53Domains/DisableDomainAutoRenew.hs b/gen/Network/AWS/Route53Domains/DisableDomainAutoRenew.hs
--- a/gen/Network/AWS/Route53Domains/DisableDomainAutoRenew.hs
+++ b/gen/Network/AWS/Route53Domains/DisableDomainAutoRenew.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- This operation disables automatic renewal of domain registration for the specified domain.
+--
+--
 module Network.AWS.Route53Domains.DisableDomainAutoRenew
     (
     -- * Creating a Request
@@ -50,7 +52,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'ddarDomainName'
+-- * 'ddarDomainName' - Undocumented member.
 disableDomainAutoRenew
     :: Text -- ^ 'ddarDomainName'
     -> DisableDomainAutoRenew
@@ -107,7 +109,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'ddarrsResponseStatus'
+-- * 'ddarrsResponseStatus' - -- | The response status code.
 disableDomainAutoRenewResponse
     :: Int -- ^ 'ddarrsResponseStatus'
     -> DisableDomainAutoRenewResponse
@@ -116,7 +118,7 @@
     { _ddarrsResponseStatus = pResponseStatus_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 ddarrsResponseStatus :: Lens' DisableDomainAutoRenewResponse Int
 ddarrsResponseStatus = lens _ddarrsResponseStatus (\ s a -> s{_ddarrsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Route53Domains/DisableDomainTransferLock.hs b/gen/Network/AWS/Route53Domains/DisableDomainTransferLock.hs
--- a/gen/Network/AWS/Route53Domains/DisableDomainTransferLock.hs
+++ b/gen/Network/AWS/Route53Domains/DisableDomainTransferLock.hs
@@ -18,7 +18,9 @@
 -- Stability   : auto-generated
 -- Portability : non-portable (GHC extensions)
 --
--- This operation removes the transfer lock on the domain (specifically the 'clientTransferProhibited' status) to allow domain transfers. We recommend you refrain from performing this action unless you intend to transfer the domain to a different registrar. Successful submission returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant will be notified by email.
+-- This operation removes the transfer lock on the domain (specifically the @clientTransferProhibited@ status) to allow domain transfers. We recommend you refrain from performing this action unless you intend to transfer the domain to a different registrar. Successful submission returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant will be notified by email.
+--
+--
 module Network.AWS.Route53Domains.DisableDomainTransferLock
     (
     -- * Creating a Request
@@ -44,6 +46,8 @@
 
 -- | The DisableDomainTransferLock request includes the following element.
 --
+--
+--
 -- /See:/ 'disableDomainTransferLock' smart constructor.
 newtype DisableDomainTransferLock = DisableDomainTransferLock'
     { _ddtlDomainName :: Text
@@ -53,7 +57,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'ddtlDomainName'
+-- * 'ddtlDomainName' - The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 disableDomainTransferLock
     :: Text -- ^ 'ddtlDomainName'
     -> DisableDomainTransferLock
@@ -62,15 +66,7 @@
     { _ddtlDomainName = pDomainName_
     }
 
--- | The name of a domain.
---
--- Type: String
---
--- Default: None
---
--- Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported.
---
--- Required: Yes
+-- | The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 ddtlDomainName :: Lens' DisableDomainTransferLock Text
 ddtlDomainName = lens _ddtlDomainName (\ s a -> s{_ddtlDomainName = a});
 
@@ -111,6 +107,8 @@
 
 -- | The DisableDomainTransferLock response includes the following element.
 --
+--
+--
 -- /See:/ 'disableDomainTransferLockResponse' smart constructor.
 data DisableDomainTransferLockResponse = DisableDomainTransferLockResponse'
     { _ddtlrsResponseStatus :: !Int
@@ -121,9 +119,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'ddtlrsResponseStatus'
+-- * 'ddtlrsResponseStatus' - -- | The response status code.
 --
--- * 'ddtlrsOperationId'
+-- * 'ddtlrsOperationId' - Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail. Type: String Default: None Constraints: Maximum 255 characters.
 disableDomainTransferLockResponse
     :: Int -- ^ 'ddtlrsResponseStatus'
     -> Text -- ^ 'ddtlrsOperationId'
@@ -134,17 +132,11 @@
     , _ddtlrsOperationId = pOperationId_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 ddtlrsResponseStatus :: Lens' DisableDomainTransferLockResponse Int
 ddtlrsResponseStatus = lens _ddtlrsResponseStatus (\ s a -> s{_ddtlrsResponseStatus = a});
 
--- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
+-- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail. Type: String Default: None Constraints: Maximum 255 characters.
 ddtlrsOperationId :: Lens' DisableDomainTransferLockResponse Text
 ddtlrsOperationId = lens _ddtlrsOperationId (\ s a -> s{_ddtlrsOperationId = a});
 
diff --git a/gen/Network/AWS/Route53Domains/EnableDomainAutoRenew.hs b/gen/Network/AWS/Route53Domains/EnableDomainAutoRenew.hs
--- a/gen/Network/AWS/Route53Domains/EnableDomainAutoRenew.hs
+++ b/gen/Network/AWS/Route53Domains/EnableDomainAutoRenew.hs
@@ -20,7 +20,9 @@
 --
 -- This operation configures Amazon Route 53 to automatically renew the specified domain before the domain registration expires. The cost of renewing your domain registration is billed to your AWS account.
 --
--- The period during which you can renew a domain name varies by TLD. For a list of TLDs and their renewal policies, see <http://wiki.gandi.net/en/domains/renew#renewal_restoration_and_deletion_times \"Renewal, restoration, and deletion times\"> on the website for our registrar partner, Gandi. Route 53 requires that you renew before the end of the renewal period that is listed on the Gandi website so we can complete processing before the deadline.
+--
+-- The period during which you can renew a domain name varies by TLD. For a list of TLDs and their renewal policies, see <http://wiki.gandi.net/en/domains/renew#renewal_restoration_and_deletion_times "Renewal, restoration, and deletion times"> on the website for our registrar partner, Gandi. Route 53 requires that you renew before the end of the renewal period that is listed on the Gandi website so we can complete processing before the deadline.
+--
 module Network.AWS.Route53Domains.EnableDomainAutoRenew
     (
     -- * Creating a Request
@@ -52,7 +54,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'edarDomainName'
+-- * 'edarDomainName' - Undocumented member.
 enableDomainAutoRenew
     :: Text -- ^ 'edarDomainName'
     -> EnableDomainAutoRenew
@@ -109,7 +111,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'edarrsResponseStatus'
+-- * 'edarrsResponseStatus' - -- | The response status code.
 enableDomainAutoRenewResponse
     :: Int -- ^ 'edarrsResponseStatus'
     -> EnableDomainAutoRenewResponse
@@ -118,7 +120,7 @@
     { _edarrsResponseStatus = pResponseStatus_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 edarrsResponseStatus :: Lens' EnableDomainAutoRenewResponse Int
 edarrsResponseStatus = lens _edarrsResponseStatus (\ s a -> s{_edarrsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Route53Domains/EnableDomainTransferLock.hs b/gen/Network/AWS/Route53Domains/EnableDomainTransferLock.hs
--- a/gen/Network/AWS/Route53Domains/EnableDomainTransferLock.hs
+++ b/gen/Network/AWS/Route53Domains/EnableDomainTransferLock.hs
@@ -18,7 +18,9 @@
 -- Stability   : auto-generated
 -- Portability : non-portable (GHC extensions)
 --
--- This operation sets the transfer lock on the domain (specifically the 'clientTransferProhibited' status) to prevent domain transfers. Successful submission returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant will be notified by email.
+-- This operation sets the transfer lock on the domain (specifically the @clientTransferProhibited@ status) to prevent domain transfers. Successful submission returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant will be notified by email.
+--
+--
 module Network.AWS.Route53Domains.EnableDomainTransferLock
     (
     -- * Creating a Request
@@ -44,6 +46,8 @@
 
 -- | The EnableDomainTransferLock request includes the following element.
 --
+--
+--
 -- /See:/ 'enableDomainTransferLock' smart constructor.
 newtype EnableDomainTransferLock = EnableDomainTransferLock'
     { _edtlDomainName :: Text
@@ -53,7 +57,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'edtlDomainName'
+-- * 'edtlDomainName' - The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 enableDomainTransferLock
     :: Text -- ^ 'edtlDomainName'
     -> EnableDomainTransferLock
@@ -62,15 +66,7 @@
     { _edtlDomainName = pDomainName_
     }
 
--- | The name of a domain.
---
--- Type: String
---
--- Default: None
---
--- Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported.
---
--- Required: Yes
+-- | The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 edtlDomainName :: Lens' EnableDomainTransferLock Text
 edtlDomainName = lens _edtlDomainName (\ s a -> s{_edtlDomainName = a});
 
@@ -111,6 +107,8 @@
 
 -- | The EnableDomainTransferLock response includes the following elements.
 --
+--
+--
 -- /See:/ 'enableDomainTransferLockResponse' smart constructor.
 data EnableDomainTransferLockResponse = EnableDomainTransferLockResponse'
     { _edtlrsResponseStatus :: !Int
@@ -121,9 +119,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'edtlrsResponseStatus'
+-- * 'edtlrsResponseStatus' - -- | The response status code.
 --
--- * 'edtlrsOperationId'
+-- * 'edtlrsOperationId' - Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail. Type: String Default: None Constraints: Maximum 255 characters.
 enableDomainTransferLockResponse
     :: Int -- ^ 'edtlrsResponseStatus'
     -> Text -- ^ 'edtlrsOperationId'
@@ -134,17 +132,11 @@
     , _edtlrsOperationId = pOperationId_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 edtlrsResponseStatus :: Lens' EnableDomainTransferLockResponse Int
 edtlrsResponseStatus = lens _edtlrsResponseStatus (\ s a -> s{_edtlrsResponseStatus = a});
 
--- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
+-- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail. Type: String Default: None Constraints: Maximum 255 characters.
 edtlrsOperationId :: Lens' EnableDomainTransferLockResponse Text
 edtlrsOperationId = lens _edtlrsOperationId (\ s a -> s{_edtlrsOperationId = a});
 
diff --git a/gen/Network/AWS/Route53Domains/GetContactReachabilityStatus.hs b/gen/Network/AWS/Route53Domains/GetContactReachabilityStatus.hs
--- a/gen/Network/AWS/Route53Domains/GetContactReachabilityStatus.hs
+++ b/gen/Network/AWS/Route53Domains/GetContactReachabilityStatus.hs
@@ -20,7 +20,9 @@
 --
 -- For operations that require confirmation that the email address for the registrant contact is valid, such as registering a new domain, this operation returns information about whether the registrant contact has responded.
 --
--- If you want us to resend the email, use the 'ResendContactReachabilityEmail' operation.
+--
+-- If you want us to resend the email, use the @ResendContactReachabilityEmail@ operation.
+--
 module Network.AWS.Route53Domains.GetContactReachabilityStatus
     (
     -- * Creating a Request
@@ -54,7 +56,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'gcrsDomainName'
+-- * 'gcrsDomainName' - The name of the domain for which you want to know whether the registrant contact has confirmed that the email address is valid. Type: String Default: None Required: Yes
 getContactReachabilityStatus
     :: GetContactReachabilityStatus
 getContactReachabilityStatus =
@@ -62,13 +64,7 @@
     { _gcrsDomainName = Nothing
     }
 
--- | The name of the domain for which you want to know whether the registrant contact has confirmed that the email address is valid.
---
--- Type: String
---
--- Default: None
---
--- Required: Yes
+-- | The name of the domain for which you want to know whether the registrant contact has confirmed that the email address is valid. Type: String Default: None Required: Yes
 gcrsDomainName :: Lens' GetContactReachabilityStatus (Maybe Text)
 gcrsDomainName = lens _gcrsDomainName (\ s a -> s{_gcrsDomainName = a});
 
@@ -120,11 +116,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'gcrsrsStatus'
+-- * 'gcrsrsStatus' - Whether the registrant contact has responded. @PENDING@ indicates that we sent the confirmation email and haven't received a response yet, @DONE@ indicates that we sent the email and got confirmation from the registrant contact, and @EXPIRED@ indicates that the time limit expired before the registrant contact responded.  Type: String Valid values: @PENDING@ , @DONE@ , @EXPIRED@
 --
--- * 'gcrsrsDomainName'
+-- * 'gcrsrsDomainName' - The domain name for which you requested the reachability status.
 --
--- * 'gcrsrsResponseStatus'
+-- * 'gcrsrsResponseStatus' - -- | The response status code.
 getContactReachabilityStatusResponse
     :: Int -- ^ 'gcrsrsResponseStatus'
     -> GetContactReachabilityStatusResponse
@@ -135,11 +131,7 @@
     , _gcrsrsResponseStatus = pResponseStatus_
     }
 
--- | Whether the registrant contact has responded. 'PENDING' indicates that we sent the confirmation email and haven\'t received a response yet, 'DONE' indicates that we sent the email and got confirmation from the registrant contact, and 'EXPIRED' indicates that the time limit expired before the registrant contact responded.
---
--- Type: String
---
--- Valid values: 'PENDING', 'DONE', 'EXPIRED'
+-- | Whether the registrant contact has responded. @PENDING@ indicates that we sent the confirmation email and haven't received a response yet, @DONE@ indicates that we sent the email and got confirmation from the registrant contact, and @EXPIRED@ indicates that the time limit expired before the registrant contact responded.  Type: String Valid values: @PENDING@ , @DONE@ , @EXPIRED@
 gcrsrsStatus :: Lens' GetContactReachabilityStatusResponse (Maybe ReachabilityStatus)
 gcrsrsStatus = lens _gcrsrsStatus (\ s a -> s{_gcrsrsStatus = a});
 
@@ -147,7 +139,7 @@
 gcrsrsDomainName :: Lens' GetContactReachabilityStatusResponse (Maybe Text)
 gcrsrsDomainName = lens _gcrsrsDomainName (\ s a -> s{_gcrsrsDomainName = a});
 
--- | The response status code.
+-- | -- | The response status code.
 gcrsrsResponseStatus :: Lens' GetContactReachabilityStatusResponse Int
 gcrsrsResponseStatus = lens _gcrsrsResponseStatus (\ s a -> s{_gcrsrsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Route53Domains/GetDomainDetail.hs b/gen/Network/AWS/Route53Domains/GetDomainDetail.hs
--- a/gen/Network/AWS/Route53Domains/GetDomainDetail.hs
+++ b/gen/Network/AWS/Route53Domains/GetDomainDetail.hs
@@ -18,7 +18,9 @@
 -- Stability   : auto-generated
 -- Portability : non-portable (GHC extensions)
 --
--- This operation returns detailed information about the domain. The domain\'s contact information is also returned as part of the output.
+-- This operation returns detailed information about the domain. The domain's contact information is also returned as part of the output.
+--
+--
 module Network.AWS.Route53Domains.GetDomainDetail
     (
     -- * Creating a Request
@@ -64,6 +66,8 @@
 
 -- | The GetDomainDetail request includes the following element.
 --
+--
+--
 -- /See:/ 'getDomainDetail' smart constructor.
 newtype GetDomainDetail = GetDomainDetail'
     { _gddDomainName :: Text
@@ -73,7 +77,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'gddDomainName'
+-- * 'gddDomainName' - The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 getDomainDetail
     :: Text -- ^ 'gddDomainName'
     -> GetDomainDetail
@@ -82,15 +86,7 @@
     { _gddDomainName = pDomainName_
     }
 
--- | The name of a domain.
---
--- Type: String
---
--- Default: None
---
--- Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported.
---
--- Required: Yes
+-- | The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 gddDomainName :: Lens' GetDomainDetail Text
 gddDomainName = lens _gddDomainName (\ s a -> s{_gddDomainName = a});
 
@@ -150,6 +146,8 @@
 
 -- | The GetDomainDetail response includes the following elements.
 --
+--
+--
 -- /See:/ 'getDomainDetailResponse' smart constructor.
 data GetDomainDetailResponse = GetDomainDetailResponse'
     { _gddrsTechPrivacy       :: !(Maybe Bool)
@@ -180,49 +178,49 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'gddrsTechPrivacy'
+-- * 'gddrsTechPrivacy' - Specifies whether contact information for the tech contact is concealed from WHOIS queries. If the value is @true@ , WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean
 --
--- * 'gddrsDNSSec'
+-- * 'gddrsDNSSec' - Reserved for future use.
 --
--- * 'gddrsWhoIsServer'
+-- * 'gddrsWhoIsServer' - The fully qualified name of the WHOIS server that can answer the WHOIS query for the domain. Type: String
 --
--- * 'gddrsRegistryDomainId'
+-- * 'gddrsRegistryDomainId' - Reserved for future use.
 --
--- * 'gddrsRegistrantPrivacy'
+-- * 'gddrsRegistrantPrivacy' - Specifies whether contact information for the registrant contact is concealed from WHOIS queries. If the value is @true@ , WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean
 --
--- * 'gddrsUpdatedDate'
+-- * 'gddrsUpdatedDate' - The last updated date of the domain as found in the response to a WHOIS query. The date format is Unix time.
 --
--- * 'gddrsAdminPrivacy'
+-- * 'gddrsAdminPrivacy' - Specifies whether contact information for the admin contact is concealed from WHOIS queries. If the value is @true@ , WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean
 --
--- * 'gddrsAutoRenew'
+-- * 'gddrsAutoRenew' - Specifies whether the domain registration is set to renew automatically. Type: Boolean
 --
--- * 'gddrsAbuseContactPhone'
+-- * 'gddrsAbuseContactPhone' - Phone number for reporting abuse.  Type: String
 --
--- * 'gddrsRegistrarURL'
+-- * 'gddrsRegistrarURL' - Web address of the registrar. Type: String
 --
--- * 'gddrsAbuseContactEmail'
+-- * 'gddrsAbuseContactEmail' - Email address to contact to report incorrect contact information for a domain, to report that the domain is being used to send spam, to report that someone is cybersquatting on a domain name, or report some other type of abuse.  Type: String
 --
--- * 'gddrsExpirationDate'
+-- * 'gddrsExpirationDate' - The date when the registration for the domain is set to expire. The date format is Unix time.
 --
--- * 'gddrsCreationDate'
+-- * 'gddrsCreationDate' - The date when the domain was created as found in the response to a WHOIS query. The date format is Unix time.
 --
--- * 'gddrsRegistrarName'
+-- * 'gddrsRegistrarName' - Name of the registrar of the domain as identified in the registry. Amazon Route 53 domains are registered by registrar Gandi. The value is @"GANDI SAS"@ .  Type: String
 --
--- * 'gddrsReseller'
+-- * 'gddrsReseller' - Reseller of the domain. Domains registered or transferred using Amazon Route 53 domains will have @"Amazon"@ as the reseller.  Type: String
 --
--- * 'gddrsStatusList'
+-- * 'gddrsStatusList' - An array of domain name status codes, also known as Extensible Provisioning Protocol (EPP) status codes. ICANN, the organization that maintains a central database of domain names, has developed a set of domain name status codes that tell you the status of a variety of operations on a domain name, for example, registering a domain name, transferring a domain name to another registrar, renewing the registration for a domain name, and so on. All registrars use this same set of status codes. For a current list of domain name status codes and an explanation of what each code means, go to the <https://www.icann.org/ ICANN website> and search for @epp status codes@ . (Search on the ICANN website; web searches sometimes return an old version of the document.) Type: Array of String
 --
--- * 'gddrsResponseStatus'
+-- * 'gddrsResponseStatus' - -- | The response status code.
 --
--- * 'gddrsDomainName'
+-- * 'gddrsDomainName' - The name of a domain. Type: String
 --
--- * 'gddrsNameservers'
+-- * 'gddrsNameservers' - The name of the domain. Type: String
 --
--- * 'gddrsAdminContact'
+-- * 'gddrsAdminContact' - Provides details about the domain administrative contact.  Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@
 --
--- * 'gddrsRegistrantContact'
+-- * 'gddrsRegistrantContact' - Provides details about the domain registrant.  Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@
 --
--- * 'gddrsTechContact'
+-- * 'gddrsTechContact' - Provides details about the domain technical contact. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@
 getDomainDetailResponse
     :: Int -- ^ 'gddrsResponseStatus'
     -> Text -- ^ 'gddrsDomainName'
@@ -256,9 +254,7 @@
     , _gddrsTechContact = _Sensitive # pTechContact_
     }
 
--- | Specifies whether contact information for the tech contact is concealed from WHOIS queries. If the value is 'true', WHOIS (\"who is\") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter.
---
--- Type: Boolean
+-- | Specifies whether contact information for the tech contact is concealed from WHOIS queries. If the value is @true@ , WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean
 gddrsTechPrivacy :: Lens' GetDomainDetailResponse (Maybe Bool)
 gddrsTechPrivacy = lens _gddrsTechPrivacy (\ s a -> s{_gddrsTechPrivacy = a});
 
@@ -266,9 +262,7 @@
 gddrsDNSSec :: Lens' GetDomainDetailResponse (Maybe Text)
 gddrsDNSSec = lens _gddrsDNSSec (\ s a -> s{_gddrsDNSSec = a});
 
--- | The fully qualified name of the WHOIS server that can answer the WHOIS query for the domain.
---
--- Type: String
+-- | The fully qualified name of the WHOIS server that can answer the WHOIS query for the domain. Type: String
 gddrsWhoIsServer :: Lens' GetDomainDetailResponse (Maybe Text)
 gddrsWhoIsServer = lens _gddrsWhoIsServer (\ s a -> s{_gddrsWhoIsServer = a});
 
@@ -276,9 +270,7 @@
 gddrsRegistryDomainId :: Lens' GetDomainDetailResponse (Maybe Text)
 gddrsRegistryDomainId = lens _gddrsRegistryDomainId (\ s a -> s{_gddrsRegistryDomainId = a});
 
--- | Specifies whether contact information for the registrant contact is concealed from WHOIS queries. If the value is 'true', WHOIS (\"who is\") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter.
---
--- Type: Boolean
+-- | Specifies whether contact information for the registrant contact is concealed from WHOIS queries. If the value is @true@ , WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean
 gddrsRegistrantPrivacy :: Lens' GetDomainDetailResponse (Maybe Bool)
 gddrsRegistrantPrivacy = lens _gddrsRegistrantPrivacy (\ s a -> s{_gddrsRegistrantPrivacy = a});
 
@@ -286,33 +278,23 @@
 gddrsUpdatedDate :: Lens' GetDomainDetailResponse (Maybe UTCTime)
 gddrsUpdatedDate = lens _gddrsUpdatedDate (\ s a -> s{_gddrsUpdatedDate = a}) . mapping _Time;
 
--- | Specifies whether contact information for the admin contact is concealed from WHOIS queries. If the value is 'true', WHOIS (\"who is\") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter.
---
--- Type: Boolean
+-- | Specifies whether contact information for the admin contact is concealed from WHOIS queries. If the value is @true@ , WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean
 gddrsAdminPrivacy :: Lens' GetDomainDetailResponse (Maybe Bool)
 gddrsAdminPrivacy = lens _gddrsAdminPrivacy (\ s a -> s{_gddrsAdminPrivacy = a});
 
--- | Specifies whether the domain registration is set to renew automatically.
---
--- Type: Boolean
+-- | Specifies whether the domain registration is set to renew automatically. Type: Boolean
 gddrsAutoRenew :: Lens' GetDomainDetailResponse (Maybe Bool)
 gddrsAutoRenew = lens _gddrsAutoRenew (\ s a -> s{_gddrsAutoRenew = a});
 
--- | Phone number for reporting abuse.
---
--- Type: String
+-- | Phone number for reporting abuse.  Type: String
 gddrsAbuseContactPhone :: Lens' GetDomainDetailResponse (Maybe Text)
 gddrsAbuseContactPhone = lens _gddrsAbuseContactPhone (\ s a -> s{_gddrsAbuseContactPhone = a});
 
--- | Web address of the registrar.
---
--- Type: String
+-- | Web address of the registrar. Type: String
 gddrsRegistrarURL :: Lens' GetDomainDetailResponse (Maybe Text)
 gddrsRegistrarURL = lens _gddrsRegistrarURL (\ s a -> s{_gddrsRegistrarURL = a});
 
--- | Email address to contact to report incorrect contact information for a domain, to report that the domain is being used to send spam, to report that someone is cybersquatting on a domain name, or report some other type of abuse.
---
--- Type: String
+-- | Email address to contact to report incorrect contact information for a domain, to report that the domain is being used to send spam, to report that someone is cybersquatting on a domain name, or report some other type of abuse.  Type: String
 gddrsAbuseContactEmail :: Lens' GetDomainDetailResponse (Maybe Text)
 gddrsAbuseContactEmail = lens _gddrsAbuseContactEmail (\ s a -> s{_gddrsAbuseContactEmail = a});
 
@@ -324,65 +306,39 @@
 gddrsCreationDate :: Lens' GetDomainDetailResponse (Maybe UTCTime)
 gddrsCreationDate = lens _gddrsCreationDate (\ s a -> s{_gddrsCreationDate = a}) . mapping _Time;
 
--- | Name of the registrar of the domain as identified in the registry. Amazon Route 53 domains are registered by registrar Gandi. The value is '\"GANDI SAS\"'.
---
--- Type: String
+-- | Name of the registrar of the domain as identified in the registry. Amazon Route 53 domains are registered by registrar Gandi. The value is @"GANDI SAS"@ .  Type: String
 gddrsRegistrarName :: Lens' GetDomainDetailResponse (Maybe Text)
 gddrsRegistrarName = lens _gddrsRegistrarName (\ s a -> s{_gddrsRegistrarName = a});
 
--- | Reseller of the domain. Domains registered or transferred using Amazon Route 53 domains will have '\"Amazon\"' as the reseller.
---
--- Type: String
+-- | Reseller of the domain. Domains registered or transferred using Amazon Route 53 domains will have @"Amazon"@ as the reseller.  Type: String
 gddrsReseller :: Lens' GetDomainDetailResponse (Maybe Text)
 gddrsReseller = lens _gddrsReseller (\ s a -> s{_gddrsReseller = a});
 
--- | An array of domain name status codes, also known as Extensible Provisioning Protocol (EPP) status codes.
---
--- ICANN, the organization that maintains a central database of domain names, has developed a set of domain name status codes that tell you the status of a variety of operations on a domain name, for example, registering a domain name, transferring a domain name to another registrar, renewing the registration for a domain name, and so on. All registrars use this same set of status codes.
---
--- For a current list of domain name status codes and an explanation of what each code means, go to the <https://www.icann.org/ ICANN website> and search for 'epp status codes'. (Search on the ICANN website; web searches sometimes return an old version of the document.)
---
--- Type: Array of String
+-- | An array of domain name status codes, also known as Extensible Provisioning Protocol (EPP) status codes. ICANN, the organization that maintains a central database of domain names, has developed a set of domain name status codes that tell you the status of a variety of operations on a domain name, for example, registering a domain name, transferring a domain name to another registrar, renewing the registration for a domain name, and so on. All registrars use this same set of status codes. For a current list of domain name status codes and an explanation of what each code means, go to the <https://www.icann.org/ ICANN website> and search for @epp status codes@ . (Search on the ICANN website; web searches sometimes return an old version of the document.) Type: Array of String
 gddrsStatusList :: Lens' GetDomainDetailResponse [Text]
 gddrsStatusList = lens _gddrsStatusList (\ s a -> s{_gddrsStatusList = a}) . _Default . _Coerce;
 
--- | The response status code.
+-- | -- | The response status code.
 gddrsResponseStatus :: Lens' GetDomainDetailResponse Int
 gddrsResponseStatus = lens _gddrsResponseStatus (\ s a -> s{_gddrsResponseStatus = a});
 
--- | The name of a domain.
---
--- Type: String
+-- | The name of a domain. Type: String
 gddrsDomainName :: Lens' GetDomainDetailResponse Text
 gddrsDomainName = lens _gddrsDomainName (\ s a -> s{_gddrsDomainName = a});
 
--- | The name of the domain.
---
--- Type: String
+-- | The name of the domain. Type: String
 gddrsNameservers :: Lens' GetDomainDetailResponse [Nameserver]
 gddrsNameservers = lens _gddrsNameservers (\ s a -> s{_gddrsNameservers = a}) . _Coerce;
 
--- | Provides details about the domain administrative contact.
---
--- Type: Complex
---
--- Children: 'FirstName', 'MiddleName', 'LastName', 'ContactType', 'OrganizationName', 'AddressLine1', 'AddressLine2', 'City', 'State', 'CountryCode', 'ZipCode', 'PhoneNumber', 'Email', 'Fax', 'ExtraParams'
+-- | Provides details about the domain administrative contact.  Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@
 gddrsAdminContact :: Lens' GetDomainDetailResponse ContactDetail
 gddrsAdminContact = lens _gddrsAdminContact (\ s a -> s{_gddrsAdminContact = a}) . _Sensitive;
 
--- | Provides details about the domain registrant.
---
--- Type: Complex
---
--- Children: 'FirstName', 'MiddleName', 'LastName', 'ContactType', 'OrganizationName', 'AddressLine1', 'AddressLine2', 'City', 'State', 'CountryCode', 'ZipCode', 'PhoneNumber', 'Email', 'Fax', 'ExtraParams'
+-- | Provides details about the domain registrant.  Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@
 gddrsRegistrantContact :: Lens' GetDomainDetailResponse ContactDetail
 gddrsRegistrantContact = lens _gddrsRegistrantContact (\ s a -> s{_gddrsRegistrantContact = a}) . _Sensitive;
 
--- | Provides details about the domain technical contact.
---
--- Type: Complex
---
--- Children: 'FirstName', 'MiddleName', 'LastName', 'ContactType', 'OrganizationName', 'AddressLine1', 'AddressLine2', 'City', 'State', 'CountryCode', 'ZipCode', 'PhoneNumber', 'Email', 'Fax', 'ExtraParams'
+-- | Provides details about the domain technical contact. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@
 gddrsTechContact :: Lens' GetDomainDetailResponse ContactDetail
 gddrsTechContact = lens _gddrsTechContact (\ s a -> s{_gddrsTechContact = a}) . _Sensitive;
 
diff --git a/gen/Network/AWS/Route53Domains/GetDomainSuggestions.hs b/gen/Network/AWS/Route53Domains/GetDomainSuggestions.hs
--- a/gen/Network/AWS/Route53Domains/GetDomainSuggestions.hs
+++ b/gen/Network/AWS/Route53Domains/GetDomainSuggestions.hs
@@ -20,11 +20,11 @@
 --
 -- The GetDomainSuggestions operation returns a list of suggested domain names given a string, which can either be a domain name or simply a word or phrase (without spaces).
 --
--- Parameters:
 --
--- -   DomainName (string): The basis for your domain suggestion search, a string with (or without) top-level domain specified.
--- -   SuggestionCount (int): The number of domain suggestions to be returned, maximum 50, minimum 1.
--- -   OnlyAvailable (bool): If true, availability check will be performed on suggestion results, and only available domains will be returned. If false, suggestions will be returned without checking whether the domain is actually available, and caller will have to call checkDomainAvailability for each suggestion to determine availability for registration.
+-- Parameters:     * DomainName (string): The basis for your domain suggestion search, a string with (or without) top-level domain specified.    * SuggestionCount (int): The number of domain suggestions to be returned, maximum 50, minimum 1.    * OnlyAvailable (bool): If true, availability check will be performed on suggestion results, and only available domains will be returned. If false, suggestions will be returned without checking whether the domain is actually available, and caller will have to call checkDomainAvailability for each suggestion to determine availability for registration.
+--
+--
+--
 module Network.AWS.Route53Domains.GetDomainSuggestions
     (
     -- * Creating a Request
@@ -61,11 +61,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'gdsDomainName'
+-- * 'gdsDomainName' - Undocumented member.
 --
--- * 'gdsSuggestionCount'
+-- * 'gdsSuggestionCount' - Undocumented member.
 --
--- * 'gdsOnlyAvailable'
+-- * 'gdsOnlyAvailable' - Undocumented member.
 getDomainSuggestions
     :: Text -- ^ 'gdsDomainName'
     -> Int -- ^ 'gdsSuggestionCount'
@@ -139,9 +139,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'gdsrsSuggestionsList'
+-- * 'gdsrsSuggestionsList' - Undocumented member.
 --
--- * 'gdsrsResponseStatus'
+-- * 'gdsrsResponseStatus' - -- | The response status code.
 getDomainSuggestionsResponse
     :: Int -- ^ 'gdsrsResponseStatus'
     -> GetDomainSuggestionsResponse
@@ -155,7 +155,7 @@
 gdsrsSuggestionsList :: Lens' GetDomainSuggestionsResponse [DomainSuggestion]
 gdsrsSuggestionsList = lens _gdsrsSuggestionsList (\ s a -> s{_gdsrsSuggestionsList = a}) . _Default . _Coerce;
 
--- | The response status code.
+-- | -- | The response status code.
 gdsrsResponseStatus :: Lens' GetDomainSuggestionsResponse Int
 gdsrsResponseStatus = lens _gdsrsResponseStatus (\ s a -> s{_gdsrsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Route53Domains/GetOperationDetail.hs b/gen/Network/AWS/Route53Domains/GetOperationDetail.hs
--- a/gen/Network/AWS/Route53Domains/GetOperationDetail.hs
+++ b/gen/Network/AWS/Route53Domains/GetOperationDetail.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- This operation returns the current status of an operation that is not completed.
+--
+--
 module Network.AWS.Route53Domains.GetOperationDetail
     (
     -- * Creating a Request
@@ -49,6 +51,8 @@
 
 -- | The GetOperationDetail request includes the following element.
 --
+--
+--
 -- /See:/ 'getOperationDetail' smart constructor.
 newtype GetOperationDetail = GetOperationDetail'
     { _godOperationId :: Text
@@ -58,7 +62,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'godOperationId'
+-- * 'godOperationId' - The identifier for the operation for which you want to get the status. Amazon Route 53 returned the identifier in the response to the original request. Type: String Default: None Required: Yes
 getOperationDetail
     :: Text -- ^ 'godOperationId'
     -> GetOperationDetail
@@ -67,13 +71,7 @@
     { _godOperationId = pOperationId_
     }
 
--- | The identifier for the operation for which you want to get the status. Amazon Route 53 returned the identifier in the response to the original request.
---
--- Type: String
---
--- Default: None
---
--- Required: Yes
+-- | The identifier for the operation for which you want to get the status. Amazon Route 53 returned the identifier in the response to the original request. Type: String Default: None Required: Yes
 godOperationId :: Lens' GetOperationDetail Text
 godOperationId = lens _godOperationId (\ s a -> s{_godOperationId = a});
 
@@ -119,6 +117,8 @@
 
 -- | The GetOperationDetail response includes the following elements.
 --
+--
+--
 -- /See:/ 'getOperationDetailResponse' smart constructor.
 data GetOperationDetailResponse = GetOperationDetailResponse'
     { _godrsStatus         :: !(Maybe OperationStatus)
@@ -134,19 +134,19 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'godrsStatus'
+-- * 'godrsStatus' - The current status of the requested operation in the system. Type: String
 --
--- * 'godrsSubmittedDate'
+-- * 'godrsSubmittedDate' - The date when the request was submitted.
 --
--- * 'godrsDomainName'
+-- * 'godrsDomainName' - The name of a domain. Type: String
 --
--- * 'godrsOperationId'
+-- * 'godrsOperationId' - The identifier for the operation. Type: String
 --
--- * 'godrsType'
+-- * 'godrsType' - The type of operation that was requested. Type: String
 --
--- * 'godrsMessage'
+-- * 'godrsMessage' - Detailed information on the status including possible errors. Type: String
 --
--- * 'godrsResponseStatus'
+-- * 'godrsResponseStatus' - -- | The response status code.
 getOperationDetailResponse
     :: Int -- ^ 'godrsResponseStatus'
     -> GetOperationDetailResponse
@@ -161,9 +161,7 @@
     , _godrsResponseStatus = pResponseStatus_
     }
 
--- | The current status of the requested operation in the system.
---
--- Type: String
+-- | The current status of the requested operation in the system. Type: String
 godrsStatus :: Lens' GetOperationDetailResponse (Maybe OperationStatus)
 godrsStatus = lens _godrsStatus (\ s a -> s{_godrsStatus = a});
 
@@ -171,31 +169,23 @@
 godrsSubmittedDate :: Lens' GetOperationDetailResponse (Maybe UTCTime)
 godrsSubmittedDate = lens _godrsSubmittedDate (\ s a -> s{_godrsSubmittedDate = a}) . mapping _Time;
 
--- | The name of a domain.
---
--- Type: String
+-- | The name of a domain. Type: String
 godrsDomainName :: Lens' GetOperationDetailResponse (Maybe Text)
 godrsDomainName = lens _godrsDomainName (\ s a -> s{_godrsDomainName = a});
 
--- | The identifier for the operation.
---
--- Type: String
+-- | The identifier for the operation. Type: String
 godrsOperationId :: Lens' GetOperationDetailResponse (Maybe Text)
 godrsOperationId = lens _godrsOperationId (\ s a -> s{_godrsOperationId = a});
 
--- | The type of operation that was requested.
---
--- Type: String
+-- | The type of operation that was requested. Type: String
 godrsType :: Lens' GetOperationDetailResponse (Maybe OperationType)
 godrsType = lens _godrsType (\ s a -> s{_godrsType = a});
 
--- | Detailed information on the status including possible errors.
---
--- Type: String
+-- | Detailed information on the status including possible errors. Type: String
 godrsMessage :: Lens' GetOperationDetailResponse (Maybe Text)
 godrsMessage = lens _godrsMessage (\ s a -> s{_godrsMessage = a});
 
--- | The response status code.
+-- | -- | The response status code.
 godrsResponseStatus :: Lens' GetOperationDetailResponse Int
 godrsResponseStatus = lens _godrsResponseStatus (\ s a -> s{_godrsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Route53Domains/ListDomains.hs b/gen/Network/AWS/Route53Domains/ListDomains.hs
--- a/gen/Network/AWS/Route53Domains/ListDomains.hs
+++ b/gen/Network/AWS/Route53Domains/ListDomains.hs
@@ -20,6 +20,8 @@
 --
 -- This operation returns all the domain names registered with Amazon Route 53 for the current AWS account.
 --
+--
+--
 -- This operation returns paginated results.
 module Network.AWS.Route53Domains.ListDomains
     (
@@ -49,6 +51,8 @@
 
 -- | The ListDomains request includes the following elements.
 --
+--
+--
 -- /See:/ 'listDomains' smart constructor.
 data ListDomains = ListDomains'
     { _ldMarker   :: !(Maybe Text)
@@ -59,9 +63,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'ldMarker'
+-- * 'ldMarker' - For an initial request for a list of domains, omit this element. If the number of domains that are associated with the current AWS account is greater than the value that you specified for @MaxItems@ , you can use @Marker@ to return additional domains. Get the value of @NextPageMarker@ from the previous response, and submit another request that includes the value of @NextPageMarker@ in the @Marker@ element. Type: String Default: None Constraints: The marker must match the value specified in the previous request.  Required: No
 --
--- * 'ldMaxItems'
+-- * 'ldMaxItems' - Number of domains to be returned. Type: Integer Default: 20 Constraints: A numeral between 1 and 100. Required: No
 listDomains
     :: ListDomains
 listDomains =
@@ -70,27 +74,11 @@
     , _ldMaxItems = Nothing
     }
 
--- | For an initial request for a list of domains, omit this element. If the number of domains that are associated with the current AWS account is greater than the value that you specified for 'MaxItems', you can use 'Marker' to return additional domains. Get the value of 'NextPageMarker' from the previous response, and submit another request that includes the value of 'NextPageMarker' in the 'Marker' element.
---
--- Type: String
---
--- Default: None
---
--- Constraints: The marker must match the value specified in the previous request.
---
--- Required: No
+-- | For an initial request for a list of domains, omit this element. If the number of domains that are associated with the current AWS account is greater than the value that you specified for @MaxItems@ , you can use @Marker@ to return additional domains. Get the value of @NextPageMarker@ from the previous response, and submit another request that includes the value of @NextPageMarker@ in the @Marker@ element. Type: String Default: None Constraints: The marker must match the value specified in the previous request.  Required: No
 ldMarker :: Lens' ListDomains (Maybe Text)
 ldMarker = lens _ldMarker (\ s a -> s{_ldMarker = a});
 
--- | Number of domains to be returned.
---
--- Type: Integer
---
--- Default: 20
---
--- Constraints: A numeral between 1 and 100.
---
--- Required: No
+-- | Number of domains to be returned. Type: Integer Default: 20 Constraints: A numeral between 1 and 100. Required: No
 ldMaxItems :: Lens' ListDomains (Maybe Int)
 ldMaxItems = lens _ldMaxItems (\ s a -> s{_ldMaxItems = a});
 
@@ -140,6 +128,8 @@
 
 -- | The ListDomains response includes the following elements.
 --
+--
+--
 -- /See:/ 'listDomainsResponse' smart constructor.
 data ListDomainsResponse = ListDomainsResponse'
     { _ldrsNextPageMarker :: !(Maybe Text)
@@ -151,11 +141,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'ldrsNextPageMarker'
+-- * 'ldrsNextPageMarker' - If there are more domains than you specified for @MaxItems@ in the request, submit another request and include the value of @NextPageMarker@ in the value of @Marker@ . Type: String Parent: @Operations@
 --
--- * 'ldrsResponseStatus'
+-- * 'ldrsResponseStatus' - -- | The response status code.
 --
--- * 'ldrsDomains'
+-- * 'ldrsDomains' - A summary of domains. Type: Complex type containing a list of domain summaries. Children: @AutoRenew@ , @DomainName@ , @Expiry@ , @TransferLock@
 listDomainsResponse
     :: Int -- ^ 'ldrsResponseStatus'
     -> ListDomainsResponse
@@ -166,23 +156,15 @@
     , _ldrsDomains = mempty
     }
 
--- | If there are more domains than you specified for 'MaxItems' in the request, submit another request and include the value of 'NextPageMarker' in the value of 'Marker'.
---
--- Type: String
---
--- Parent: 'Operations'
+-- | If there are more domains than you specified for @MaxItems@ in the request, submit another request and include the value of @NextPageMarker@ in the value of @Marker@ . Type: String Parent: @Operations@
 ldrsNextPageMarker :: Lens' ListDomainsResponse (Maybe Text)
 ldrsNextPageMarker = lens _ldrsNextPageMarker (\ s a -> s{_ldrsNextPageMarker = a});
 
--- | The response status code.
+-- | -- | The response status code.
 ldrsResponseStatus :: Lens' ListDomainsResponse Int
 ldrsResponseStatus = lens _ldrsResponseStatus (\ s a -> s{_ldrsResponseStatus = a});
 
--- | A summary of domains.
---
--- Type: Complex type containing a list of domain summaries.
---
--- Children: 'AutoRenew', 'DomainName', 'Expiry', 'TransferLock'
+-- | A summary of domains. Type: Complex type containing a list of domain summaries. Children: @AutoRenew@ , @DomainName@ , @Expiry@ , @TransferLock@
 ldrsDomains :: Lens' ListDomainsResponse [DomainSummary]
 ldrsDomains = lens _ldrsDomains (\ s a -> s{_ldrsDomains = a}) . _Coerce;
 
diff --git a/gen/Network/AWS/Route53Domains/ListOperations.hs b/gen/Network/AWS/Route53Domains/ListOperations.hs
--- a/gen/Network/AWS/Route53Domains/ListOperations.hs
+++ b/gen/Network/AWS/Route53Domains/ListOperations.hs
@@ -20,6 +20,8 @@
 --
 -- This operation returns the operation IDs of operations that are not yet complete.
 --
+--
+--
 -- This operation returns paginated results.
 module Network.AWS.Route53Domains.ListOperations
     (
@@ -49,6 +51,8 @@
 
 -- | The ListOperations request includes the following elements.
 --
+--
+--
 -- /See:/ 'listOperations' smart constructor.
 data ListOperations = ListOperations'
     { _loMarker   :: !(Maybe Text)
@@ -59,9 +63,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'loMarker'
+-- * 'loMarker' - For an initial request for a list of operations, omit this element. If the number of operations that are not yet complete is greater than the value that you specified for @MaxItems@ , you can use @Marker@ to return additional operations. Get the value of @NextPageMarker@ from the previous response, and submit another request that includes the value of @NextPageMarker@ in the @Marker@ element. Type: String Default: None Required: No
 --
--- * 'loMaxItems'
+-- * 'loMaxItems' - Number of domains to be returned. Type: Integer Default: 20 Constraints: A value between 1 and 100. Required: No
 listOperations
     :: ListOperations
 listOperations =
@@ -70,25 +74,11 @@
     , _loMaxItems = Nothing
     }
 
--- | For an initial request for a list of operations, omit this element. If the number of operations that are not yet complete is greater than the value that you specified for 'MaxItems', you can use 'Marker' to return additional operations. Get the value of 'NextPageMarker' from the previous response, and submit another request that includes the value of 'NextPageMarker' in the 'Marker' element.
---
--- Type: String
---
--- Default: None
---
--- Required: No
+-- | For an initial request for a list of operations, omit this element. If the number of operations that are not yet complete is greater than the value that you specified for @MaxItems@ , you can use @Marker@ to return additional operations. Get the value of @NextPageMarker@ from the previous response, and submit another request that includes the value of @NextPageMarker@ in the @Marker@ element. Type: String Default: None Required: No
 loMarker :: Lens' ListOperations (Maybe Text)
 loMarker = lens _loMarker (\ s a -> s{_loMarker = a});
 
--- | Number of domains to be returned.
---
--- Type: Integer
---
--- Default: 20
---
--- Constraints: A value between 1 and 100.
---
--- Required: No
+-- | Number of domains to be returned. Type: Integer Default: 20 Constraints: A value between 1 and 100. Required: No
 loMaxItems :: Lens' ListOperations (Maybe Int)
 loMaxItems = lens _loMaxItems (\ s a -> s{_loMaxItems = a});
 
@@ -138,6 +128,8 @@
 
 -- | The ListOperations response includes the following elements.
 --
+--
+--
 -- /See:/ 'listOperationsResponse' smart constructor.
 data ListOperationsResponse = ListOperationsResponse'
     { _lorsNextPageMarker :: !(Maybe Text)
@@ -149,11 +141,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'lorsNextPageMarker'
+-- * 'lorsNextPageMarker' - If there are more operations than you specified for @MaxItems@ in the request, submit another request and include the value of @NextPageMarker@ in the value of @Marker@ . Type: String Parent: @Operations@
 --
--- * 'lorsResponseStatus'
+-- * 'lorsResponseStatus' - -- | The response status code.
 --
--- * 'lorsOperations'
+-- * 'lorsOperations' - Lists summaries of the operations. Type: Complex type containing a list of operation summaries Children: @OperationId@ , @Status@ , @SubmittedDate@ , @Type@
 listOperationsResponse
     :: Int -- ^ 'lorsResponseStatus'
     -> ListOperationsResponse
@@ -164,23 +156,15 @@
     , _lorsOperations = mempty
     }
 
--- | If there are more operations than you specified for 'MaxItems' in the request, submit another request and include the value of 'NextPageMarker' in the value of 'Marker'.
---
--- Type: String
---
--- Parent: 'Operations'
+-- | If there are more operations than you specified for @MaxItems@ in the request, submit another request and include the value of @NextPageMarker@ in the value of @Marker@ . Type: String Parent: @Operations@
 lorsNextPageMarker :: Lens' ListOperationsResponse (Maybe Text)
 lorsNextPageMarker = lens _lorsNextPageMarker (\ s a -> s{_lorsNextPageMarker = a});
 
--- | The response status code.
+-- | -- | The response status code.
 lorsResponseStatus :: Lens' ListOperationsResponse Int
 lorsResponseStatus = lens _lorsResponseStatus (\ s a -> s{_lorsResponseStatus = a});
 
--- | Lists summaries of the operations.
---
--- Type: Complex type containing a list of operation summaries
---
--- Children: 'OperationId', 'Status', 'SubmittedDate', 'Type'
+-- | Lists summaries of the operations. Type: Complex type containing a list of operation summaries Children: @OperationId@ , @Status@ , @SubmittedDate@ , @Type@
 lorsOperations :: Lens' ListOperationsResponse [OperationSummary]
 lorsOperations = lens _lorsOperations (\ s a -> s{_lorsOperations = a}) . _Coerce;
 
diff --git a/gen/Network/AWS/Route53Domains/ListTagsForDomain.hs b/gen/Network/AWS/Route53Domains/ListTagsForDomain.hs
--- a/gen/Network/AWS/Route53Domains/ListTagsForDomain.hs
+++ b/gen/Network/AWS/Route53Domains/ListTagsForDomain.hs
@@ -20,7 +20,9 @@
 --
 -- This operation returns all of the tags that are associated with the specified domain.
 --
+--
 -- All tag operations are eventually consistent; subsequent operations may not immediately represent all issued operations.
+--
 module Network.AWS.Route53Domains.ListTagsForDomain
     (
     -- * Creating a Request
@@ -46,6 +48,8 @@
 
 -- | The ListTagsForDomainRequest includes the following elements.
 --
+--
+--
 -- /See:/ 'listTagsForDomain' smart constructor.
 newtype ListTagsForDomain = ListTagsForDomain'
     { _ltfdDomainName :: Text
@@ -55,7 +59,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'ltfdDomainName'
+-- * 'ltfdDomainName' - The domain for which you want to get a list of tags.
 listTagsForDomain
     :: Text -- ^ 'ltfdDomainName'
     -> ListTagsForDomain
@@ -104,6 +108,8 @@
 
 -- | The ListTagsForDomain response includes the following elements.
 --
+--
+--
 -- /See:/ 'listTagsForDomainResponse' smart constructor.
 data ListTagsForDomainResponse = ListTagsForDomainResponse'
     { _ltfdrsResponseStatus :: !Int
@@ -114,9 +120,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'ltfdrsResponseStatus'
+-- * 'ltfdrsResponseStatus' - -- | The response status code.
 --
--- * 'ltfdrsTagList'
+-- * 'ltfdrsTagList' - A list of the tags that are associated with the specified domain. Type: A complex type containing a list of tags Each tag includes the following elements.     * Key The key (name) of a tag. Type: String     * Value The value of a tag. Type: String
 listTagsForDomainResponse
     :: Int -- ^ 'ltfdrsResponseStatus'
     -> ListTagsForDomainResponse
@@ -126,28 +132,11 @@
     , _ltfdrsTagList = mempty
     }
 
--- | The response status code.
+-- | -- | The response status code.
 ltfdrsResponseStatus :: Lens' ListTagsForDomainResponse Int
 ltfdrsResponseStatus = lens _ltfdrsResponseStatus (\ s a -> s{_ltfdrsResponseStatus = a});
 
--- | A list of the tags that are associated with the specified domain.
---
--- Type: A complex type containing a list of tags
---
--- Each tag includes the following elements.
---
--- -   Key
---
---     The key (name) of a tag.
---
---     Type: String
---
--- -   Value
---
---     The value of a tag.
---
---     Type: String
---
+-- | A list of the tags that are associated with the specified domain. Type: A complex type containing a list of tags Each tag includes the following elements.     * Key The key (name) of a tag. Type: String     * Value The value of a tag. Type: String
 ltfdrsTagList :: Lens' ListTagsForDomainResponse [Tag]
 ltfdrsTagList = lens _ltfdrsTagList (\ s a -> s{_ltfdrsTagList = a}) . _Coerce;
 
diff --git a/gen/Network/AWS/Route53Domains/RegisterDomain.hs b/gen/Network/AWS/Route53Domains/RegisterDomain.hs
--- a/gen/Network/AWS/Route53Domains/RegisterDomain.hs
+++ b/gen/Network/AWS/Route53Domains/RegisterDomain.hs
@@ -20,13 +20,11 @@
 --
 -- This operation registers a domain. Domains are registered by the AWS registrar partner, Gandi. For some top-level domains (TLDs), this operation requires extra parameters.
 --
+--
 -- When you register a domain, Amazon Route 53 does the following:
 --
--- -   Creates a Amazon Route 53 hosted zone that has the same name as the domain. Amazon Route 53 assigns four name servers to your hosted zone and automatically updates your domain registration with the names of these name servers.
--- -   Enables autorenew, so your domain registration will renew automatically each year. We\'ll notify you in advance of the renewal date so you can choose whether to renew the registration.
--- -   Optionally enables privacy protection, so WHOIS queries return contact information for our registrar partner, Gandi, instead of the information you entered for registrant, admin, and tech contacts.
--- -   If registration is successful, returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant is notified by email.
--- -   Charges your AWS account an amount based on the top-level domain. For more information, see <http://aws.amazon.com/route53/pricing/ Amazon Route 53 Pricing>.
+--     * Creates a Amazon Route 53 hosted zone that has the same name as the domain. Amazon Route 53 assigns four name servers to your hosted zone and automatically updates your domain registration with the names of these name servers.    * Enables autorenew, so your domain registration will renew automatically each year. We'll notify you in advance of the renewal date so you can choose whether to renew the registration.    * Optionally enables privacy protection, so WHOIS queries return contact information for our registrar partner, Gandi, instead of the information you entered for registrant, admin, and tech contacts.    * If registration is successful, returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant is notified by email.    * Charges your AWS account an amount based on the top-level domain. For more information, see <http://aws.amazon.com/route53/pricing/ Amazon Route 53 Pricing> .
+--
 module Network.AWS.Route53Domains.RegisterDomain
     (
     -- * Creating a Request
@@ -61,6 +59,8 @@
 
 -- | The RegisterDomain request includes the following elements.
 --
+--
+--
 -- /See:/ 'registerDomain' smart constructor.
 data RegisterDomain = RegisterDomain'
     { _rPrivacyProtectTechContact       :: !(Maybe Bool)
@@ -79,25 +79,25 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'rPrivacyProtectTechContact'
+-- * 'rPrivacyProtectTechContact' - Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: @true@  Valid values: @true@ | @false@  Required: No
 --
--- * 'rPrivacyProtectRegistrantContact'
+-- * 'rPrivacyProtectRegistrantContact' - Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: @true@  Valid values: @true@ | @false@  Required: No
 --
--- * 'rAutoRenew'
+-- * 'rAutoRenew' - Indicates whether the domain will be automatically renewed (@true@ ) or not (@false@ ). Autorenewal only takes effect after the account is charged. Type: Boolean Valid values: @true@ | @false@  Default: @true@  Required: No
 --
--- * 'rPrivacyProtectAdminContact'
+-- * 'rPrivacyProtectAdminContact' - Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: @true@  Valid values: @true@ | @false@  Required: No
 --
--- * 'rIdNLangCode'
+-- * 'rIdNLangCode' - Reserved for future use.
 --
--- * 'rDomainName'
+-- * 'rDomainName' - The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 --
--- * 'rDurationInYears'
+-- * 'rDurationInYears' - The number of years the domain will be registered. Domains are registered for a minimum of one year. The maximum period depends on the top-level domain. Type: Integer Default: 1 Valid values: Integer from 1 to 10 Required: Yes
 --
--- * 'rAdminContact'
+-- * 'rAdminContact' - Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 --
--- * 'rRegistrantContact'
+-- * 'rRegistrantContact' - Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 --
--- * 'rTechContact'
+-- * 'rTechContact' - Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 registerDomain
     :: Text -- ^ 'rDomainName'
     -> Natural -- ^ 'rDurationInYears'
@@ -119,51 +119,19 @@
     , _rTechContact = _Sensitive # pTechContact_
     }
 
--- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS (\"who is\") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter.
---
--- Type: Boolean
---
--- Default: 'true'
---
--- Valid values: 'true' | 'false'
---
--- Required: No
+-- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: @true@  Valid values: @true@ | @false@  Required: No
 rPrivacyProtectTechContact :: Lens' RegisterDomain (Maybe Bool)
 rPrivacyProtectTechContact = lens _rPrivacyProtectTechContact (\ s a -> s{_rPrivacyProtectTechContact = a});
 
--- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS (\"who is\") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter.
---
--- Type: Boolean
---
--- Default: 'true'
---
--- Valid values: 'true' | 'false'
---
--- Required: No
+-- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: @true@  Valid values: @true@ | @false@  Required: No
 rPrivacyProtectRegistrantContact :: Lens' RegisterDomain (Maybe Bool)
 rPrivacyProtectRegistrantContact = lens _rPrivacyProtectRegistrantContact (\ s a -> s{_rPrivacyProtectRegistrantContact = a});
 
--- | Indicates whether the domain will be automatically renewed ('true') or not ('false'). Autorenewal only takes effect after the account is charged.
---
--- Type: Boolean
---
--- Valid values: 'true' | 'false'
---
--- Default: 'true'
---
--- Required: No
+-- | Indicates whether the domain will be automatically renewed (@true@ ) or not (@false@ ). Autorenewal only takes effect after the account is charged. Type: Boolean Valid values: @true@ | @false@  Default: @true@  Required: No
 rAutoRenew :: Lens' RegisterDomain (Maybe Bool)
 rAutoRenew = lens _rAutoRenew (\ s a -> s{_rAutoRenew = a});
 
--- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS (\"who is\") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter.
---
--- Type: Boolean
---
--- Default: 'true'
---
--- Valid values: 'true' | 'false'
---
--- Required: No
+-- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: @true@  Valid values: @true@ | @false@  Required: No
 rPrivacyProtectAdminContact :: Lens' RegisterDomain (Maybe Bool)
 rPrivacyProtectAdminContact = lens _rPrivacyProtectAdminContact (\ s a -> s{_rPrivacyProtectAdminContact = a});
 
@@ -171,57 +139,23 @@
 rIdNLangCode :: Lens' RegisterDomain (Maybe Text)
 rIdNLangCode = lens _rIdNLangCode (\ s a -> s{_rIdNLangCode = a});
 
--- | The name of a domain.
---
--- Type: String
---
--- Default: None
---
--- Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported.
---
--- Required: Yes
+-- | The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 rDomainName :: Lens' RegisterDomain Text
 rDomainName = lens _rDomainName (\ s a -> s{_rDomainName = a});
 
--- | The number of years the domain will be registered. Domains are registered for a minimum of one year. The maximum period depends on the top-level domain.
---
--- Type: Integer
---
--- Default: 1
---
--- Valid values: Integer from 1 to 10
---
--- Required: Yes
+-- | The number of years the domain will be registered. Domains are registered for a minimum of one year. The maximum period depends on the top-level domain. Type: Integer Default: 1 Valid values: Integer from 1 to 10 Required: Yes
 rDurationInYears :: Lens' RegisterDomain Natural
 rDurationInYears = lens _rDurationInYears (\ s a -> s{_rDurationInYears = a}) . _Nat;
 
--- | Provides detailed contact information.
---
--- Type: Complex
---
--- Children: 'FirstName', 'MiddleName', 'LastName', 'ContactType', 'OrganizationName', 'AddressLine1', 'AddressLine2', 'City', 'State', 'CountryCode', 'ZipCode', 'PhoneNumber', 'Email', 'Fax', 'ExtraParams'
---
--- Required: Yes
+-- | Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 rAdminContact :: Lens' RegisterDomain ContactDetail
 rAdminContact = lens _rAdminContact (\ s a -> s{_rAdminContact = a}) . _Sensitive;
 
--- | Provides detailed contact information.
---
--- Type: Complex
---
--- Children: 'FirstName', 'MiddleName', 'LastName', 'ContactType', 'OrganizationName', 'AddressLine1', 'AddressLine2', 'City', 'State', 'CountryCode', 'ZipCode', 'PhoneNumber', 'Email', 'Fax', 'ExtraParams'
---
--- Required: Yes
+-- | Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 rRegistrantContact :: Lens' RegisterDomain ContactDetail
 rRegistrantContact = lens _rRegistrantContact (\ s a -> s{_rRegistrantContact = a}) . _Sensitive;
 
--- | Provides detailed contact information.
---
--- Type: Complex
---
--- Children: 'FirstName', 'MiddleName', 'LastName', 'ContactType', 'OrganizationName', 'AddressLine1', 'AddressLine2', 'City', 'State', 'CountryCode', 'ZipCode', 'PhoneNumber', 'Email', 'Fax', 'ExtraParams'
---
--- Required: Yes
+-- | Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 rTechContact :: Lens' RegisterDomain ContactDetail
 rTechContact = lens _rTechContact (\ s a -> s{_rTechContact = a}) . _Sensitive;
 
@@ -274,6 +208,8 @@
 
 -- | The RegisterDomain response includes the following element.
 --
+--
+--
 -- /See:/ 'registerDomainResponse' smart constructor.
 data RegisterDomainResponse = RegisterDomainResponse'
     { _rdrsResponseStatus :: !Int
@@ -284,9 +220,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'rdrsResponseStatus'
+-- * 'rdrsResponseStatus' - -- | The response status code.
 --
--- * 'rdrsOperationId'
+-- * 'rdrsOperationId' - Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail. Type: String Default: None Constraints: Maximum 255 characters.
 registerDomainResponse
     :: Int -- ^ 'rdrsResponseStatus'
     -> Text -- ^ 'rdrsOperationId'
@@ -297,17 +233,11 @@
     , _rdrsOperationId = pOperationId_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 rdrsResponseStatus :: Lens' RegisterDomainResponse Int
 rdrsResponseStatus = lens _rdrsResponseStatus (\ s a -> s{_rdrsResponseStatus = a});
 
--- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
+-- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail. Type: String Default: None Constraints: Maximum 255 characters.
 rdrsOperationId :: Lens' RegisterDomainResponse Text
 rdrsOperationId = lens _rdrsOperationId (\ s a -> s{_rdrsOperationId = a});
 
diff --git a/gen/Network/AWS/Route53Domains/RenewDomain.hs b/gen/Network/AWS/Route53Domains/RenewDomain.hs
--- a/gen/Network/AWS/Route53Domains/RenewDomain.hs
+++ b/gen/Network/AWS/Route53Domains/RenewDomain.hs
@@ -20,7 +20,9 @@
 --
 -- This operation renews a domain for the specified number of years. The cost of renewing your domain is billed to your AWS account.
 --
--- We recommend that you renew your domain several weeks before the expiration date. Some TLD registries delete domains before the expiration date if you haven\'t renewed far enough in advance. For more information about renewing domain registration, see <http://docs.aws.amazon.com/console/route53/domain-renew Renewing Registration for a Domain> in the Amazon Route 53 documentation.
+--
+-- We recommend that you renew your domain several weeks before the expiration date. Some TLD registries delete domains before the expiration date if you haven't renewed far enough in advance. For more information about renewing domain registration, see <http://docs.aws.amazon.com/console/route53/domain-renew Renewing Registration for a Domain> in the Amazon Route 53 documentation.
+--
 module Network.AWS.Route53Domains.RenewDomain
     (
     -- * Creating a Request
@@ -46,8 +48,10 @@
 import           Network.AWS.Route53Domains.Types
 import           Network.AWS.Route53Domains.Types.Product
 
--- | A 'RenewDomain' request includes the number of years that you want to renew for and the current expiration year.
+-- | A @RenewDomain@ request includes the number of years that you want to renew for and the current expiration year.
 --
+--
+--
 -- /See:/ 'renewDomain' smart constructor.
 data RenewDomain = RenewDomain'
     { _rdDurationInYears   :: !(Maybe Nat)
@@ -59,11 +63,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'rdDurationInYears'
+-- * 'rdDurationInYears' - The number of years that you want to renew the domain for. The maximum number of years depends on the top-level domain. For the range of valid values for your domain, see <http://docs.aws.amazon.com/console/route53/domain-tld-list Domains that You Can Register with Amazon Route 53> in the Amazon Route 53 documentation. Type: Integer Default: 1 Valid values: Integer from 1 to 10 Required: No
 --
--- * 'rdDomainName'
+-- * 'rdDomainName' - Undocumented member.
 --
--- * 'rdCurrentExpiryYear'
+-- * 'rdCurrentExpiryYear' - The year when the registration for the domain is set to expire. This value must match the current expiration date for the domain. Type: Integer Default: None Valid values: Integer Required: Yes
 renewDomain
     :: Text -- ^ 'rdDomainName'
     -> Int -- ^ 'rdCurrentExpiryYear'
@@ -75,15 +79,7 @@
     , _rdCurrentExpiryYear = pCurrentExpiryYear_
     }
 
--- | The number of years that you want to renew the domain for. The maximum number of years depends on the top-level domain. For the range of valid values for your domain, see <http://docs.aws.amazon.com/console/route53/domain-tld-list Domains that You Can Register with Amazon Route 53> in the Amazon Route 53 documentation.
---
--- Type: Integer
---
--- Default: 1
---
--- Valid values: Integer from 1 to 10
---
--- Required: No
+-- | The number of years that you want to renew the domain for. The maximum number of years depends on the top-level domain. For the range of valid values for your domain, see <http://docs.aws.amazon.com/console/route53/domain-tld-list Domains that You Can Register with Amazon Route 53> in the Amazon Route 53 documentation. Type: Integer Default: 1 Valid values: Integer from 1 to 10 Required: No
 rdDurationInYears :: Lens' RenewDomain (Maybe Natural)
 rdDurationInYears = lens _rdDurationInYears (\ s a -> s{_rdDurationInYears = a}) . mapping _Nat;
 
@@ -91,15 +87,7 @@
 rdDomainName :: Lens' RenewDomain Text
 rdDomainName = lens _rdDomainName (\ s a -> s{_rdDomainName = a});
 
--- | The year when the registration for the domain is set to expire. This value must match the current expiration date for the domain.
---
--- Type: Integer
---
--- Default: None
---
--- Valid values: Integer
---
--- Required: Yes
+-- | The year when the registration for the domain is set to expire. This value must match the current expiration date for the domain. Type: Integer Default: None Valid values: Integer Required: Yes
 rdCurrentExpiryYear :: Lens' RenewDomain Int
 rdCurrentExpiryYear = lens _rdCurrentExpiryYear (\ s a -> s{_rdCurrentExpiryYear = a});
 
@@ -150,9 +138,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'rrsResponseStatus'
+-- * 'rrsResponseStatus' - -- | The response status code.
 --
--- * 'rrsOperationId'
+-- * 'rrsOperationId' - Undocumented member.
 renewDomainResponse
     :: Int -- ^ 'rrsResponseStatus'
     -> Text -- ^ 'rrsOperationId'
@@ -163,7 +151,7 @@
     , _rrsOperationId = pOperationId_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 rrsResponseStatus :: Lens' RenewDomainResponse Int
 rrsResponseStatus = lens _rrsResponseStatus (\ s a -> s{_rrsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Route53Domains/ResendContactReachabilityEmail.hs b/gen/Network/AWS/Route53Domains/ResendContactReachabilityEmail.hs
--- a/gen/Network/AWS/Route53Domains/ResendContactReachabilityEmail.hs
+++ b/gen/Network/AWS/Route53Domains/ResendContactReachabilityEmail.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- For operations that require confirmation that the email address for the registrant contact is valid, such as registering a new domain, this operation resends the confirmation email to the current email address for the registrant contact.
+--
+--
 module Network.AWS.Route53Domains.ResendContactReachabilityEmail
     (
     -- * Creating a Request
@@ -53,7 +55,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'rcreDomainName'
+-- * 'rcreDomainName' - The name of the domain for which you want Amazon Route 53 to resend a confirmation email to the registrant contact. Type: String Default: None Required: Yes
 resendContactReachabilityEmail
     :: ResendContactReachabilityEmail
 resendContactReachabilityEmail =
@@ -61,13 +63,7 @@
     { _rcreDomainName = Nothing
     }
 
--- | The name of the domain for which you want Amazon Route 53 to resend a confirmation email to the registrant contact.
---
--- Type: String
---
--- Default: None
---
--- Required: Yes
+-- | The name of the domain for which you want Amazon Route 53 to resend a confirmation email to the registrant contact. Type: String Default: None Required: Yes
 rcreDomainName :: Lens' ResendContactReachabilityEmail (Maybe Text)
 rcreDomainName = lens _rcreDomainName (\ s a -> s{_rcreDomainName = a});
 
@@ -122,13 +118,13 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'rcrersDomainName'
+-- * 'rcrersDomainName' - The domain name for which you requested a confirmation email.
 --
--- * 'rcrersEmailAddress'
+-- * 'rcrersEmailAddress' - The email address for the registrant contact at the time that we sent the verification email.
 --
--- * 'rcrersIsAlreadyVerified'
+-- * 'rcrersIsAlreadyVerified' - True if the email address for the registrant contact has already been verified, and false otherwise. If the email address has already been verified, we don't send another confirmation email.
 --
--- * 'rcrersResponseStatus'
+-- * 'rcrersResponseStatus' - -- | The response status code.
 resendContactReachabilityEmailResponse
     :: Int -- ^ 'rcrersResponseStatus'
     -> ResendContactReachabilityEmailResponse
@@ -148,11 +144,11 @@
 rcrersEmailAddress :: Lens' ResendContactReachabilityEmailResponse (Maybe Text)
 rcrersEmailAddress = lens _rcrersEmailAddress (\ s a -> s{_rcrersEmailAddress = a});
 
--- | True if the email address for the registrant contact has already been verified, and false otherwise. If the email address has already been verified, we don\'t send another confirmation email.
+-- | True if the email address for the registrant contact has already been verified, and false otherwise. If the email address has already been verified, we don't send another confirmation email.
 rcrersIsAlreadyVerified :: Lens' ResendContactReachabilityEmailResponse (Maybe Bool)
 rcrersIsAlreadyVerified = lens _rcrersIsAlreadyVerified (\ s a -> s{_rcrersIsAlreadyVerified = a});
 
--- | The response status code.
+-- | -- | The response status code.
 rcrersResponseStatus :: Lens' ResendContactReachabilityEmailResponse Int
 rcrersResponseStatus = lens _rcrersResponseStatus (\ s a -> s{_rcrersResponseStatus = a});
 
diff --git a/gen/Network/AWS/Route53Domains/RetrieveDomainAuthCode.hs b/gen/Network/AWS/Route53Domains/RetrieveDomainAuthCode.hs
--- a/gen/Network/AWS/Route53Domains/RetrieveDomainAuthCode.hs
+++ b/gen/Network/AWS/Route53Domains/RetrieveDomainAuthCode.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- This operation returns the AuthCode for the domain. To transfer a domain to another registrar, you provide this value to the new registrar.
+--
+--
 module Network.AWS.Route53Domains.RetrieveDomainAuthCode
     (
     -- * Creating a Request
@@ -44,6 +46,8 @@
 
 -- | The RetrieveDomainAuthCode request includes the following element.
 --
+--
+--
 -- /See:/ 'retrieveDomainAuthCode' smart constructor.
 newtype RetrieveDomainAuthCode = RetrieveDomainAuthCode'
     { _rdacDomainName :: Text
@@ -53,7 +57,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'rdacDomainName'
+-- * 'rdacDomainName' - The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 retrieveDomainAuthCode
     :: Text -- ^ 'rdacDomainName'
     -> RetrieveDomainAuthCode
@@ -62,15 +66,7 @@
     { _rdacDomainName = pDomainName_
     }
 
--- | The name of a domain.
---
--- Type: String
---
--- Default: None
---
--- Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported.
---
--- Required: Yes
+-- | The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 rdacDomainName :: Lens' RetrieveDomainAuthCode Text
 rdacDomainName = lens _rdacDomainName (\ s a -> s{_rdacDomainName = a});
 
@@ -111,6 +107,8 @@
 
 -- | The RetrieveDomainAuthCode response includes the following element.
 --
+--
+--
 -- /See:/ 'retrieveDomainAuthCodeResponse' smart constructor.
 data RetrieveDomainAuthCodeResponse = RetrieveDomainAuthCodeResponse'
     { _rdacrsResponseStatus :: !Int
@@ -121,9 +119,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'rdacrsResponseStatus'
+-- * 'rdacrsResponseStatus' - -- | The response status code.
 --
--- * 'rdacrsAuthCode'
+-- * 'rdacrsAuthCode' - The authorization code for the domain. Type: String
 retrieveDomainAuthCodeResponse
     :: Int -- ^ 'rdacrsResponseStatus'
     -> Text -- ^ 'rdacrsAuthCode'
@@ -134,13 +132,11 @@
     , _rdacrsAuthCode = _Sensitive # pAuthCode_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 rdacrsResponseStatus :: Lens' RetrieveDomainAuthCodeResponse Int
 rdacrsResponseStatus = lens _rdacrsResponseStatus (\ s a -> s{_rdacrsResponseStatus = a});
 
--- | The authorization code for the domain.
---
--- Type: String
+-- | The authorization code for the domain. Type: String
 rdacrsAuthCode :: Lens' RetrieveDomainAuthCodeResponse Text
 rdacrsAuthCode = lens _rdacrsAuthCode (\ s a -> s{_rdacrsAuthCode = a}) . _Sensitive;
 
diff --git a/gen/Network/AWS/Route53Domains/TransferDomain.hs b/gen/Network/AWS/Route53Domains/TransferDomain.hs
--- a/gen/Network/AWS/Route53Domains/TransferDomain.hs
+++ b/gen/Network/AWS/Route53Domains/TransferDomain.hs
@@ -20,13 +20,13 @@
 --
 -- This operation transfers a domain from another registrar to Amazon Route 53. When the transfer is complete, the domain is registered with the AWS registrar partner, Gandi.
 --
+--
 -- For transfer requirements, a detailed procedure, and information about viewing the status of a domain transfer, see <http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-transfer-to-route-53.html Transferring Registration for a Domain to Amazon Route 53> in the Amazon Route 53 Developer Guide.
 --
 -- If the registrar for your domain is also the DNS service provider for the domain, we highly recommend that you consider transferring your DNS service to Amazon Route 53 or to another DNS service provider before you transfer your registration. Some registrars provide free DNS service when you purchase a domain registration. When you transfer the registration, the previous registrar will not renew your domain registration and could end your DNS service at any time.
 --
--- Caution! If the registrar for your domain is also the DNS service provider for the domain and you don\'t transfer DNS service to another provider, your website, email, and the web applications associated with the domain might become unavailable.
+-- If the transfer is successful, this method returns an operation ID that you can use to track the progress and completion of the action. If the transfer doesn't complete successfully, the domain registrant will be notified by email.
 --
--- If the transfer is successful, this method returns an operation ID that you can use to track the progress and completion of the action. If the transfer doesn\'t complete successfully, the domain registrant will be notified by email.
 module Network.AWS.Route53Domains.TransferDomain
     (
     -- * Creating a Request
@@ -63,6 +63,8 @@
 
 -- | The TransferDomain request includes the following elements.
 --
+--
+--
 -- /See:/ 'transferDomain' smart constructor.
 data TransferDomain = TransferDomain'
     { _tdPrivacyProtectTechContact       :: !(Maybe Bool)
@@ -83,29 +85,29 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'tdPrivacyProtectTechContact'
+-- * 'tdPrivacyProtectTechContact' - Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: @true@  Valid values: @true@ | @false@  Required: No
 --
--- * 'tdPrivacyProtectRegistrantContact'
+-- * 'tdPrivacyProtectRegistrantContact' - Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: @true@  Valid values: @true@ | @false@  Required: No
 --
--- * 'tdAutoRenew'
+-- * 'tdAutoRenew' - Indicates whether the domain will be automatically renewed (true) or not (false). Autorenewal only takes effect after the account is charged. Type: Boolean Valid values: @true@ | @false@  Default: true Required: No
 --
--- * 'tdPrivacyProtectAdminContact'
+-- * 'tdPrivacyProtectAdminContact' - Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: @true@  Valid values: @true@ | @false@  Required: No
 --
--- * 'tdIdNLangCode'
+-- * 'tdIdNLangCode' - Reserved for future use.
 --
--- * 'tdAuthCode'
+-- * 'tdAuthCode' - The authorization code for the domain. You get this value from the current registrar. Type: String Required: Yes
 --
--- * 'tdNameservers'
+-- * 'tdNameservers' - Contains details for the host and glue IP addresses. Type: Complex Children: @GlueIps@ , @Name@  Required: No
 --
--- * 'tdDomainName'
+-- * 'tdDomainName' - The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 --
--- * 'tdDurationInYears'
+-- * 'tdDurationInYears' - The number of years the domain will be registered. Domains are registered for a minimum of one year. The maximum period depends on the top-level domain. Type: Integer Default: 1 Valid values: Integer from 1 to 10 Required: Yes
 --
--- * 'tdAdminContact'
+-- * 'tdAdminContact' - Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 --
--- * 'tdRegistrantContact'
+-- * 'tdRegistrantContact' - Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 --
--- * 'tdTechContact'
+-- * 'tdTechContact' - Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 transferDomain
     :: Text -- ^ 'tdDomainName'
     -> Natural -- ^ 'tdDurationInYears'
@@ -129,51 +131,19 @@
     , _tdTechContact = _Sensitive # pTechContact_
     }
 
--- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS (\"who is\") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter.
---
--- Type: Boolean
---
--- Default: 'true'
---
--- Valid values: 'true' | 'false'
---
--- Required: No
+-- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: @true@  Valid values: @true@ | @false@  Required: No
 tdPrivacyProtectTechContact :: Lens' TransferDomain (Maybe Bool)
 tdPrivacyProtectTechContact = lens _tdPrivacyProtectTechContact (\ s a -> s{_tdPrivacyProtectTechContact = a});
 
--- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS (\"who is\") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter.
---
--- Type: Boolean
---
--- Default: 'true'
---
--- Valid values: 'true' | 'false'
---
--- Required: No
+-- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: @true@  Valid values: @true@ | @false@  Required: No
 tdPrivacyProtectRegistrantContact :: Lens' TransferDomain (Maybe Bool)
 tdPrivacyProtectRegistrantContact = lens _tdPrivacyProtectRegistrantContact (\ s a -> s{_tdPrivacyProtectRegistrantContact = a});
 
--- | Indicates whether the domain will be automatically renewed (true) or not (false). Autorenewal only takes effect after the account is charged.
---
--- Type: Boolean
---
--- Valid values: 'true' | 'false'
---
--- Default: true
---
--- Required: No
+-- | Indicates whether the domain will be automatically renewed (true) or not (false). Autorenewal only takes effect after the account is charged. Type: Boolean Valid values: @true@ | @false@  Default: true Required: No
 tdAutoRenew :: Lens' TransferDomain (Maybe Bool)
 tdAutoRenew = lens _tdAutoRenew (\ s a -> s{_tdAutoRenew = a});
 
--- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS (\"who is\") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter.
---
--- Type: Boolean
---
--- Default: 'true'
---
--- Valid values: 'true' | 'false'
---
--- Required: No
+-- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: @true@  Valid values: @true@ | @false@  Required: No
 tdPrivacyProtectAdminContact :: Lens' TransferDomain (Maybe Bool)
 tdPrivacyProtectAdminContact = lens _tdPrivacyProtectAdminContact (\ s a -> s{_tdPrivacyProtectAdminContact = a});
 
@@ -181,75 +151,31 @@
 tdIdNLangCode :: Lens' TransferDomain (Maybe Text)
 tdIdNLangCode = lens _tdIdNLangCode (\ s a -> s{_tdIdNLangCode = a});
 
--- | The authorization code for the domain. You get this value from the current registrar.
---
--- Type: String
---
--- Required: Yes
+-- | The authorization code for the domain. You get this value from the current registrar. Type: String Required: Yes
 tdAuthCode :: Lens' TransferDomain (Maybe Text)
 tdAuthCode = lens _tdAuthCode (\ s a -> s{_tdAuthCode = a}) . mapping _Sensitive;
 
--- | Contains details for the host and glue IP addresses.
---
--- Type: Complex
---
--- Children: 'GlueIps', 'Name'
---
--- Required: No
+-- | Contains details for the host and glue IP addresses. Type: Complex Children: @GlueIps@ , @Name@  Required: No
 tdNameservers :: Lens' TransferDomain [Nameserver]
 tdNameservers = lens _tdNameservers (\ s a -> s{_tdNameservers = a}) . _Default . _Coerce;
 
--- | The name of a domain.
---
--- Type: String
---
--- Default: None
---
--- Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported.
---
--- Required: Yes
+-- | The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 tdDomainName :: Lens' TransferDomain Text
 tdDomainName = lens _tdDomainName (\ s a -> s{_tdDomainName = a});
 
--- | The number of years the domain will be registered. Domains are registered for a minimum of one year. The maximum period depends on the top-level domain.
---
--- Type: Integer
---
--- Default: 1
---
--- Valid values: Integer from 1 to 10
---
--- Required: Yes
+-- | The number of years the domain will be registered. Domains are registered for a minimum of one year. The maximum period depends on the top-level domain. Type: Integer Default: 1 Valid values: Integer from 1 to 10 Required: Yes
 tdDurationInYears :: Lens' TransferDomain Natural
 tdDurationInYears = lens _tdDurationInYears (\ s a -> s{_tdDurationInYears = a}) . _Nat;
 
--- | Provides detailed contact information.
---
--- Type: Complex
---
--- Children: 'FirstName', 'MiddleName', 'LastName', 'ContactType', 'OrganizationName', 'AddressLine1', 'AddressLine2', 'City', 'State', 'CountryCode', 'ZipCode', 'PhoneNumber', 'Email', 'Fax', 'ExtraParams'
---
--- Required: Yes
+-- | Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 tdAdminContact :: Lens' TransferDomain ContactDetail
 tdAdminContact = lens _tdAdminContact (\ s a -> s{_tdAdminContact = a}) . _Sensitive;
 
--- | Provides detailed contact information.
---
--- Type: Complex
---
--- Children: 'FirstName', 'MiddleName', 'LastName', 'ContactType', 'OrganizationName', 'AddressLine1', 'AddressLine2', 'City', 'State', 'CountryCode', 'ZipCode', 'PhoneNumber', 'Email', 'Fax', 'ExtraParams'
---
--- Required: Yes
+-- | Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 tdRegistrantContact :: Lens' TransferDomain ContactDetail
 tdRegistrantContact = lens _tdRegistrantContact (\ s a -> s{_tdRegistrantContact = a}) . _Sensitive;
 
--- | Provides detailed contact information.
---
--- Type: Complex
---
--- Children: 'FirstName', 'MiddleName', 'LastName', 'ContactType', 'OrganizationName', 'AddressLine1', 'AddressLine2', 'City', 'State', 'CountryCode', 'ZipCode', 'PhoneNumber', 'Email', 'Fax', 'ExtraParams'
---
--- Required: Yes
+-- | Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 tdTechContact :: Lens' TransferDomain ContactDetail
 tdTechContact = lens _tdTechContact (\ s a -> s{_tdTechContact = a}) . _Sensitive;
 
@@ -304,6 +230,8 @@
 
 -- | The TranserDomain response includes the following element.
 --
+--
+--
 -- /See:/ 'transferDomainResponse' smart constructor.
 data TransferDomainResponse = TransferDomainResponse'
     { _tdrsResponseStatus :: !Int
@@ -314,9 +242,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'tdrsResponseStatus'
+-- * 'tdrsResponseStatus' - -- | The response status code.
 --
--- * 'tdrsOperationId'
+-- * 'tdrsOperationId' - Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail. Type: String Default: None Constraints: Maximum 255 characters.
 transferDomainResponse
     :: Int -- ^ 'tdrsResponseStatus'
     -> Text -- ^ 'tdrsOperationId'
@@ -327,17 +255,11 @@
     , _tdrsOperationId = pOperationId_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 tdrsResponseStatus :: Lens' TransferDomainResponse Int
 tdrsResponseStatus = lens _tdrsResponseStatus (\ s a -> s{_tdrsResponseStatus = a});
 
--- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
+-- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail. Type: String Default: None Constraints: Maximum 255 characters.
 tdrsOperationId :: Lens' TransferDomainResponse Text
 tdrsOperationId = lens _tdrsOperationId (\ s a -> s{_tdrsOperationId = a});
 
diff --git a/gen/Network/AWS/Route53Domains/Types.hs b/gen/Network/AWS/Route53Domains/Types.hs
--- a/gen/Network/AWS/Route53Domains/Types.hs
+++ b/gen/Network/AWS/Route53Domains/Types.hs
@@ -118,7 +118,7 @@
 import           Network.AWS.Route53Domains.Types.Sum
 import           Network.AWS.Sign.V4
 
--- | API version '2014-05-15' of the Amazon Route 53 Domains SDK configuration.
+-- | API version @2014-05-15@ of the Amazon Route 53 Domains SDK configuration.
 route53Domains :: Service
 route53Domains =
     Service
@@ -153,25 +153,37 @@
       | otherwise = Nothing
 
 -- | The requested item is not acceptable. For example, for an OperationId it may refer to the ID of an operation that is already completed. For a domain name, it may not be a valid domain name or belong to the requester account.
+--
+--
 _InvalidInput :: AsError a => Getting (First ServiceError) a ServiceError
 _InvalidInput = _ServiceError . hasCode "InvalidInput"
 
 -- | The number of operations or jobs running exceeded the allowed threshold for the account.
+--
+--
 _OperationLimitExceeded :: AsError a => Getting (First ServiceError) a ServiceError
 _OperationLimitExceeded = _ServiceError . hasCode "OperationLimitExceeded"
 
 -- | The number of domains has exceeded the allowed threshold for the account.
+--
+--
 _DomainLimitExceeded :: AsError a => Getting (First ServiceError) a ServiceError
 _DomainLimitExceeded = _ServiceError . hasCode "DomainLimitExceeded"
 
 -- | Amazon Route 53 does not support this top-level domain.
+--
+--
 _UnsupportedTLD :: AsError a => Getting (First ServiceError) a ServiceError
 _UnsupportedTLD = _ServiceError . hasCode "UnsupportedTLD"
 
 -- | The top-level domain does not support this operation.
+--
+--
 _TLDRulesViolation :: AsError a => Getting (First ServiceError) a ServiceError
 _TLDRulesViolation = _ServiceError . hasCode "TLDRulesViolation"
 
 -- | The request is already in progress for the domain.
+--
+--
 _DuplicateRequest :: AsError a => Getting (First ServiceError) a ServiceError
 _DuplicateRequest = _ServiceError . hasCode "DuplicateRequest"
diff --git a/gen/Network/AWS/Route53Domains/Types/Product.hs b/gen/Network/AWS/Route53Domains/Types/Product.hs
--- a/gen/Network/AWS/Route53Domains/Types/Product.hs
+++ b/gen/Network/AWS/Route53Domains/Types/Product.hs
@@ -34,15 +34,15 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'brOperation'
+-- * 'brOperation' - The operation that you were charged for. Type: String Valid values:     * @REGISTER_DOMAIN@     * @TRANSFER_IN_DOMAIN@     * @RENEW_DOMAIN@     * @CHANGE_DOMAIN_OWNER@
 --
--- * 'brInvoiceId'
+-- * 'brInvoiceId' - The ID of the invoice that is associated with the billing record. Type: String
 --
--- * 'brDomainName'
+-- * 'brDomainName' - The name of a domain. Type: String
 --
--- * 'brBillDate'
+-- * 'brBillDate' - The date that the operation was billed, in Unix format. Type: Double
 --
--- * 'brPrice'
+-- * 'brPrice' - The price that you were charged for the operation, in US dollars. Type: Double Example value: 12.0
 billingRecord
     :: BillingRecord
 billingRecord =
@@ -54,42 +54,23 @@
     , _brPrice = Nothing
     }
 
--- | The operation that you were charged for.
---
--- Type: String
---
--- Valid values:
---
--- -   'REGISTER_DOMAIN'
--- -   'TRANSFER_IN_DOMAIN'
--- -   'RENEW_DOMAIN'
--- -   'CHANGE_DOMAIN_OWNER'
+-- | The operation that you were charged for. Type: String Valid values:     * @REGISTER_DOMAIN@     * @TRANSFER_IN_DOMAIN@     * @RENEW_DOMAIN@     * @CHANGE_DOMAIN_OWNER@
 brOperation :: Lens' BillingRecord (Maybe OperationType)
 brOperation = lens _brOperation (\ s a -> s{_brOperation = a});
 
--- | The ID of the invoice that is associated with the billing record.
---
--- Type: String
+-- | The ID of the invoice that is associated with the billing record. Type: String
 brInvoiceId :: Lens' BillingRecord (Maybe Text)
 brInvoiceId = lens _brInvoiceId (\ s a -> s{_brInvoiceId = a});
 
--- | The name of a domain.
---
--- Type: String
+-- | The name of a domain. Type: String
 brDomainName :: Lens' BillingRecord (Maybe Text)
 brDomainName = lens _brDomainName (\ s a -> s{_brDomainName = a});
 
--- | The date that the operation was billed, in Unix format.
---
--- Type: Double
+-- | The date that the operation was billed, in Unix format. Type: Double
 brBillDate :: Lens' BillingRecord (Maybe UTCTime)
 brBillDate = lens _brBillDate (\ s a -> s{_brBillDate = a}) . mapping _Time;
 
--- | The price that you were charged for the operation, in US dollars.
---
--- Type: Double
---
--- Example value: 12.0
+-- | The price that you were charged for the operation, in US dollars. Type: Double Example value: 12.0
 brPrice :: Lens' BillingRecord (Maybe Double)
 brPrice = lens _brPrice (\ s a -> s{_brPrice = a});
 
@@ -109,6 +90,8 @@
 
 -- | ContactDetail includes the following elements.
 --
+--
+--
 -- /See:/ 'contactDetail' smart constructor.
 data ContactDetail = ContactDetail'
     { _cdOrganizationName :: !(Maybe Text)
@@ -131,33 +114,33 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'cdOrganizationName'
+-- * 'cdOrganizationName' - Name of the organization for contact types other than @PERSON@ . Type: String Default: None Constraints: Maximum 255 characters. Contact type must not be @PERSON@ . Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: No
 --
--- * 'cdEmail'
+-- * 'cdEmail' - Email address of the contact. Type: String Default: None Constraints: Maximum 254 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 --
--- * 'cdState'
+-- * 'cdState' - The state or province of the contact's city. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: No
 --
--- * 'cdFax'
+-- * 'cdFax' - Fax number of the contact. Type: String Default: None Constraints: Phone number must be specified in the format "+[country dialing code].[number including any area code]". For example, a US phone number might appear as @"+1.1234567890"@ . Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: No
 --
--- * 'cdLastName'
+-- * 'cdLastName' - Last name of contact. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 --
--- * 'cdExtraParams'
+-- * 'cdExtraParams' - A list of name-value pairs for parameters required by certain top-level domains. Type: Complex Default: None Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Children: @Name@ , @Value@  Required: No
 --
--- * 'cdZipCode'
+-- * 'cdZipCode' - The zip or postal code of the contact's address. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: No
 --
--- * 'cdAddressLine1'
+-- * 'cdAddressLine1' - First line of the contact's address. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 --
--- * 'cdCity'
+-- * 'cdCity' - The city of the contact's address. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 --
--- * 'cdPhoneNumber'
+-- * 'cdPhoneNumber' - The phone number of the contact. Type: String Default: None Constraints: Phone number must be specified in the format "+[country dialing code].[number including any area code>]". For example, a US phone number might appear as @"+1.1234567890"@ . Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 --
--- * 'cdAddressLine2'
+-- * 'cdAddressLine2' - Second line of contact's address, if any. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: No
 --
--- * 'cdFirstName'
+-- * 'cdFirstName' - First name of contact. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 --
--- * 'cdCountryCode'
+-- * 'cdCountryCode' - Code for the country of the contact's address. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 --
--- * 'cdContactType'
+-- * 'cdContactType' - Indicates whether the contact is a person, company, association, or public organization. If you choose an option other than @PERSON@ , you must enter an organization name, and you can't enable privacy protection for the contact. Type: String Default: None Constraints: Maximum 255 characters. Valid values: @PERSON@ | @COMPANY@ | @ASSOCIATION@ | @PUBLIC_BODY@  Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 contactDetail
     :: ContactDetail
 contactDetail =
@@ -178,201 +161,59 @@
     , _cdContactType = Nothing
     }
 
--- | Name of the organization for contact types other than 'PERSON'.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters. Contact type must not be 'PERSON'.
---
--- Parents: 'RegistrantContact', 'AdminContact', 'TechContact'
---
--- Required: No
+-- | Name of the organization for contact types other than @PERSON@ . Type: String Default: None Constraints: Maximum 255 characters. Contact type must not be @PERSON@ . Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: No
 cdOrganizationName :: Lens' ContactDetail (Maybe Text)
 cdOrganizationName = lens _cdOrganizationName (\ s a -> s{_cdOrganizationName = a});
 
--- | Email address of the contact.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 254 characters.
---
--- Parents: 'RegistrantContact', 'AdminContact', 'TechContact'
---
--- Required: Yes
+-- | Email address of the contact. Type: String Default: None Constraints: Maximum 254 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 cdEmail :: Lens' ContactDetail (Maybe Text)
 cdEmail = lens _cdEmail (\ s a -> s{_cdEmail = a});
 
--- | The state or province of the contact\'s city.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
---
--- Parents: 'RegistrantContact', 'AdminContact', 'TechContact'
---
--- Required: No
+-- | The state or province of the contact's city. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: No
 cdState :: Lens' ContactDetail (Maybe Text)
 cdState = lens _cdState (\ s a -> s{_cdState = a});
 
--- | Fax number of the contact.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Phone number must be specified in the format \"+[country dialing code].[number including any area code]\". For example, a US phone number might appear as '\"+1.1234567890\"'.
---
--- Parents: 'RegistrantContact', 'AdminContact', 'TechContact'
---
--- Required: No
+-- | Fax number of the contact. Type: String Default: None Constraints: Phone number must be specified in the format "+[country dialing code].[number including any area code]". For example, a US phone number might appear as @"+1.1234567890"@ . Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: No
 cdFax :: Lens' ContactDetail (Maybe Text)
 cdFax = lens _cdFax (\ s a -> s{_cdFax = a});
 
--- | Last name of contact.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
---
--- Parents: 'RegistrantContact', 'AdminContact', 'TechContact'
---
--- Required: Yes
+-- | Last name of contact. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 cdLastName :: Lens' ContactDetail (Maybe Text)
 cdLastName = lens _cdLastName (\ s a -> s{_cdLastName = a});
 
--- | A list of name-value pairs for parameters required by certain top-level domains.
---
--- Type: Complex
---
--- Default: None
---
--- Parents: 'RegistrantContact', 'AdminContact', 'TechContact'
---
--- Children: 'Name', 'Value'
---
--- Required: No
+-- | A list of name-value pairs for parameters required by certain top-level domains. Type: Complex Default: None Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Children: @Name@ , @Value@  Required: No
 cdExtraParams :: Lens' ContactDetail [ExtraParam]
 cdExtraParams = lens _cdExtraParams (\ s a -> s{_cdExtraParams = a}) . _Default . _Coerce;
 
--- | The zip or postal code of the contact\'s address.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
---
--- Parents: 'RegistrantContact', 'AdminContact', 'TechContact'
---
--- Required: No
+-- | The zip or postal code of the contact's address. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: No
 cdZipCode :: Lens' ContactDetail (Maybe Text)
 cdZipCode = lens _cdZipCode (\ s a -> s{_cdZipCode = a});
 
--- | First line of the contact\'s address.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
---
--- Parents: 'RegistrantContact', 'AdminContact', 'TechContact'
---
--- Required: Yes
+-- | First line of the contact's address. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 cdAddressLine1 :: Lens' ContactDetail (Maybe Text)
 cdAddressLine1 = lens _cdAddressLine1 (\ s a -> s{_cdAddressLine1 = a});
 
--- | The city of the contact\'s address.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
---
--- Parents: 'RegistrantContact', 'AdminContact', 'TechContact'
---
--- Required: Yes
+-- | The city of the contact's address. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 cdCity :: Lens' ContactDetail (Maybe Text)
 cdCity = lens _cdCity (\ s a -> s{_cdCity = a});
 
--- | The phone number of the contact.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Phone number must be specified in the format \"+[country dialing code].[number including any area code>]\". For example, a US phone number might appear as '\"+1.1234567890\"'.
---
--- Parents: 'RegistrantContact', 'AdminContact', 'TechContact'
---
--- Required: Yes
+-- | The phone number of the contact. Type: String Default: None Constraints: Phone number must be specified in the format "+[country dialing code].[number including any area code>]". For example, a US phone number might appear as @"+1.1234567890"@ . Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 cdPhoneNumber :: Lens' ContactDetail (Maybe Text)
 cdPhoneNumber = lens _cdPhoneNumber (\ s a -> s{_cdPhoneNumber = a});
 
--- | Second line of contact\'s address, if any.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
---
--- Parents: 'RegistrantContact', 'AdminContact', 'TechContact'
---
--- Required: No
+-- | Second line of contact's address, if any. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: No
 cdAddressLine2 :: Lens' ContactDetail (Maybe Text)
 cdAddressLine2 = lens _cdAddressLine2 (\ s a -> s{_cdAddressLine2 = a});
 
--- | First name of contact.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
---
--- Parents: 'RegistrantContact', 'AdminContact', 'TechContact'
---
--- Required: Yes
+-- | First name of contact. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 cdFirstName :: Lens' ContactDetail (Maybe Text)
 cdFirstName = lens _cdFirstName (\ s a -> s{_cdFirstName = a});
 
--- | Code for the country of the contact\'s address.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
---
--- Parents: 'RegistrantContact', 'AdminContact', 'TechContact'
---
--- Required: Yes
+-- | Code for the country of the contact's address. Type: String Default: None Constraints: Maximum 255 characters. Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 cdCountryCode :: Lens' ContactDetail (Maybe CountryCode)
 cdCountryCode = lens _cdCountryCode (\ s a -> s{_cdCountryCode = a});
 
--- | Indicates whether the contact is a person, company, association, or public organization. If you choose an option other than 'PERSON', you must enter an organization name, and you can\'t enable privacy protection for the contact.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
---
--- Valid values: 'PERSON' | 'COMPANY' | 'ASSOCIATION' | 'PUBLIC_BODY'
---
--- Parents: 'RegistrantContact', 'AdminContact', 'TechContact'
---
--- Required: Yes
+-- | Indicates whether the contact is a person, company, association, or public organization. If you choose an option other than @PERSON@ , you must enter an organization name, and you can't enable privacy protection for the contact. Type: String Default: None Constraints: Maximum 255 characters. Valid values: @PERSON@ | @COMPANY@ | @ASSOCIATION@ | @PUBLIC_BODY@  Parents: @RegistrantContact@ , @AdminContact@ , @TechContact@  Required: Yes
 cdContactType :: Lens' ContactDetail (Maybe ContactType)
 cdContactType = lens _cdContactType (\ s a -> s{_cdContactType = a});
 
@@ -427,9 +268,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'dAvailability'
+-- * 'dAvailability' - Undocumented member.
 --
--- * 'dDomainName'
+-- * 'dDomainName' - Undocumented member.
 domainSuggestion
     :: DomainSuggestion
 domainSuggestion =
@@ -469,13 +310,13 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'dsExpiry'
+-- * 'dsExpiry' - Expiration date of the domain in Coordinated Universal Time (UTC). Type: Long
 --
--- * 'dsTransferLock'
+-- * 'dsTransferLock' - Indicates whether a domain is locked from unauthorized transfer to another party. Type: Boolean Valid values: @True@ | @False@
 --
--- * 'dsAutoRenew'
+-- * 'dsAutoRenew' - Indicates whether the domain is automatically renewed upon expiration. Type: Boolean Valid values: @True@ | @False@
 --
--- * 'dsDomainName'
+-- * 'dsDomainName' - The name of a domain. Type: String
 domainSummary
     :: Text -- ^ 'dsDomainName'
     -> DomainSummary
@@ -487,31 +328,19 @@
     , _dsDomainName = pDomainName_
     }
 
--- | Expiration date of the domain in Coordinated Universal Time (UTC).
---
--- Type: Long
+-- | Expiration date of the domain in Coordinated Universal Time (UTC). Type: Long
 dsExpiry :: Lens' DomainSummary (Maybe UTCTime)
 dsExpiry = lens _dsExpiry (\ s a -> s{_dsExpiry = a}) . mapping _Time;
 
--- | Indicates whether a domain is locked from unauthorized transfer to another party.
---
--- Type: Boolean
---
--- Valid values: 'True' | 'False'
+-- | Indicates whether a domain is locked from unauthorized transfer to another party. Type: Boolean Valid values: @True@ | @False@
 dsTransferLock :: Lens' DomainSummary (Maybe Bool)
 dsTransferLock = lens _dsTransferLock (\ s a -> s{_dsTransferLock = a});
 
--- | Indicates whether the domain is automatically renewed upon expiration.
---
--- Type: Boolean
---
--- Valid values: 'True' | 'False'
+-- | Indicates whether the domain is automatically renewed upon expiration. Type: Boolean Valid values: @True@ | @False@
 dsAutoRenew :: Lens' DomainSummary (Maybe Bool)
 dsAutoRenew = lens _dsAutoRenew (\ s a -> s{_dsAutoRenew = a});
 
--- | The name of a domain.
---
--- Type: String
+-- | The name of a domain. Type: String
 dsDomainName :: Lens' DomainSummary Text
 dsDomainName = lens _dsDomainName (\ s a -> s{_dsDomainName = a});
 
@@ -530,6 +359,8 @@
 
 -- | ExtraParam includes the following elements.
 --
+--
+--
 -- /See:/ 'extraParam' smart constructor.
 data ExtraParam = ExtraParam'
     { _epName  :: !ExtraParamName
@@ -540,9 +371,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'epName'
+-- * 'epName' - Name of the additional parameter required by the top-level domain. Type: String Default: None Valid values: @DUNS_NUMBER@ | @BRAND_NUMBER@ | @BIRTH_DEPARTMENT@ | @BIRTH_DATE_IN_YYYY_MM_DD@ | @BIRTH_COUNTRY@ | @BIRTH_CITY@ | @DOCUMENT_NUMBER@ | @AU_ID_NUMBER@ | @AU_ID_TYPE@ | @CA_LEGAL_TYPE@ | @CA_BUSINESS_ENTITY_TYPE@ |@ES_IDENTIFICATION@ | @ES_IDENTIFICATION_TYPE@ | @ES_LEGAL_FORM@ | @FI_BUSINESS_NUMBER@ | @FI_ID_NUMBER@ | @IT_PIN@ | @RU_PASSPORT_DATA@ | @SE_ID_NUMBER@ | @SG_ID_NUMBER@ | @VAT_NUMBER@  Parent: @ExtraParams@  Required: Yes
 --
--- * 'epValue'
+-- * 'epValue' - Values corresponding to the additional parameter names required by some top-level domains. Type: String Default: None Constraints: Maximum 2048 characters. Parent: @ExtraParams@  Required: Yes
 extraParam
     :: ExtraParamName -- ^ 'epName'
     -> Text -- ^ 'epValue'
@@ -553,31 +384,11 @@
     , _epValue = pValue_
     }
 
--- | Name of the additional parameter required by the top-level domain.
---
--- Type: String
---
--- Default: None
---
--- Valid values: 'DUNS_NUMBER' | 'BRAND_NUMBER' | 'BIRTH_DEPARTMENT' | 'BIRTH_DATE_IN_YYYY_MM_DD' | 'BIRTH_COUNTRY' | 'BIRTH_CITY' | 'DOCUMENT_NUMBER' | 'AU_ID_NUMBER' | 'AU_ID_TYPE' | 'CA_LEGAL_TYPE' | 'CA_BUSINESS_ENTITY_TYPE' |'ES_IDENTIFICATION' | 'ES_IDENTIFICATION_TYPE' | 'ES_LEGAL_FORM' | 'FI_BUSINESS_NUMBER' | 'FI_ID_NUMBER' | 'IT_PIN' | 'RU_PASSPORT_DATA' | 'SE_ID_NUMBER' | 'SG_ID_NUMBER' | 'VAT_NUMBER'
---
--- Parent: 'ExtraParams'
---
--- Required: Yes
+-- | Name of the additional parameter required by the top-level domain. Type: String Default: None Valid values: @DUNS_NUMBER@ | @BRAND_NUMBER@ | @BIRTH_DEPARTMENT@ | @BIRTH_DATE_IN_YYYY_MM_DD@ | @BIRTH_COUNTRY@ | @BIRTH_CITY@ | @DOCUMENT_NUMBER@ | @AU_ID_NUMBER@ | @AU_ID_TYPE@ | @CA_LEGAL_TYPE@ | @CA_BUSINESS_ENTITY_TYPE@ |@ES_IDENTIFICATION@ | @ES_IDENTIFICATION_TYPE@ | @ES_LEGAL_FORM@ | @FI_BUSINESS_NUMBER@ | @FI_ID_NUMBER@ | @IT_PIN@ | @RU_PASSPORT_DATA@ | @SE_ID_NUMBER@ | @SG_ID_NUMBER@ | @VAT_NUMBER@  Parent: @ExtraParams@  Required: Yes
 epName :: Lens' ExtraParam ExtraParamName
 epName = lens _epName (\ s a -> s{_epName = a});
 
--- | Values corresponding to the additional parameter names required by some top-level domains.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 2048 characters.
---
--- Parent: 'ExtraParams'
---
--- Required: Yes
+-- | Values corresponding to the additional parameter names required by some top-level domains. Type: String Default: None Constraints: Maximum 2048 characters. Parent: @ExtraParams@  Required: Yes
 epValue :: Lens' ExtraParam Text
 epValue = lens _epValue (\ s a -> s{_epValue = a});
 
@@ -600,6 +411,8 @@
 
 -- | Nameserver includes the following elements.
 --
+--
+--
 -- /See:/ 'nameserver' smart constructor.
 data Nameserver = Nameserver'
     { _nGlueIPs :: !(Maybe [Text])
@@ -610,9 +423,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'nGlueIPs'
+-- * 'nGlueIPs' - Glue IP address of a name server entry. Glue IP addresses are required only when the name of the name server is a subdomain of the domain. For example, if your domain is example.com and the name server for the domain is ns.example.com, you need to specify the IP address for ns.example.com. Type: List of IP addresses. Constraints: The list can contain only one IPv4 and one IPv6 address. Parent: @Nameservers@
 --
--- * 'nName'
+-- * 'nName' - The fully qualified host name of the name server. Type: String Constraint: Maximum 255 characterss Parent: @Nameservers@
 nameserver
     :: Text -- ^ 'nName'
     -> Nameserver
@@ -622,23 +435,11 @@
     , _nName = pName_
     }
 
--- | Glue IP address of a name server entry. Glue IP addresses are required only when the name of the name server is a subdomain of the domain. For example, if your domain is example.com and the name server for the domain is ns.example.com, you need to specify the IP address for ns.example.com.
---
--- Type: List of IP addresses.
---
--- Constraints: The list can contain only one IPv4 and one IPv6 address.
---
--- Parent: 'Nameservers'
+-- | Glue IP address of a name server entry. Glue IP addresses are required only when the name of the name server is a subdomain of the domain. For example, if your domain is example.com and the name server for the domain is ns.example.com, you need to specify the IP address for ns.example.com. Type: List of IP addresses. Constraints: The list can contain only one IPv4 and one IPv6 address. Parent: @Nameservers@
 nGlueIPs :: Lens' Nameserver [Text]
 nGlueIPs = lens _nGlueIPs (\ s a -> s{_nGlueIPs = a}) . _Default . _Coerce;
 
--- | The fully qualified host name of the name server.
---
--- Type: String
---
--- Constraint: Maximum 255 characterss
---
--- Parent: 'Nameservers'
+-- | The fully qualified host name of the name server. Type: String Constraint: Maximum 255 characterss Parent: @Nameservers@
 nName :: Lens' Nameserver Text
 nName = lens _nName (\ s a -> s{_nName = a});
 
@@ -662,6 +463,8 @@
 
 -- | OperationSummary includes the following elements.
 --
+--
+--
 -- /See:/ 'operationSummary' smart constructor.
 data OperationSummary = OperationSummary'
     { _osOperationId   :: !Text
@@ -674,13 +477,13 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'osOperationId'
+-- * 'osOperationId' - Identifier returned to track the requested action. Type: String
 --
--- * 'osStatus'
+-- * 'osStatus' - The current status of the requested operation in the system. Type: String
 --
--- * 'osType'
+-- * 'osType' - Type of the action requested. Type: String Valid values: @REGISTER_DOMAIN@ | @DELETE_DOMAIN@ | @TRANSFER_IN_DOMAIN@ | @UPDATE_DOMAIN_CONTACT@ | @UPDATE_NAMESERVER@ | @CHANGE_PRIVACY_PROTECTION@ | @DOMAIN_LOCK@
 --
--- * 'osSubmittedDate'
+-- * 'osSubmittedDate' - The date when the request was submitted.
 operationSummary
     :: Text -- ^ 'osOperationId'
     -> OperationStatus -- ^ 'osStatus'
@@ -695,23 +498,15 @@
     , _osSubmittedDate = _Time # pSubmittedDate_
     }
 
--- | Identifier returned to track the requested action.
---
--- Type: String
+-- | Identifier returned to track the requested action. Type: String
 osOperationId :: Lens' OperationSummary Text
 osOperationId = lens _osOperationId (\ s a -> s{_osOperationId = a});
 
--- | The current status of the requested operation in the system.
---
--- Type: String
+-- | The current status of the requested operation in the system. Type: String
 osStatus :: Lens' OperationSummary OperationStatus
 osStatus = lens _osStatus (\ s a -> s{_osStatus = a});
 
--- | Type of the action requested.
---
--- Type: String
---
--- Valid values: 'REGISTER_DOMAIN' | 'DELETE_DOMAIN' | 'TRANSFER_IN_DOMAIN' | 'UPDATE_DOMAIN_CONTACT' | 'UPDATE_NAMESERVER' | 'CHANGE_PRIVACY_PROTECTION' | 'DOMAIN_LOCK'
+-- | Type of the action requested. Type: String Valid values: @REGISTER_DOMAIN@ | @DELETE_DOMAIN@ | @TRANSFER_IN_DOMAIN@ | @UPDATE_DOMAIN_CONTACT@ | @UPDATE_NAMESERVER@ | @CHANGE_PRIVACY_PROTECTION@ | @DOMAIN_LOCK@
 osType :: Lens' OperationSummary OperationType
 osType = lens _osType (\ s a -> s{_osType = a});
 
@@ -734,6 +529,8 @@
 
 -- | Each tag includes the following elements.
 --
+--
+--
 -- /See:/ 'tag' smart constructor.
 data Tag = Tag'
     { _tagValue :: !(Maybe Text)
@@ -744,9 +541,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'tagValue'
+-- * 'tagValue' - The value of a tag. Type: String Default: None Valid values: A-Z, a-z, 0-9, space, ".:/=+\-@" Constraints: Each value can be 0-256 characters long. Required: Yes
 --
--- * 'tagKey'
+-- * 'tagKey' - The key (name) of a tag. Type: String Default: None Valid values: A-Z, a-z, 0-9, space, ".:/=+\-@" Constraints: Each key can be 1-128 characters long. Required: Yes
 tag
     :: Tag
 tag =
@@ -755,31 +552,11 @@
     , _tagKey = Nothing
     }
 
--- | The value of a tag.
---
--- Type: String
---
--- Default: None
---
--- Valid values: A-Z, a-z, 0-9, space, \".:\/=+\\-\'\"
---
--- Constraints: Each value can be 0-256 characters long.
---
--- Required: Yes
+-- | The value of a tag. Type: String Default: None Valid values: A-Z, a-z, 0-9, space, ".:/=+\-@" Constraints: Each value can be 0-256 characters long. Required: Yes
 tagValue :: Lens' Tag (Maybe Text)
 tagValue = lens _tagValue (\ s a -> s{_tagValue = a});
 
--- | The key (name) of a tag.
---
--- Type: String
---
--- Default: None
---
--- Valid values: A-Z, a-z, 0-9, space, \".:\/=+\\-\'\"
---
--- Constraints: Each key can be 1-128 characters long.
---
--- Required: Yes
+-- | The key (name) of a tag. Type: String Default: None Valid values: A-Z, a-z, 0-9, space, ".:/=+\-@" Constraints: Each key can be 1-128 characters long. Required: Yes
 tagKey :: Lens' Tag (Maybe Text)
 tagKey = lens _tagKey (\ s a -> s{_tagKey = a});
 
diff --git a/gen/Network/AWS/Route53Domains/UpdateDomainContact.hs b/gen/Network/AWS/Route53Domains/UpdateDomainContact.hs
--- a/gen/Network/AWS/Route53Domains/UpdateDomainContact.hs
+++ b/gen/Network/AWS/Route53Domains/UpdateDomainContact.hs
@@ -20,7 +20,9 @@
 --
 -- This operation updates the contact information for a particular domain. Information for at least one contact (registrant, administrator, or technical) must be supplied for update.
 --
+--
 -- If the update is successful, this method returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant will be notified by email.
+--
 module Network.AWS.Route53Domains.UpdateDomainContact
     (
     -- * Creating a Request
@@ -49,6 +51,8 @@
 
 -- | The UpdateDomainContact request includes the following elements.
 --
+--
+--
 -- /See:/ 'updateDomainContact' smart constructor.
 data UpdateDomainContact = UpdateDomainContact'
     { _udcRegistrantContact :: !(Maybe (Sensitive ContactDetail))
@@ -61,13 +65,13 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'udcRegistrantContact'
+-- * 'udcRegistrantContact' - Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 --
--- * 'udcAdminContact'
+-- * 'udcAdminContact' - Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 --
--- * 'udcTechContact'
+-- * 'udcTechContact' - Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 --
--- * 'udcDomainName'
+-- * 'udcDomainName' - The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 updateDomainContact
     :: Text -- ^ 'udcDomainName'
     -> UpdateDomainContact
@@ -79,45 +83,19 @@
     , _udcDomainName = pDomainName_
     }
 
--- | Provides detailed contact information.
---
--- Type: Complex
---
--- Children: 'FirstName', 'MiddleName', 'LastName', 'ContactType', 'OrganizationName', 'AddressLine1', 'AddressLine2', 'City', 'State', 'CountryCode', 'ZipCode', 'PhoneNumber', 'Email', 'Fax', 'ExtraParams'
---
--- Required: Yes
+-- | Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 udcRegistrantContact :: Lens' UpdateDomainContact (Maybe ContactDetail)
 udcRegistrantContact = lens _udcRegistrantContact (\ s a -> s{_udcRegistrantContact = a}) . mapping _Sensitive;
 
--- | Provides detailed contact information.
---
--- Type: Complex
---
--- Children: 'FirstName', 'MiddleName', 'LastName', 'ContactType', 'OrganizationName', 'AddressLine1', 'AddressLine2', 'City', 'State', 'CountryCode', 'ZipCode', 'PhoneNumber', 'Email', 'Fax', 'ExtraParams'
---
--- Required: Yes
+-- | Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 udcAdminContact :: Lens' UpdateDomainContact (Maybe ContactDetail)
 udcAdminContact = lens _udcAdminContact (\ s a -> s{_udcAdminContact = a}) . mapping _Sensitive;
 
--- | Provides detailed contact information.
---
--- Type: Complex
---
--- Children: 'FirstName', 'MiddleName', 'LastName', 'ContactType', 'OrganizationName', 'AddressLine1', 'AddressLine2', 'City', 'State', 'CountryCode', 'ZipCode', 'PhoneNumber', 'Email', 'Fax', 'ExtraParams'
---
--- Required: Yes
+-- | Provides detailed contact information. Type: Complex Children: @FirstName@ , @MiddleName@ , @LastName@ , @ContactType@ , @OrganizationName@ , @AddressLine1@ , @AddressLine2@ , @City@ , @State@ , @CountryCode@ , @ZipCode@ , @PhoneNumber@ , @Email@ , @Fax@ , @ExtraParams@  Required: Yes
 udcTechContact :: Lens' UpdateDomainContact (Maybe ContactDetail)
 udcTechContact = lens _udcTechContact (\ s a -> s{_udcTechContact = a}) . mapping _Sensitive;
 
--- | The name of a domain.
---
--- Type: String
---
--- Default: None
---
--- Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported.
---
--- Required: Yes
+-- | The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 udcDomainName :: Lens' UpdateDomainContact Text
 udcDomainName = lens _udcDomainName (\ s a -> s{_udcDomainName = a});
 
@@ -162,6 +140,8 @@
 
 -- | The UpdateDomainContact response includes the following element.
 --
+--
+--
 -- /See:/ 'updateDomainContactResponse' smart constructor.
 data UpdateDomainContactResponse = UpdateDomainContactResponse'
     { _udcrsResponseStatus :: !Int
@@ -172,9 +152,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'udcrsResponseStatus'
+-- * 'udcrsResponseStatus' - -- | The response status code.
 --
--- * 'udcrsOperationId'
+-- * 'udcrsOperationId' - Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail. Type: String Default: None Constraints: Maximum 255 characters.
 updateDomainContactResponse
     :: Int -- ^ 'udcrsResponseStatus'
     -> Text -- ^ 'udcrsOperationId'
@@ -185,17 +165,11 @@
     , _udcrsOperationId = pOperationId_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 udcrsResponseStatus :: Lens' UpdateDomainContactResponse Int
 udcrsResponseStatus = lens _udcrsResponseStatus (\ s a -> s{_udcrsResponseStatus = a});
 
--- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
+-- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail. Type: String Default: None Constraints: Maximum 255 characters.
 udcrsOperationId :: Lens' UpdateDomainContactResponse Text
 udcrsOperationId = lens _udcrsOperationId (\ s a -> s{_udcrsOperationId = a});
 
diff --git a/gen/Network/AWS/Route53Domains/UpdateDomainContactPrivacy.hs b/gen/Network/AWS/Route53Domains/UpdateDomainContactPrivacy.hs
--- a/gen/Network/AWS/Route53Domains/UpdateDomainContactPrivacy.hs
+++ b/gen/Network/AWS/Route53Domains/UpdateDomainContactPrivacy.hs
@@ -18,9 +18,11 @@
 -- Stability   : auto-generated
 -- Portability : non-portable (GHC extensions)
 --
--- This operation updates the specified domain contact\'s privacy setting. When the privacy option is enabled, personal information such as postal or email address is hidden from the results of a public WHOIS query. The privacy services are provided by the AWS registrar, Gandi. For more information, see the <http://www.gandi.net/domain/whois/?currency=USD&amp;lang=en Gandi privacy features>.
+-- This operation updates the specified domain contact's privacy setting. When the privacy option is enabled, personal information such as postal or email address is hidden from the results of a public WHOIS query. The privacy services are provided by the AWS registrar, Gandi. For more information, see the <http://www.gandi.net/domain/whois/?currency=USD&amp;amp;lang=en Gandi privacy features> .
 --
+--
 -- This operation only affects the privacy of the specified contact type (registrant, administrator, or tech). Successful acceptance returns an operation ID that you can use with GetOperationDetail to track the progress and completion of the action. If the request is not completed successfully, the domain registrant will be notified by email.
+--
 module Network.AWS.Route53Domains.UpdateDomainContactPrivacy
     (
     -- * Creating a Request
@@ -49,6 +51,8 @@
 
 -- | The UpdateDomainContactPrivacy request includes the following elements.
 --
+--
+--
 -- /See:/ 'updateDomainContactPrivacy' smart constructor.
 data UpdateDomainContactPrivacy = UpdateDomainContactPrivacy'
     { _udcpTechPrivacy       :: !(Maybe Bool)
@@ -61,13 +65,13 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'udcpTechPrivacy'
+-- * 'udcpTechPrivacy' - Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: None Valid values: @true@ | @false@  Required: No
 --
--- * 'udcpRegistrantPrivacy'
+-- * 'udcpRegistrantPrivacy' - Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: None Valid values: @true@ | @false@  Required: No
 --
--- * 'udcpAdminPrivacy'
+-- * 'udcpAdminPrivacy' - Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: None Valid values: @true@ | @false@  Required: No
 --
--- * 'udcpDomainName'
+-- * 'udcpDomainName' - The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 updateDomainContactPrivacy
     :: Text -- ^ 'udcpDomainName'
     -> UpdateDomainContactPrivacy
@@ -79,51 +83,19 @@
     , _udcpDomainName = pDomainName_
     }
 
--- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS (\"who is\") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter.
---
--- Type: Boolean
---
--- Default: None
---
--- Valid values: 'true' | 'false'
---
--- Required: No
+-- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: None Valid values: @true@ | @false@  Required: No
 udcpTechPrivacy :: Lens' UpdateDomainContactPrivacy (Maybe Bool)
 udcpTechPrivacy = lens _udcpTechPrivacy (\ s a -> s{_udcpTechPrivacy = a});
 
--- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS (\"who is\") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter.
---
--- Type: Boolean
---
--- Default: None
---
--- Valid values: 'true' | 'false'
---
--- Required: No
+-- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: None Valid values: @true@ | @false@  Required: No
 udcpRegistrantPrivacy :: Lens' UpdateDomainContactPrivacy (Maybe Bool)
 udcpRegistrantPrivacy = lens _udcpRegistrantPrivacy (\ s a -> s{_udcpRegistrantPrivacy = a});
 
--- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS (\"who is\") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter.
---
--- Type: Boolean
---
--- Default: None
---
--- Valid values: 'true' | 'false'
---
--- Required: No
+-- | Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries will return contact information for our registrar partner, Gandi, instead of the contact information that you enter. Type: Boolean Default: None Valid values: @true@ | @false@  Required: No
 udcpAdminPrivacy :: Lens' UpdateDomainContactPrivacy (Maybe Bool)
 udcpAdminPrivacy = lens _udcpAdminPrivacy (\ s a -> s{_udcpAdminPrivacy = a});
 
--- | The name of a domain.
---
--- Type: String
---
--- Default: None
---
--- Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported.
---
--- Required: Yes
+-- | The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 udcpDomainName :: Lens' UpdateDomainContactPrivacy Text
 udcpDomainName = lens _udcpDomainName (\ s a -> s{_udcpDomainName = a});
 
@@ -168,6 +140,8 @@
 
 -- | The UpdateDomainContactPrivacy response includes the following element.
 --
+--
+--
 -- /See:/ 'updateDomainContactPrivacyResponse' smart constructor.
 data UpdateDomainContactPrivacyResponse = UpdateDomainContactPrivacyResponse'
     { _udcprsResponseStatus :: !Int
@@ -178,9 +152,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'udcprsResponseStatus'
+-- * 'udcprsResponseStatus' - -- | The response status code.
 --
--- * 'udcprsOperationId'
+-- * 'udcprsOperationId' - Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail. Type: String Default: None Constraints: Maximum 255 characters.
 updateDomainContactPrivacyResponse
     :: Int -- ^ 'udcprsResponseStatus'
     -> Text -- ^ 'udcprsOperationId'
@@ -191,17 +165,11 @@
     , _udcprsOperationId = pOperationId_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 udcprsResponseStatus :: Lens' UpdateDomainContactPrivacyResponse Int
 udcprsResponseStatus = lens _udcprsResponseStatus (\ s a -> s{_udcprsResponseStatus = a});
 
--- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
+-- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail. Type: String Default: None Constraints: Maximum 255 characters.
 udcprsOperationId :: Lens' UpdateDomainContactPrivacyResponse Text
 udcprsOperationId = lens _udcprsOperationId (\ s a -> s{_udcprsOperationId = a});
 
diff --git a/gen/Network/AWS/Route53Domains/UpdateDomainNameservers.hs b/gen/Network/AWS/Route53Domains/UpdateDomainNameservers.hs
--- a/gen/Network/AWS/Route53Domains/UpdateDomainNameservers.hs
+++ b/gen/Network/AWS/Route53Domains/UpdateDomainNameservers.hs
@@ -20,7 +20,9 @@
 --
 -- This operation replaces the current set of name servers for the domain with the specified set of name servers. If you use Amazon Route 53 as your DNS service, specify the four name servers in the delegation set for the hosted zone for the domain.
 --
+--
 -- If successful, this operation returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant will be notified by email.
+--
 module Network.AWS.Route53Domains.UpdateDomainNameservers
     (
     -- * Creating a Request
@@ -48,6 +50,8 @@
 
 -- | The UpdateDomainNameserver request includes the following elements.
 --
+--
+--
 -- /See:/ 'updateDomainNameservers' smart constructor.
 data UpdateDomainNameservers = UpdateDomainNameservers'
     { _udnFIAuthKey   :: !(Maybe Text)
@@ -59,11 +63,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'udnFIAuthKey'
+-- * 'udnFIAuthKey' - The authorization key for .fi domains
 --
--- * 'udnDomainName'
+-- * 'udnDomainName' - The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 --
--- * 'udnNameservers'
+-- * 'udnNameservers' - A list of new name servers for the domain. Type: Complex Children: @Name@ , @GlueIps@  Required: Yes
 updateDomainNameservers
     :: Text -- ^ 'udnDomainName'
     -> UpdateDomainNameservers
@@ -78,25 +82,11 @@
 udnFIAuthKey :: Lens' UpdateDomainNameservers (Maybe Text)
 udnFIAuthKey = lens _udnFIAuthKey (\ s a -> s{_udnFIAuthKey = a});
 
--- | The name of a domain.
---
--- Type: String
---
--- Default: None
---
--- Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported.
---
--- Required: Yes
+-- | The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not supported. Required: Yes
 udnDomainName :: Lens' UpdateDomainNameservers Text
 udnDomainName = lens _udnDomainName (\ s a -> s{_udnDomainName = a});
 
--- | A list of new name servers for the domain.
---
--- Type: Complex
---
--- Children: 'Name', 'GlueIps'
---
--- Required: Yes
+-- | A list of new name servers for the domain. Type: Complex Children: @Name@ , @GlueIps@  Required: Yes
 udnNameservers :: Lens' UpdateDomainNameservers [Nameserver]
 udnNameservers = lens _udnNameservers (\ s a -> s{_udnNameservers = a}) . _Coerce;
 
@@ -140,6 +130,8 @@
 
 -- | The UpdateDomainNameservers response includes the following element.
 --
+--
+--
 -- /See:/ 'updateDomainNameserversResponse' smart constructor.
 data UpdateDomainNameserversResponse = UpdateDomainNameserversResponse'
     { _udnrsResponseStatus :: !Int
@@ -150,9 +142,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'udnrsResponseStatus'
+-- * 'udnrsResponseStatus' - -- | The response status code.
 --
--- * 'udnrsOperationId'
+-- * 'udnrsOperationId' - Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail. Type: String Default: None Constraints: Maximum 255 characters.
 updateDomainNameserversResponse
     :: Int -- ^ 'udnrsResponseStatus'
     -> Text -- ^ 'udnrsOperationId'
@@ -163,17 +155,11 @@
     , _udnrsOperationId = pOperationId_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 udnrsResponseStatus :: Lens' UpdateDomainNameserversResponse Int
 udnrsResponseStatus = lens _udnrsResponseStatus (\ s a -> s{_udnrsResponseStatus = a});
 
--- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail.
---
--- Type: String
---
--- Default: None
---
--- Constraints: Maximum 255 characters.
+-- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail. Type: String Default: None Constraints: Maximum 255 characters.
 udnrsOperationId :: Lens' UpdateDomainNameserversResponse Text
 udnrsOperationId = lens _udnrsOperationId (\ s a -> s{_udnrsOperationId = a});
 
diff --git a/gen/Network/AWS/Route53Domains/UpdateTagsForDomain.hs b/gen/Network/AWS/Route53Domains/UpdateTagsForDomain.hs
--- a/gen/Network/AWS/Route53Domains/UpdateTagsForDomain.hs
+++ b/gen/Network/AWS/Route53Domains/UpdateTagsForDomain.hs
@@ -20,7 +20,9 @@
 --
 -- This operation adds or updates tags for a specified domain.
 --
+--
 -- All tag operations are eventually consistent; subsequent operations may not immediately represent all issued operations.
+--
 module Network.AWS.Route53Domains.UpdateTagsForDomain
     (
     -- * Creating a Request
@@ -46,6 +48,8 @@
 
 -- | The UpdateTagsForDomainRequest includes the following elements.
 --
+--
+--
 -- /See:/ 'updateTagsForDomain' smart constructor.
 data UpdateTagsForDomain = UpdateTagsForDomain'
     { _utfdTagsToUpdate :: !(Maybe [Tag])
@@ -56,9 +60,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'utfdTagsToUpdate'
+-- * 'utfdTagsToUpdate' - A list of the tag keys and values that you want to add or update. If you specify a key that already exists, the corresponding value will be replaced. Type: A complex type containing a list of tags Default: None Required: No '> Each tag includes the following elements:     * Key The key (name) of a tag. Type: String Default: None Valid values: Unicode characters including alphanumeric, space, and ".:/=+\-@" Constraints: Each key can be 1-128 characters long. Required: Yes     * Value The value of a tag. Type: String Default: None Valid values: Unicode characters including alphanumeric, space, and ".:/=+\-@" Constraints: Each value can be 0-256 characters long. Required: Yes
 --
--- * 'utfdDomainName'
+-- * 'utfdDomainName' - The domain for which you want to add or update tags. The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Hyphens are allowed only when they're surrounded by letters, numbers, or other hyphens. You can't specify a hyphen at the beginning or end of a label. To specify an Internationalized Domain Name, you must convert the name to Punycode. Required: Yes
 updateTagsForDomain
     :: Text -- ^ 'utfdDomainName'
     -> UpdateTagsForDomain
@@ -68,60 +72,11 @@
     , _utfdDomainName = pDomainName_
     }
 
--- | A list of the tag keys and values that you want to add or update. If you specify a key that already exists, the corresponding value will be replaced.
---
--- Type: A complex type containing a list of tags
---
--- Default: None
---
--- Required: No
---
--- \'>
---
--- Each tag includes the following elements:
---
--- -   Key
---
---     The key (name) of a tag.
---
---     Type: String
---
---     Default: None
---
---     Valid values: Unicode characters including alphanumeric, space, and \".:\/=+\\-\'\"
---
---     Constraints: Each key can be 1-128 characters long.
---
---     Required: Yes
---
--- -   Value
---
---     The value of a tag.
---
---     Type: String
---
---     Default: None
---
---     Valid values: Unicode characters including alphanumeric, space, and \".:\/=+\\-\'\"
---
---     Constraints: Each value can be 0-256 characters long.
---
---     Required: Yes
---
+-- | A list of the tag keys and values that you want to add or update. If you specify a key that already exists, the corresponding value will be replaced. Type: A complex type containing a list of tags Default: None Required: No '> Each tag includes the following elements:     * Key The key (name) of a tag. Type: String Default: None Valid values: Unicode characters including alphanumeric, space, and ".:/=+\-@" Constraints: Each key can be 1-128 characters long. Required: Yes     * Value The value of a tag. Type: String Default: None Valid values: Unicode characters including alphanumeric, space, and ".:/=+\-@" Constraints: Each value can be 0-256 characters long. Required: Yes
 utfdTagsToUpdate :: Lens' UpdateTagsForDomain [Tag]
 utfdTagsToUpdate = lens _utfdTagsToUpdate (\ s a -> s{_utfdTagsToUpdate = a}) . _Default . _Coerce;
 
--- | The domain for which you want to add or update tags.
---
--- The name of a domain.
---
--- Type: String
---
--- Default: None
---
--- Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Hyphens are allowed only when they\'re surrounded by letters, numbers, or other hyphens. You can\'t specify a hyphen at the beginning or end of a label. To specify an Internationalized Domain Name, you must convert the name to Punycode.
---
--- Required: Yes
+-- | The domain for which you want to add or update tags. The name of a domain. Type: String Default: None Constraints: The domain name can contain only the letters a through z, the numbers 0 through 9, and hyphen (-). Hyphens are allowed only when they're surrounded by letters, numbers, or other hyphens. You can't specify a hyphen at the beginning or end of a label. To specify an Internationalized Domain Name, you must convert the name to Punycode. Required: Yes
 utfdDomainName :: Lens' UpdateTagsForDomain Text
 utfdDomainName = lens _utfdDomainName (\ s a -> s{_utfdDomainName = a});
 
@@ -170,7 +125,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'utfdrsResponseStatus'
+-- * 'utfdrsResponseStatus' - -- | The response status code.
 updateTagsForDomainResponse
     :: Int -- ^ 'utfdrsResponseStatus'
     -> UpdateTagsForDomainResponse
@@ -179,7 +134,7 @@
     { _utfdrsResponseStatus = pResponseStatus_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 utfdrsResponseStatus :: Lens' UpdateTagsForDomainResponse Int
 utfdrsResponseStatus = lens _utfdrsResponseStatus (\ s a -> s{_utfdrsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Route53Domains/ViewBilling.hs b/gen/Network/AWS/Route53Domains/ViewBilling.hs
--- a/gen/Network/AWS/Route53Domains/ViewBilling.hs
+++ b/gen/Network/AWS/Route53Domains/ViewBilling.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- This operation returns all the domain-related billing records for the current AWS account for a specified period
+--
+--
 module Network.AWS.Route53Domains.ViewBilling
     (
     -- * Creating a Request
@@ -48,6 +50,8 @@
 
 -- | The ViewBilling request includes the following elements.
 --
+--
+--
 -- /See:/ 'viewBilling' smart constructor.
 data ViewBilling = ViewBilling'
     { _vbStart    :: !(Maybe POSIX)
@@ -60,13 +64,13 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'vbStart'
+-- * 'vbStart' - The beginning date and time for the time period for which you want a list of billing records. Specify the date in Unix time format. Type: Double Default: None Required: Yes
 --
--- * 'vbEnd'
+-- * 'vbEnd' - The end date and time for the time period for which you want a list of billing records. Specify the date in Unix time format. Type: Double Default: None Required: Yes
 --
--- * 'vbMarker'
+-- * 'vbMarker' - For an initial request for a list of billing records, omit this element. If the number of billing records that are associated with the current AWS account during the specified period is greater than the value that you specified for @MaxItems@ , you can use @Marker@ to return additional billing records. Get the value of @NextPageMarker@ from the previous response, and submit another request that includes the value of @NextPageMarker@ in the @Marker@ element.  Type: String Default: None Constraints: The marker must match the value of @NextPageMarker@ that was returned in the previous response. Required: No
 --
--- * 'vbMaxItems'
+-- * 'vbMaxItems' - The number of billing records to be returned. Type: Integer Default: 20 Constraints: A value between 1 and 100. Required: No
 viewBilling
     :: ViewBilling
 viewBilling =
@@ -77,47 +81,19 @@
     , _vbMaxItems = Nothing
     }
 
--- | The beginning date and time for the time period for which you want a list of billing records. Specify the date in Unix time format.
---
--- Type: Double
---
--- Default: None
---
--- Required: Yes
+-- | The beginning date and time for the time period for which you want a list of billing records. Specify the date in Unix time format. Type: Double Default: None Required: Yes
 vbStart :: Lens' ViewBilling (Maybe UTCTime)
 vbStart = lens _vbStart (\ s a -> s{_vbStart = a}) . mapping _Time;
 
--- | The end date and time for the time period for which you want a list of billing records. Specify the date in Unix time format.
---
--- Type: Double
---
--- Default: None
---
--- Required: Yes
+-- | The end date and time for the time period for which you want a list of billing records. Specify the date in Unix time format. Type: Double Default: None Required: Yes
 vbEnd :: Lens' ViewBilling (Maybe UTCTime)
 vbEnd = lens _vbEnd (\ s a -> s{_vbEnd = a}) . mapping _Time;
 
--- | For an initial request for a list of billing records, omit this element. If the number of billing records that are associated with the current AWS account during the specified period is greater than the value that you specified for 'MaxItems', you can use 'Marker' to return additional billing records. Get the value of 'NextPageMarker' from the previous response, and submit another request that includes the value of 'NextPageMarker' in the 'Marker' element.
---
--- Type: String
---
--- Default: None
---
--- Constraints: The marker must match the value of 'NextPageMarker' that was returned in the previous response.
---
--- Required: No
+-- | For an initial request for a list of billing records, omit this element. If the number of billing records that are associated with the current AWS account during the specified period is greater than the value that you specified for @MaxItems@ , you can use @Marker@ to return additional billing records. Get the value of @NextPageMarker@ from the previous response, and submit another request that includes the value of @NextPageMarker@ in the @Marker@ element.  Type: String Default: None Constraints: The marker must match the value of @NextPageMarker@ that was returned in the previous response. Required: No
 vbMarker :: Lens' ViewBilling (Maybe Text)
 vbMarker = lens _vbMarker (\ s a -> s{_vbMarker = a});
 
--- | The number of billing records to be returned.
---
--- Type: Integer
---
--- Default: 20
---
--- Constraints: A value between 1 and 100.
---
--- Required: No
+-- | The number of billing records to be returned. Type: Integer Default: 20 Constraints: A value between 1 and 100. Required: No
 vbMaxItems :: Lens' ViewBilling (Maybe Int)
 vbMaxItems = lens _vbMaxItems (\ s a -> s{_vbMaxItems = a});
 
@@ -162,6 +138,8 @@
 
 -- | The ViewBilling response includes the following elements.
 --
+--
+--
 -- /See:/ 'viewBillingResponse' smart constructor.
 data ViewBillingResponse = ViewBillingResponse'
     { _vbrsNextPageMarker :: !(Maybe Text)
@@ -173,11 +151,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'vbrsNextPageMarker'
+-- * 'vbrsNextPageMarker' - If there are more billing records than you specified for @MaxItems@ in the request, submit another request and include the value of @NextPageMarker@ in the value of @Marker@ . Type: String Parent: @BillingRecords@
 --
--- * 'vbrsBillingRecords'
+-- * 'vbrsBillingRecords' - A summary of billing records. Type: Complex type containing a list of billing record summaries. Children: @DomainName@ , @Operation@ , @InvoiceId@ , @BillDate@ and @Price@
 --
--- * 'vbrsResponseStatus'
+-- * 'vbrsResponseStatus' - -- | The response status code.
 viewBillingResponse
     :: Int -- ^ 'vbrsResponseStatus'
     -> ViewBillingResponse
@@ -188,23 +166,15 @@
     , _vbrsResponseStatus = pResponseStatus_
     }
 
--- | If there are more billing records than you specified for 'MaxItems' in the request, submit another request and include the value of 'NextPageMarker' in the value of 'Marker'.
---
--- Type: String
---
--- Parent: 'BillingRecords'
+-- | If there are more billing records than you specified for @MaxItems@ in the request, submit another request and include the value of @NextPageMarker@ in the value of @Marker@ . Type: String Parent: @BillingRecords@
 vbrsNextPageMarker :: Lens' ViewBillingResponse (Maybe Text)
 vbrsNextPageMarker = lens _vbrsNextPageMarker (\ s a -> s{_vbrsNextPageMarker = a});
 
--- | A summary of billing records.
---
--- Type: Complex type containing a list of billing record summaries.
---
--- Children: 'DomainName', 'Operation', 'InvoiceId', 'BillDate' and 'Price'
+-- | A summary of billing records. Type: Complex type containing a list of billing record summaries. Children: @DomainName@ , @Operation@ , @InvoiceId@ , @BillDate@ and @Price@
 vbrsBillingRecords :: Lens' ViewBillingResponse [BillingRecord]
 vbrsBillingRecords = lens _vbrsBillingRecords (\ s a -> s{_vbrsBillingRecords = a}) . _Default . _Coerce;
 
--- | The response status code.
+-- | -- | The response status code.
 vbrsResponseStatus :: Lens' ViewBillingResponse Int
 vbrsResponseStatus = lens _vbrsResponseStatus (\ s a -> s{_vbrsResponseStatus = a});
 
