diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -8,172 +8,27 @@
 
 ## Version
 
-`1.4.4`
+`1.4.5`
 
 
 ## Description
 
-The AWS Application Discovery Service helps Systems Integrators quickly and reliably plan application migration projects by automatically identifying applications running in on-premises data centers, their associated dependencies, and their performance profile.
-
-Planning data center migrations can involve thousands of workloads that are often deeply interdependent. Application discovery and dependency mapping are important early first steps in the migration process, but difficult to perform at scale due to the lack of automated tools.
-
-The AWS Application Discovery Service automatically collects configuration and usage data from servers to develop a list of applications, how they perform, and how they are interdependent. This information is securely retained in an AWS Application Discovery Service database which you can export as a CSV file into your preferred visualization tool or cloud migration solution to help reduce the complexity and time in planning your cloud migration.
-
-The Application Discovery Service is currently available for preview. Only customers who are engaged with <https://aws.amazon.com/professional-services/ AWS Professional Services> or a certified AWS partner can use the service. To see the list of certified partners and request access to the Application Discovery Service, complete the following <http://aws.amazon.com/application-discovery/preview/ preview form>.
-
-This API reference provides descriptions, syntax, and usage examples for each of the actions and data types for the Discovery Service. The topic for each action shows the API request parameters and the response. Alternatively, you can use one of the AWS SDKs to access an API that is tailored to the programming language or platform that you\'re using. For more information, see <http://aws.amazon.com/tools/#SDKs AWS SDKs>.
-
-This guide is intended for use with the <http://docs.aws.amazon.com/application-discovery/latest/userguide/what-is-appdiscovery.html AWS Discovery Service User Guide>.
-
-The following are short descriptions of each API action, organized by function.
-
-__Managing AWS Agents Using the Application Discovery Service__
-
-An AWS agent is software that you install on on-premises servers and virtual machines that are targeted for discovery and migration. Agents run on Linux and Windows Server and collect server configuration and activity information about your applications and infrastructure. Specifically, agents collect the following information and send it to the Application Discovery Service using Secure Sockets Layer (SSL) encryption:
-
--   User information (user name, home directory)
-
--   Group information (name)
-
--   List of installed packages
-
--   List of kernel modules
-
--   All create and stop process events
-
--   DNS queries
-
--   NIC information
-
--   TCP\/UDP process listening ports
-
--   TCPV4\/V6 connections
-
--   Operating system information
-
--   System performance
-
--   Process performance
-
-The Application Discovery Service API includes the following actions to manage AWS agents:
-
--   /StartDataCollectionByAgentIds/: Instructs the specified agents to start collecting data. The Application Discovery Service takes several minutes to receive and process data after you initiate data collection.
-
--   /StopDataCollectionByAgentIds/: Instructs the specified agents to stop collecting data.
-
--   /DescribeAgents/: Lists AWS agents by ID or lists all agents associated with your user account if you did not specify an agent ID. The output includes agent IDs, IP addresses, media access control (MAC) addresses, agent health, host name where the agent resides, and the version number of each agent.
-
-__Querying Configuration Items__
-
-A /configuration item/ is an IT asset that was discovered in your data center by an AWS agent. When you use the Application Discovery Service, you can specify filters and query specific configuration items. The service supports Server, Process, and Connection configuration items. This means you can specify a value for the following keys and query your IT assets:
-
-__Server__
-
--   server.HostName
-
--   server.osName
-
--   server.osVersion
-
--   server.configurationId
-
--   server.agentId
-
-__Process__
-
--   process.name
-
--   process.CommandLine
-
--   process.configurationId
-
--   server.hostName
-
--   server.osName
-
--   server.osVersion
-
--   server.configurationId
-
--   server.agentId
-
-__Connection__
-
--   connection.sourceIp
-
--   connection.sourcePort
-
--   connection.destinationIp
-
--   connection.destinationPort
-
--   sourceProcess.configurationId
-
--   sourceProcess.commandLine
-
--   sourceProcess.name
-
--   destinationProcessId.configurationId
-
--   destinationProcess.commandLine
-
--   destinationProcess.name
-
--   sourceServer.configurationId
-
--   sourceServer.hostName
-
--   sourceServer.osName
-
--   sourceServer.osVersion
-
--   destinationServer.configurationId
-
--   destinationServer.hostName
-
--   destinationServer.osName
-
--   destinationServer.osVersion
-
-The Application Discovery Service includes the following actions for querying configuration items.
-
--   /DescribeConfigurations/: Retrieves a list of attributes for a specific configuration ID. For example, the output for a /server/ configuration item includes a list of attributes about the server, including host name, operating system, number of network cards, etc.
-
--   /ListConfigurations/: Retrieves a list of configuration items according to the criteria you specify in a filter. The filter criteria identify relationship requirements. For example, you can specify filter criteria of process.name with values of /nginx/ and /apache/.
-
-__Tagging Discovered Configuration Items__
-
-You can tag discovered configuration items. Tags are metadata that help you categorize IT assets in your data center. Tags use a /key/-/value/ format. For example, 
-    @
-    {\"key\": \"serverType\", \"value\": \"webServer\"}
-    @
-    .
-
--   /CreateTags/: Creates one or more tags for a configuration items.
-
--   /DescribeTags/: Retrieves a list of configuration items that are tagged with a specific tag. /Or/, retrieves a list of all tags assigned to a specific configuration item.
-
--   /DeleteTags/: Deletes the association between a configuration item and one or more tags.
-
-__Exporting Data__
-
-You can export data as a CSV file to an Amazon S3 bucket or into your preferred visualization tool or cloud migration solution to help reduce the complexity and time in planning your cloud migration.
-
--   /ExportConfigurations/: Exports all discovered configuration data to an Amazon S3 bucket. Data includes tags and tag associations, processes, connections, servers, and system performance. This API returns an export ID which you can query using the GetExportStatus API.
-
--   /DescribeExportConfigurations/: Gets the status of the data export. When the export is complete, the service returns an Amazon S3 URL where you can download CSV files that include the data.
-
 Documentation is available via [Hackage](http://hackage.haskell.org/package/amazonka-discovery)
 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.Discovery](http://hackage.haskell.org/package/amazonka-discovery/docs/Network-AWS-Discovery.html)
+or [the AWS documentation](https://aws.amazon.com/documentation/) to get started.
+
 
 ## Contribute
 
diff --git a/amazonka-discovery.cabal b/amazonka-discovery.cabal
--- a/amazonka-discovery.cabal
+++ b/amazonka-discovery.cabal
@@ -1,5 +1,5 @@
 name:                  amazonka-discovery
-version:               1.4.4
+version:               1.4.5
 synopsis:              Amazon Application Discovery Service SDK.
 homepage:              https://github.com/brendanhay/amazonka
 bug-reports:           https://github.com/brendanhay/amazonka/issues
@@ -13,168 +13,19 @@
 cabal-version:         >= 1.10
 extra-source-files:    README.md fixture/*.yaml fixture/*.proto src/.gitkeep
 description:
-    The AWS Application Discovery Service helps Systems Integrators quickly and reliably plan application migration projects by automatically identifying applications running in on-premises data centers, their associated dependencies, and their performance profile.
-
-    Planning data center migrations can involve thousands of workloads that are often deeply interdependent. Application discovery and dependency mapping are important early first steps in the migration process, but difficult to perform at scale due to the lack of automated tools.
-
-    The AWS Application Discovery Service automatically collects configuration and usage data from servers to develop a list of applications, how they perform, and how they are interdependent. This information is securely retained in an AWS Application Discovery Service database which you can export as a CSV file into your preferred visualization tool or cloud migration solution to help reduce the complexity and time in planning your cloud migration.
-
-    The Application Discovery Service is currently available for preview. Only customers who are engaged with <https://aws.amazon.com/professional-services/ AWS Professional Services> or a certified AWS partner can use the service. To see the list of certified partners and request access to the Application Discovery Service, complete the following <http://aws.amazon.com/application-discovery/preview/ preview form>.
-
-    This API reference provides descriptions, syntax, and usage examples for each of the actions and data types for the Discovery Service. The topic for each action shows the API request parameters and the response. Alternatively, you can use one of the AWS SDKs to access an API that is tailored to the programming language or platform that you\'re using. For more information, see <http://aws.amazon.com/tools/#SDKs AWS SDKs>.
-
-    This guide is intended for use with the <http://docs.aws.amazon.com/application-discovery/latest/userguide/what-is-appdiscovery.html AWS Discovery Service User Guide>.
-
-    The following are short descriptions of each API action, organized by function.
-
-    __Managing AWS Agents Using the Application Discovery Service__
-
-    An AWS agent is software that you install on on-premises servers and virtual machines that are targeted for discovery and migration. Agents run on Linux and Windows Server and collect server configuration and activity information about your applications and infrastructure. Specifically, agents collect the following information and send it to the Application Discovery Service using Secure Sockets Layer (SSL) encryption:
-
-    -   User information (user name, home directory)
-
-    -   Group information (name)
-
-    -   List of installed packages
-
-    -   List of kernel modules
-
-    -   All create and stop process events
-
-    -   DNS queries
-
-    -   NIC information
-
-    -   TCP\/UDP process listening ports
-
-    -   TCPV4\/V6 connections
-
-    -   Operating system information
-
-    -   System performance
-
-    -   Process performance
-
-    The Application Discovery Service API includes the following actions to manage AWS agents:
-
-    -   /StartDataCollectionByAgentIds/: Instructs the specified agents to start collecting data. The Application Discovery Service takes several minutes to receive and process data after you initiate data collection.
-
-    -   /StopDataCollectionByAgentIds/: Instructs the specified agents to stop collecting data.
-
-    -   /DescribeAgents/: Lists AWS agents by ID or lists all agents associated with your user account if you did not specify an agent ID. The output includes agent IDs, IP addresses, media access control (MAC) addresses, agent health, host name where the agent resides, and the version number of each agent.
-
-    __Querying Configuration Items__
-
-    A /configuration item/ is an IT asset that was discovered in your data center by an AWS agent. When you use the Application Discovery Service, you can specify filters and query specific configuration items. The service supports Server, Process, and Connection configuration items. This means you can specify a value for the following keys and query your IT assets:
-
-    __Server__
-
-    -   server.HostName
-
-    -   server.osName
-
-    -   server.osVersion
-
-    -   server.configurationId
-
-    -   server.agentId
-
-    __Process__
-
-    -   process.name
-
-    -   process.CommandLine
-
-    -   process.configurationId
-
-    -   server.hostName
-
-    -   server.osName
-
-    -   server.osVersion
-
-    -   server.configurationId
-
-    -   server.agentId
-
-    __Connection__
-
-    -   connection.sourceIp
-
-    -   connection.sourcePort
-
-    -   connection.destinationIp
-
-    -   connection.destinationPort
-
-    -   sourceProcess.configurationId
-
-    -   sourceProcess.commandLine
-
-    -   sourceProcess.name
-
-    -   destinationProcessId.configurationId
-
-    -   destinationProcess.commandLine
-
-    -   destinationProcess.name
-
-    -   sourceServer.configurationId
-
-    -   sourceServer.hostName
-
-    -   sourceServer.osName
-
-    -   sourceServer.osVersion
-
-    -   destinationServer.configurationId
-
-    -   destinationServer.hostName
-
-    -   destinationServer.osName
-
-    -   destinationServer.osVersion
-
-    The Application Discovery Service includes the following actions for querying configuration items.
-
-    -   /DescribeConfigurations/: Retrieves a list of attributes for a specific configuration ID. For example, the output for a /server/ configuration item includes a list of attributes about the server, including host name, operating system, number of network cards, etc.
-
-    -   /ListConfigurations/: Retrieves a list of configuration items according to the criteria you specify in a filter. The filter criteria identify relationship requirements. For example, you can specify filter criteria of process.name with values of /nginx/ and /apache/.
-
-    __Tagging Discovered Configuration Items__
-
-    You can tag discovered configuration items. Tags are metadata that help you categorize IT assets in your data center. Tags use a /key/-/value/ format. For example, 
-    @
-    {\"key\": \"serverType\", \"value\": \"webServer\"}
-    @
-    .
-
-    -   /CreateTags/: Creates one or more tags for a configuration items.
-
-    -   /DescribeTags/: Retrieves a list of configuration items that are tagged with a specific tag. /Or/, retrieves a list of all tags assigned to a specific configuration item.
-
-    -   /DeleteTags/: Deletes the association between a configuration item and one or more tags.
-
-    __Exporting Data__
-
-    You can export data as a CSV file to an Amazon S3 bucket or into your preferred visualization tool or cloud migration solution to help reduce the complexity and time in planning your cloud migration.
-
-    -   /ExportConfigurations/: Exports all discovered configuration data to an Amazon S3 bucket. Data includes tags and tag associations, processes, connections, servers, and system performance. This API returns an export ID which you can query using the GetExportStatus API.
-
-    -   /DescribeExportConfigurations/: Gets the status of the data export. When the export is complete, the service returns an Amazon S3 URL where you can download CSV files that include the data.
-    .
     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.Discovery" or <https://aws.amazon.com/documentation/ the AWS Documentation>
+    See "Network.AWS.Discovery" or <https://aws.amazon.com/documentation/ the AWS documentation>
     to get started.
 
 source-repository head
@@ -207,7 +58,7 @@
         , Network.AWS.Discovery.Types.Sum
 
     build-depends:
-          amazonka-core == 1.4.4.*
+          amazonka-core == 1.4.5.*
         , base          >= 4.7     && < 5
 
 test-suite amazonka-discovery-test
@@ -227,9 +78,9 @@
         , Test.AWS.Discovery.Internal
 
     build-depends:
-          amazonka-core == 1.4.4.*
-        , amazonka-test == 1.4.4.*
-        , amazonka-discovery == 1.4.4.*
+          amazonka-core == 1.4.5.*
+        , amazonka-test == 1.4.5.*
+        , amazonka-discovery == 1.4.5.*
         , base
         , bytestring
         , tasty
diff --git a/gen/Network/AWS/Discovery.hs b/gen/Network/AWS/Discovery.hs
--- a/gen/Network/AWS/Discovery.hs
+++ b/gen/Network/AWS/Discovery.hs
@@ -13,15 +13,16 @@
 --
 -- The AWS Application Discovery Service helps Systems Integrators quickly and reliably plan application migration projects by automatically identifying applications running in on-premises data centers, their associated dependencies, and their performance profile.
 --
+--
 -- Planning data center migrations can involve thousands of workloads that are often deeply interdependent. Application discovery and dependency mapping are important early first steps in the migration process, but difficult to perform at scale due to the lack of automated tools.
 --
 -- The AWS Application Discovery Service automatically collects configuration and usage data from servers to develop a list of applications, how they perform, and how they are interdependent. This information is securely retained in an AWS Application Discovery Service database which you can export as a CSV file into your preferred visualization tool or cloud migration solution to help reduce the complexity and time in planning your cloud migration.
 --
--- The Application Discovery Service is currently available for preview. Only customers who are engaged with <https://aws.amazon.com/professional-services/ AWS Professional Services> or a certified AWS partner can use the service. To see the list of certified partners and request access to the Application Discovery Service, complete the following <http://aws.amazon.com/application-discovery/preview/ preview form>.
+-- The Application Discovery Service is currently available for preview. Only customers who are engaged with <https://aws.amazon.com/professional-services/ AWS Professional Services> or a certified AWS partner can use the service. To see the list of certified partners and request access to the Application Discovery Service, complete the following <http://aws.amazon.com/application-discovery/preview/ preview form> .
 --
--- This API reference provides descriptions, syntax, and usage examples for each of the actions and data types for the Discovery Service. The topic for each action shows the API request parameters and the response. Alternatively, you can use one of the AWS SDKs to access an API that is tailored to the programming language or platform that you\'re using. For more information, see <http://aws.amazon.com/tools/#SDKs AWS SDKs>.
+-- This API reference provides descriptions, syntax, and usage examples for each of the actions and data types for the Discovery Service. The topic for each action shows the API request parameters and the response. Alternatively, you can use one of the AWS SDKs to access an API that is tailored to the programming language or platform that you're using. For more information, see <http://aws.amazon.com/tools/#SDKs AWS SDKs> .
 --
--- This guide is intended for use with the <http://docs.aws.amazon.com/application-discovery/latest/userguide/what-is-appdiscovery.html AWS Discovery Service User Guide>.
+-- This guide is intended for use with the <http://docs.aws.amazon.com/application-discovery/latest/userguide/what-is-appdiscovery.html /AWS Discovery Service User Guide/ > .
 --
 -- The following are short descriptions of each API action, organized by function.
 --
@@ -29,133 +30,149 @@
 --
 -- An AWS agent is software that you install on on-premises servers and virtual machines that are targeted for discovery and migration. Agents run on Linux and Windows Server and collect server configuration and activity information about your applications and infrastructure. Specifically, agents collect the following information and send it to the Application Discovery Service using Secure Sockets Layer (SSL) encryption:
 --
--- -   User information (user name, home directory)
+--     * User information (user name, home directory)
 --
--- -   Group information (name)
+--     * Group information (name)
 --
--- -   List of installed packages
+--     * List of installed packages
 --
--- -   List of kernel modules
+--     * List of kernel modules
 --
--- -   All create and stop process events
+--     * All create and stop process events
 --
--- -   DNS queries
+--     * DNS queries
 --
--- -   NIC information
+--     * NIC information
 --
--- -   TCP\/UDP process listening ports
+--     * TCP/UDP process listening ports
 --
--- -   TCPV4\/V6 connections
+--     * TCPV4/V6 connections
 --
--- -   Operating system information
+--     * Operating system information
 --
--- -   System performance
+--     * System performance
 --
--- -   Process performance
+--     * Process performance
 --
+--
+--
 -- The Application Discovery Service API includes the following actions to manage AWS agents:
 --
--- -   /StartDataCollectionByAgentIds/: Instructs the specified agents to start collecting data. The Application Discovery Service takes several minutes to receive and process data after you initiate data collection.
+--     * /StartDataCollectionByAgentIds/ : Instructs the specified agents to start collecting data. The Application Discovery Service takes several minutes to receive and process data after you initiate data collection.
 --
--- -   /StopDataCollectionByAgentIds/: Instructs the specified agents to stop collecting data.
+--     * /StopDataCollectionByAgentIds/ : Instructs the specified agents to stop collecting data.
 --
--- -   /DescribeAgents/: Lists AWS agents by ID or lists all agents associated with your user account if you did not specify an agent ID. The output includes agent IDs, IP addresses, media access control (MAC) addresses, agent health, host name where the agent resides, and the version number of each agent.
+--     * /DescribeAgents/ : Lists AWS agents by ID or lists all agents associated with your user account if you did not specify an agent ID. The output includes agent IDs, IP addresses, media access control (MAC) addresses, agent health, host name where the agent resides, and the version number of each agent.
 --
+--
+--
 -- __Querying Configuration Items__
 --
 -- A /configuration item/ is an IT asset that was discovered in your data center by an AWS agent. When you use the Application Discovery Service, you can specify filters and query specific configuration items. The service supports Server, Process, and Connection configuration items. This means you can specify a value for the following keys and query your IT assets:
 --
 -- __Server__
 --
--- -   server.HostName
+--     * server.HostName
 --
--- -   server.osName
+--     * server.osName
 --
--- -   server.osVersion
+--     * server.osVersion
 --
--- -   server.configurationId
+--     * server.configurationId
 --
--- -   server.agentId
+--     * server.agentId
 --
+--
+--
 -- __Process__
 --
--- -   process.name
+--     * process.name
 --
--- -   process.CommandLine
+--     * process.CommandLine
 --
--- -   process.configurationId
+--     * process.configurationId
 --
--- -   server.hostName
+--     * server.hostName
 --
--- -   server.osName
+--     * server.osName
 --
--- -   server.osVersion
+--     * server.osVersion
 --
--- -   server.configurationId
+--     * server.configurationId
 --
--- -   server.agentId
+--     * server.agentId
 --
+--
+--
 -- __Connection__
 --
--- -   connection.sourceIp
+--     * connection.sourceIp
 --
--- -   connection.sourcePort
+--     * connection.sourcePort
 --
--- -   connection.destinationIp
+--     * connection.destinationIp
 --
--- -   connection.destinationPort
+--     * connection.destinationPort
 --
--- -   sourceProcess.configurationId
+--     * sourceProcess.configurationId
 --
--- -   sourceProcess.commandLine
+--     * sourceProcess.commandLine
 --
--- -   sourceProcess.name
+--     * sourceProcess.name
 --
--- -   destinationProcessId.configurationId
+--     * destinationProcessId.configurationId
 --
--- -   destinationProcess.commandLine
+--     * destinationProcess.commandLine
 --
--- -   destinationProcess.name
+--     * destinationProcess.name
 --
--- -   sourceServer.configurationId
+--     * sourceServer.configurationId
 --
--- -   sourceServer.hostName
+--     * sourceServer.hostName
 --
--- -   sourceServer.osName
+--     * sourceServer.osName
 --
--- -   sourceServer.osVersion
+--     * sourceServer.osVersion
 --
--- -   destinationServer.configurationId
+--     * destinationServer.configurationId
 --
--- -   destinationServer.hostName
+--     * destinationServer.hostName
 --
--- -   destinationServer.osName
+--     * destinationServer.osName
 --
--- -   destinationServer.osVersion
+--     * destinationServer.osVersion
 --
+--
+--
 -- The Application Discovery Service includes the following actions for querying configuration items.
 --
--- -   /DescribeConfigurations/: Retrieves a list of attributes for a specific configuration ID. For example, the output for a /server/ configuration item includes a list of attributes about the server, including host name, operating system, number of network cards, etc.
+--     * /DescribeConfigurations/ : Retrieves a list of attributes for a specific configuration ID. For example, the output for a /server/ configuration item includes a list of attributes about the server, including host name, operating system, number of network cards, etc.
 --
--- -   /ListConfigurations/: Retrieves a list of configuration items according to the criteria you specify in a filter. The filter criteria identify relationship requirements. For example, you can specify filter criteria of process.name with values of /nginx/ and /apache/.
+--     * /ListConfigurations/ : Retrieves a list of configuration items according to the criteria you specify in a filter. The filter criteria identify relationship requirements. For example, you can specify filter criteria of process.name with values of /nginx/ and /apache/ .
 --
+--
+--
 -- __Tagging Discovered Configuration Items__
 --
--- You can tag discovered configuration items. Tags are metadata that help you categorize IT assets in your data center. Tags use a /key/-/value/ format. For example, '{\"key\": \"serverType\", \"value\": \"webServer\"}'.
+-- You can tag discovered configuration items. Tags are metadata that help you categorize IT assets in your data center. Tags use a /key/ -/value/ format. For example, @{"key": "serverType", "value": "webServer"}@ .
 --
--- -   /CreateTags/: Creates one or more tags for a configuration items.
+--     * /CreateTags/ : Creates one or more tags for a configuration items.
 --
--- -   /DescribeTags/: Retrieves a list of configuration items that are tagged with a specific tag. /Or/, retrieves a list of all tags assigned to a specific configuration item.
+--     * /DescribeTags/ : Retrieves a list of configuration items that are tagged with a specific tag. /Or/ , retrieves a list of all tags assigned to a specific configuration item.
 --
--- -   /DeleteTags/: Deletes the association between a configuration item and one or more tags.
+--     * /DeleteTags/ : Deletes the association between a configuration item and one or more tags.
 --
+--
+--
 -- __Exporting Data__
 --
 -- You can export data as a CSV file to an Amazon S3 bucket or into your preferred visualization tool or cloud migration solution to help reduce the complexity and time in planning your cloud migration.
 --
--- -   /ExportConfigurations/: Exports all discovered configuration data to an Amazon S3 bucket. Data includes tags and tag associations, processes, connections, servers, and system performance. This API returns an export ID which you can query using the GetExportStatus API.
+--     * /ExportConfigurations/ : Exports all discovered configuration data to an Amazon S3 bucket. Data includes tags and tag associations, processes, connections, servers, and system performance. This API returns an export ID which you can query using the GetExportStatus API.
 --
--- -   /DescribeExportConfigurations/: Gets the status of the data export. When the export is complete, the service returns an Amazon S3 URL where you can download CSV files that include the data.
+--     * /DescribeExportConfigurations/ : Gets the status of the data export. When the export is complete, the service returns an Amazon S3 URL where you can download CSV files that include the data.
+--
+--
 --
 module Network.AWS.Discovery
     (
diff --git a/gen/Network/AWS/Discovery/CreateTags.hs b/gen/Network/AWS/Discovery/CreateTags.hs
--- a/gen/Network/AWS/Discovery/CreateTags.hs
+++ b/gen/Network/AWS/Discovery/CreateTags.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- Creates one or more tags for configuration items. Tags are metadata that help you categorize IT assets. This API accepts a list of multiple configuration items.
+--
+--
 module Network.AWS.Discovery.CreateTags
     (
     -- * Creating a Request
@@ -52,9 +54,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'ctConfigurationIds'
+-- * 'ctConfigurationIds' - A list of configuration items that you want to tag.
 --
--- * 'ctTags'
+-- * 'ctTags' - Tags that you want to associate with one or more configuration items. Specify the tags that you want to create in a /key/ -/value/ format. For example: @{"key": "serverType", "value": "webServer"}@
 createTags
     :: CreateTags
 createTags =
@@ -67,9 +69,7 @@
 ctConfigurationIds :: Lens' CreateTags [Text]
 ctConfigurationIds = lens _ctConfigurationIds (\ s a -> s{_ctConfigurationIds = a}) . _Coerce;
 
--- | Tags that you want to associate with one or more configuration items. Specify the tags that you want to create in a /key/-/value/ format. For example:
---
--- '{\"key\": \"serverType\", \"value\": \"webServer\"}'
+-- | Tags that you want to associate with one or more configuration items. Specify the tags that you want to create in a /key/ -/value/ format. For example: @{"key": "serverType", "value": "webServer"}@
 ctTags :: Lens' CreateTags [Tag]
 ctTags = lens _ctTags (\ s a -> s{_ctTags = a}) . _Coerce;
 
@@ -117,7 +117,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'ctrsResponseStatus'
+-- * 'ctrsResponseStatus' - -- | The response status code.
 createTagsResponse
     :: Int -- ^ 'ctrsResponseStatus'
     -> CreateTagsResponse
@@ -126,7 +126,7 @@
     { _ctrsResponseStatus = pResponseStatus_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 ctrsResponseStatus :: Lens' CreateTagsResponse Int
 ctrsResponseStatus = lens _ctrsResponseStatus (\ s a -> s{_ctrsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Discovery/DeleteTags.hs b/gen/Network/AWS/Discovery/DeleteTags.hs
--- a/gen/Network/AWS/Discovery/DeleteTags.hs
+++ b/gen/Network/AWS/Discovery/DeleteTags.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- Deletes the association between configuration items and one or more tags. This API accepts a list of multiple configuration items.
+--
+--
 module Network.AWS.Discovery.DeleteTags
     (
     -- * Creating a Request
@@ -52,9 +54,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'dtTags'
+-- * 'dtTags' - Tags that you want to delete from one or more configuration items. Specify the tags that you want to delete in a /key/ -/value/ format. For example: @{"key": "serverType", "value": "webServer"}@
 --
--- * 'dtConfigurationIds'
+-- * 'dtConfigurationIds' - A list of configuration items with tags that you want to delete.
 deleteTags
     :: DeleteTags
 deleteTags =
@@ -63,9 +65,7 @@
     , _dtConfigurationIds = mempty
     }
 
--- | Tags that you want to delete from one or more configuration items. Specify the tags that you want to delete in a /key/-/value/ format. For example:
---
--- '{\"key\": \"serverType\", \"value\": \"webServer\"}'
+-- | Tags that you want to delete from one or more configuration items. Specify the tags that you want to delete in a /key/ -/value/ format. For example: @{"key": "serverType", "value": "webServer"}@
 dtTags :: Lens' DeleteTags [Tag]
 dtTags = lens _dtTags (\ s a -> s{_dtTags = a}) . _Default . _Coerce;
 
@@ -117,7 +117,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'drsResponseStatus'
+-- * 'drsResponseStatus' - -- | The response status code.
 deleteTagsResponse
     :: Int -- ^ 'drsResponseStatus'
     -> DeleteTagsResponse
@@ -126,7 +126,7 @@
     { _drsResponseStatus = pResponseStatus_
     }
 
--- | The response status code.
+-- | -- | The response status code.
 drsResponseStatus :: Lens' DeleteTagsResponse Int
 drsResponseStatus = lens _drsResponseStatus (\ s a -> s{_drsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Discovery/DescribeAgents.hs b/gen/Network/AWS/Discovery/DescribeAgents.hs
--- a/gen/Network/AWS/Discovery/DescribeAgents.hs
+++ b/gen/Network/AWS/Discovery/DescribeAgents.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- Lists AWS agents by ID or lists all agents associated with your user account if you did not specify an agent ID.
+--
+--
 module Network.AWS.Discovery.DescribeAgents
     (
     -- * Creating a Request
@@ -56,11 +58,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'daAgentIds'
+-- * 'daAgentIds' - The agent IDs for which you want information. If you specify no IDs, the system returns information about all agents associated with your AWS user account.
 --
--- * 'daNextToken'
+-- * 'daNextToken' - A token to start the list. Use this token to get the next set of results.
 --
--- * 'daMaxResults'
+-- * 'daMaxResults' - The total number of agents to return. The maximum value is 100.
 describeAgents
     :: DescribeAgents
 describeAgents =
@@ -132,11 +134,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'darsAgentsInfo'
+-- * 'darsAgentsInfo' - Lists AWS agents by ID or lists all agents associated with your user account if you did not specify an agent ID. The output includes agent IDs, IP addresses, media access control (MAC) addresses, agent health, host name where the agent resides, and the version number of each agent.
 --
--- * 'darsNextToken'
+-- * 'darsNextToken' - The call returns a token. Use this token to get the next set of results.
 --
--- * 'darsResponseStatus'
+-- * 'darsResponseStatus' - -- | The response status code.
 describeAgentsResponse
     :: Int -- ^ 'darsResponseStatus'
     -> DescribeAgentsResponse
@@ -155,7 +157,7 @@
 darsNextToken :: Lens' DescribeAgentsResponse (Maybe Text)
 darsNextToken = lens _darsNextToken (\ s a -> s{_darsNextToken = a});
 
--- | The response status code.
+-- | -- | The response status code.
 darsResponseStatus :: Lens' DescribeAgentsResponse Int
 darsResponseStatus = lens _darsResponseStatus (\ s a -> s{_darsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Discovery/DescribeConfigurations.hs b/gen/Network/AWS/Discovery/DescribeConfigurations.hs
--- a/gen/Network/AWS/Discovery/DescribeConfigurations.hs
+++ b/gen/Network/AWS/Discovery/DescribeConfigurations.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- Retrieves a list of attributes for a specific configuration ID. For example, the output for a /server/ configuration item includes a list of attributes about the server, including host name, operating system, number of network cards, etc.
+--
+--
 module Network.AWS.Discovery.DescribeConfigurations
     (
     -- * Creating a Request
@@ -51,7 +53,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'dcConfigurationIds'
+-- * 'dcConfigurationIds' - One or more configuration IDs.
 describeConfigurations
     :: DescribeConfigurations
 describeConfigurations =
@@ -110,9 +112,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'dcrsConfigurations'
+-- * 'dcrsConfigurations' - A key in the response map. The value is an array of data.
 --
--- * 'dcrsResponseStatus'
+-- * 'dcrsResponseStatus' - -- | The response status code.
 describeConfigurationsResponse
     :: Int -- ^ 'dcrsResponseStatus'
     -> DescribeConfigurationsResponse
@@ -126,7 +128,7 @@
 dcrsConfigurations :: Lens' DescribeConfigurationsResponse [HashMap Text Text]
 dcrsConfigurations = lens _dcrsConfigurations (\ s a -> s{_dcrsConfigurations = a}) . _Default . _Coerce;
 
--- | The response status code.
+-- | -- | The response status code.
 dcrsResponseStatus :: Lens' DescribeConfigurationsResponse Int
 dcrsResponseStatus = lens _dcrsResponseStatus (\ s a -> s{_dcrsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Discovery/DescribeExportConfigurations.hs b/gen/Network/AWS/Discovery/DescribeExportConfigurations.hs
--- a/gen/Network/AWS/Discovery/DescribeExportConfigurations.hs
+++ b/gen/Network/AWS/Discovery/DescribeExportConfigurations.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- Retrieves the status of a given export process. You can retrieve status from a maximum of 100 processes.
+--
+--
 module Network.AWS.Discovery.DescribeExportConfigurations
     (
     -- * Creating a Request
@@ -56,11 +58,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'decNextToken'
+-- * 'decNextToken' - A token to get the next set of results. For example, if you specified 100 IDs for @DescribeConfigurationsRequest$configurationIds@ but set @DescribeExportConfigurationsRequest$maxResults@ to 10, you will get results in a set of 10. Use the token in the query to get the next set of 10.
 --
--- * 'decExportIds'
+-- * 'decExportIds' - A unique identifier that you can use to query the export status.
 --
--- * 'decMaxResults'
+-- * 'decMaxResults' - The maximum number of results that you want to display as a part of the query.
 describeExportConfigurations
     :: DescribeExportConfigurations
 describeExportConfigurations =
@@ -70,7 +72,7 @@
     , _decMaxResults = Nothing
     }
 
--- | A token to get the next set of results. For example, if you specified 100 IDs for 'DescribeConfigurationsRequest>configurationIds' but set 'DescribeExportConfigurationsRequest>maxResults' to 10, you will get results in a set of 10. Use the token in the query to get the next set of 10.
+-- | A token to get the next set of results. For example, if you specified 100 IDs for @DescribeConfigurationsRequest$configurationIds@ but set @DescribeExportConfigurationsRequest$maxResults@ to 10, you will get results in a set of 10. Use the token in the query to get the next set of 10.
 decNextToken :: Lens' DescribeExportConfigurations (Maybe Text)
 decNextToken = lens _decNextToken (\ s a -> s{_decNextToken = a});
 
@@ -134,11 +136,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'decrsNextToken'
+-- * 'decrsNextToken' - A token to get the next set of results. For example, if you specified 100 IDs for @DescribeConfigurationsRequest$configurationIds@ but set @DescribeExportConfigurationsRequest$maxResults@ to 10, you will get results in a set of 10. Use the token in the query to get the next set of 10.
 --
--- * 'decrsExportsInfo'
+-- * 'decrsExportsInfo' - Returns export details. When the status is complete, the response includes a URL for an Amazon S3 bucket where you can view the data in a CSV file.
 --
--- * 'decrsResponseStatus'
+-- * 'decrsResponseStatus' - -- | The response status code.
 describeExportConfigurationsResponse
     :: Int -- ^ 'decrsResponseStatus'
     -> DescribeExportConfigurationsResponse
@@ -149,7 +151,7 @@
     , _decrsResponseStatus = pResponseStatus_
     }
 
--- | A token to get the next set of results. For example, if you specified 100 IDs for 'DescribeConfigurationsRequest>configurationIds' but set 'DescribeExportConfigurationsRequest>maxResults' to 10, you will get results in a set of 10. Use the token in the query to get the next set of 10.
+-- | A token to get the next set of results. For example, if you specified 100 IDs for @DescribeConfigurationsRequest$configurationIds@ but set @DescribeExportConfigurationsRequest$maxResults@ to 10, you will get results in a set of 10. Use the token in the query to get the next set of 10.
 decrsNextToken :: Lens' DescribeExportConfigurationsResponse (Maybe Text)
 decrsNextToken = lens _decrsNextToken (\ s a -> s{_decrsNextToken = a});
 
@@ -157,7 +159,7 @@
 decrsExportsInfo :: Lens' DescribeExportConfigurationsResponse [ExportInfo]
 decrsExportsInfo = lens _decrsExportsInfo (\ s a -> s{_decrsExportsInfo = a}) . _Default . _Coerce;
 
--- | The response status code.
+-- | -- | The response status code.
 decrsResponseStatus :: Lens' DescribeExportConfigurationsResponse Int
 decrsResponseStatus = lens _decrsResponseStatus (\ s a -> s{_decrsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Discovery/DescribeTags.hs b/gen/Network/AWS/Discovery/DescribeTags.hs
--- a/gen/Network/AWS/Discovery/DescribeTags.hs
+++ b/gen/Network/AWS/Discovery/DescribeTags.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- Retrieves a list of configuration items that are tagged with a specific tag. Or retrieves a list of all tags assigned to a specific configuration item.
+--
+--
 module Network.AWS.Discovery.DescribeTags
     (
     -- * Creating a Request
@@ -56,11 +58,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'dtFilters'
+-- * 'dtFilters' - You can filter the list using a /key/ -/value/ format. You can separate these items by using logical operators. Allowed filters include @tagKey@ , @tagValue@ , and @configurationId@ .
 --
--- * 'dtNextToken'
+-- * 'dtNextToken' - A token to start the list. Use this token to get the next set of results.
 --
--- * 'dtMaxResults'
+-- * 'dtMaxResults' - The total number of items to return. The maximum value is 100.
 describeTags
     :: DescribeTags
 describeTags =
@@ -70,7 +72,7 @@
     , _dtMaxResults = Nothing
     }
 
--- | You can filter the list using a /key/-/value/ format. You can separate these items by using logical operators. Allowed filters include 'tagKey', 'tagValue', and 'configurationId'.
+-- | You can filter the list using a /key/ -/value/ format. You can separate these items by using logical operators. Allowed filters include @tagKey@ , @tagValue@ , and @configurationId@ .
 dtFilters :: Lens' DescribeTags [TagFilter]
 dtFilters = lens _dtFilters (\ s a -> s{_dtFilters = a}) . _Default . _Coerce;
 
@@ -131,11 +133,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'dtrsNextToken'
+-- * 'dtrsNextToken' - The call returns a token. Use this token to get the next set of results.
 --
--- * 'dtrsTags'
+-- * 'dtrsTags' - Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.
 --
--- * 'dtrsResponseStatus'
+-- * 'dtrsResponseStatus' - -- | The response status code.
 describeTagsResponse
     :: Int -- ^ 'dtrsResponseStatus'
     -> DescribeTagsResponse
@@ -154,7 +156,7 @@
 dtrsTags :: Lens' DescribeTagsResponse [ConfigurationTag]
 dtrsTags = lens _dtrsTags (\ s a -> s{_dtrsTags = a}) . _Default . _Coerce;
 
--- | The response status code.
+-- | -- | The response status code.
 dtrsResponseStatus :: Lens' DescribeTagsResponse Int
 dtrsResponseStatus = lens _dtrsResponseStatus (\ s a -> s{_dtrsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Discovery/ExportConfigurations.hs b/gen/Network/AWS/Discovery/ExportConfigurations.hs
--- a/gen/Network/AWS/Discovery/ExportConfigurations.hs
+++ b/gen/Network/AWS/Discovery/ExportConfigurations.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- Exports all discovered configuration data to an Amazon S3 bucket or an application that enables you to view and evaluate the data. Data includes tags and tag associations, processes, connections, servers, and system performance. This API returns an export ID which you can query using the /GetExportStatus/ API. The system imposes a limit of two configuration exports in six hours.
+--
+--
 module Network.AWS.Discovery.ExportConfigurations
     (
     -- * Creating a Request
@@ -94,9 +96,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'ecrsExportId'
+-- * 'ecrsExportId' - A unique identifier that you can use to query the export status.
 --
--- * 'ecrsResponseStatus'
+-- * 'ecrsResponseStatus' - -- | The response status code.
 exportConfigurationsResponse
     :: Int -- ^ 'ecrsResponseStatus'
     -> ExportConfigurationsResponse
@@ -110,7 +112,7 @@
 ecrsExportId :: Lens' ExportConfigurationsResponse (Maybe Text)
 ecrsExportId = lens _ecrsExportId (\ s a -> s{_ecrsExportId = a});
 
--- | The response status code.
+-- | -- | The response status code.
 ecrsResponseStatus :: Lens' ExportConfigurationsResponse Int
 ecrsResponseStatus = lens _ecrsResponseStatus (\ s a -> s{_ecrsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Discovery/ListConfigurations.hs b/gen/Network/AWS/Discovery/ListConfigurations.hs
--- a/gen/Network/AWS/Discovery/ListConfigurations.hs
+++ b/gen/Network/AWS/Discovery/ListConfigurations.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- Retrieves a list of configurations items according to the criteria you specify in a filter. The filter criteria identify relationship requirements.
+--
+--
 module Network.AWS.Discovery.ListConfigurations
     (
     -- * Creating a Request
@@ -58,13 +60,13 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'lcFilters'
+-- * 'lcFilters' - You can filter the list using a /key/ -/value/ format. For example:  @{"key": "serverType", "value": "webServer"}@  You can separate these items by using logical operators.
 --
--- * 'lcNextToken'
+-- * 'lcNextToken' - A token to start the list. Use this token to get the next set of results.
 --
--- * 'lcMaxResults'
+-- * 'lcMaxResults' - The total number of items to return. The maximum value is 100.
 --
--- * 'lcConfigurationType'
+-- * 'lcConfigurationType' - A valid configuration identified by the Discovery Service.
 listConfigurations
     :: ConfigurationItemType -- ^ 'lcConfigurationType'
     -> ListConfigurations
@@ -76,11 +78,7 @@
     , _lcConfigurationType = pConfigurationType_
     }
 
--- | You can filter the list using a /key/-/value/ format. For example:
---
--- '{\"key\": \"serverType\", \"value\": \"webServer\"}'
---
--- You can separate these items by using logical operators.
+-- | You can filter the list using a /key/ -/value/ format. For example:  @{"key": "serverType", "value": "webServer"}@  You can separate these items by using logical operators.
 lcFilters :: Lens' ListConfigurations [Filter]
 lcFilters = lens _lcFilters (\ s a -> s{_lcFilters = a}) . _Default . _Coerce;
 
@@ -148,11 +146,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'lcrsConfigurations'
+-- * 'lcrsConfigurations' - Returns configuration details, including the configuration ID, attribute names, and attribute values.
 --
--- * 'lcrsNextToken'
+-- * 'lcrsNextToken' - The call returns a token. Use this token to get the next set of results.
 --
--- * 'lcrsResponseStatus'
+-- * 'lcrsResponseStatus' - -- | The response status code.
 listConfigurationsResponse
     :: Int -- ^ 'lcrsResponseStatus'
     -> ListConfigurationsResponse
@@ -171,7 +169,7 @@
 lcrsNextToken :: Lens' ListConfigurationsResponse (Maybe Text)
 lcrsNextToken = lens _lcrsNextToken (\ s a -> s{_lcrsNextToken = a});
 
--- | The response status code.
+-- | -- | The response status code.
 lcrsResponseStatus :: Lens' ListConfigurationsResponse Int
 lcrsResponseStatus = lens _lcrsResponseStatus (\ s a -> s{_lcrsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Discovery/StartDataCollectionByAgentIds.hs b/gen/Network/AWS/Discovery/StartDataCollectionByAgentIds.hs
--- a/gen/Network/AWS/Discovery/StartDataCollectionByAgentIds.hs
+++ b/gen/Network/AWS/Discovery/StartDataCollectionByAgentIds.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- Instructs the specified agents to start collecting data. Agents can reside on host servers or virtual machines in your data center.
+--
+--
 module Network.AWS.Discovery.StartDataCollectionByAgentIds
     (
     -- * Creating a Request
@@ -51,7 +53,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'sAgentIds'
+-- * 'sAgentIds' - The IDs of the agents that you want to start collecting data. If you send a request to an AWS agent ID that you do not have permission to contact, according to your AWS account, the service does not throw an exception. Instead, it returns the error in the /Description/ field. If you send a request to multiple agents and you do not have permission to contact some of those agents, the system does not throw an exception. Instead, the system shows @Failed@ in the /Description/ field.
 startDataCollectionByAgentIds
     :: StartDataCollectionByAgentIds
 startDataCollectionByAgentIds =
@@ -59,7 +61,7 @@
     { _sAgentIds = mempty
     }
 
--- | The IDs of the agents that you want to start collecting data. If you send a request to an AWS agent ID that you do not have permission to contact, according to your AWS account, the service does not throw an exception. Instead, it returns the error in the /Description/ field. If you send a request to multiple agents and you do not have permission to contact some of those agents, the system does not throw an exception. Instead, the system shows 'Failed' in the /Description/ field.
+-- | The IDs of the agents that you want to start collecting data. If you send a request to an AWS agent ID that you do not have permission to contact, according to your AWS account, the service does not throw an exception. Instead, it returns the error in the /Description/ field. If you send a request to multiple agents and you do not have permission to contact some of those agents, the system does not throw an exception. Instead, the system shows @Failed@ in the /Description/ field.
 sAgentIds :: Lens' StartDataCollectionByAgentIds [Text]
 sAgentIds = lens _sAgentIds (\ s a -> s{_sAgentIds = a}) . _Coerce;
 
@@ -111,9 +113,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'srsAgentsConfigurationStatus'
+-- * 'srsAgentsConfigurationStatus' - Information about agents that were instructed to start collecting data. Information includes the agent ID, a description of the operation performed, and whether or not the agent configuration was updated.
 --
--- * 'srsResponseStatus'
+-- * 'srsResponseStatus' - -- | The response status code.
 startDataCollectionByAgentIdsResponse
     :: Int -- ^ 'srsResponseStatus'
     -> StartDataCollectionByAgentIdsResponse
@@ -127,7 +129,7 @@
 srsAgentsConfigurationStatus :: Lens' StartDataCollectionByAgentIdsResponse [AgentConfigurationStatus]
 srsAgentsConfigurationStatus = lens _srsAgentsConfigurationStatus (\ s a -> s{_srsAgentsConfigurationStatus = a}) . _Default . _Coerce;
 
--- | The response status code.
+-- | -- | The response status code.
 srsResponseStatus :: Lens' StartDataCollectionByAgentIdsResponse Int
 srsResponseStatus = lens _srsResponseStatus (\ s a -> s{_srsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Discovery/StopDataCollectionByAgentIds.hs b/gen/Network/AWS/Discovery/StopDataCollectionByAgentIds.hs
--- a/gen/Network/AWS/Discovery/StopDataCollectionByAgentIds.hs
+++ b/gen/Network/AWS/Discovery/StopDataCollectionByAgentIds.hs
@@ -19,6 +19,8 @@
 -- Portability : non-portable (GHC extensions)
 --
 -- Instructs the specified agents to stop collecting data.
+--
+--
 module Network.AWS.Discovery.StopDataCollectionByAgentIds
     (
     -- * Creating a Request
@@ -51,7 +53,7 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'sdcbaiAgentIds'
+-- * 'sdcbaiAgentIds' - The IDs of the agents that you want to stop collecting data.
 stopDataCollectionByAgentIds
     :: StopDataCollectionByAgentIds
 stopDataCollectionByAgentIds =
@@ -110,9 +112,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'sdcbairsAgentsConfigurationStatus'
+-- * 'sdcbairsAgentsConfigurationStatus' - Information about agents that were instructed to stop collecting data. Information includes the agent ID, a description of the operation performed, and whether or not the agent configuration was updated.
 --
--- * 'sdcbairsResponseStatus'
+-- * 'sdcbairsResponseStatus' - -- | The response status code.
 stopDataCollectionByAgentIdsResponse
     :: Int -- ^ 'sdcbairsResponseStatus'
     -> StopDataCollectionByAgentIdsResponse
@@ -126,7 +128,7 @@
 sdcbairsAgentsConfigurationStatus :: Lens' StopDataCollectionByAgentIdsResponse [AgentConfigurationStatus]
 sdcbairsAgentsConfigurationStatus = lens _sdcbairsAgentsConfigurationStatus (\ s a -> s{_sdcbairsAgentsConfigurationStatus = a}) . _Default . _Coerce;
 
--- | The response status code.
+-- | -- | The response status code.
 sdcbairsResponseStatus :: Lens' StopDataCollectionByAgentIdsResponse Int
 sdcbairsResponseStatus = lens _sdcbairsResponseStatus (\ s a -> s{_sdcbairsResponseStatus = a});
 
diff --git a/gen/Network/AWS/Discovery/Types.hs b/gen/Network/AWS/Discovery/Types.hs
--- a/gen/Network/AWS/Discovery/Types.hs
+++ b/gen/Network/AWS/Discovery/Types.hs
@@ -99,7 +99,7 @@
 import           Network.AWS.Prelude
 import           Network.AWS.Sign.V4
 
--- | API version '2015-11-01' of the Amazon Application Discovery Service SDK configuration.
+-- | API version @2015-11-01@ of the Amazon Application Discovery Service SDK configuration.
 discovery :: Service
 discovery =
     Service
@@ -134,31 +134,43 @@
       | otherwise = Nothing
 
 -- | The AWS user account does not have permission to perform the action. Check the IAM policy associated with this account.
+--
+--
 _AuthorizationErrorException :: AsError a => Getting (First ServiceError) a ServiceError
 _AuthorizationErrorException =
     _ServiceError . hasCode "AuthorizationErrorException"
 
 -- | One or more parameters are not valid. Verify the parameters and try again.
+--
+--
 _InvalidParameterException :: AsError a => Getting (First ServiceError) a ServiceError
 _InvalidParameterException =
     _ServiceError . hasCode "InvalidParameterException"
 
 -- | The value of one or more parameters are either invalid or out of range. Verify the parameter values and try again.
+--
+--
 _InvalidParameterValueException :: AsError a => Getting (First ServiceError) a ServiceError
 _InvalidParameterValueException =
     _ServiceError . hasCode "InvalidParameterValueException"
 
 -- | The server experienced an internal error. Try again.
+--
+--
 _ServerInternalErrorException :: AsError a => Getting (First ServiceError) a ServiceError
 _ServerInternalErrorException =
     _ServiceError . hasCode "ServerInternalErrorException"
 
 -- | This operation is not permitted.
+--
+--
 _OperationNotPermittedException :: AsError a => Getting (First ServiceError) a ServiceError
 _OperationNotPermittedException =
     _ServiceError . hasCode "OperationNotPermittedException"
 
 -- | The specified configuration ID was not located. Verify the configuration ID and try again.
+--
+--
 _ResourceNotFoundException :: AsError a => Getting (First ServiceError) a ServiceError
 _ResourceNotFoundException =
     _ServiceError . hasCode "ResourceNotFoundException"
diff --git a/gen/Network/AWS/Discovery/Types/Product.hs b/gen/Network/AWS/Discovery/Types/Product.hs
--- a/gen/Network/AWS/Discovery/Types/Product.hs
+++ b/gen/Network/AWS/Discovery/Types/Product.hs
@@ -23,6 +23,8 @@
 
 -- | Information about agents that were instructed to start collecting data. Information includes the agent ID, a description of the operation, and whether or not the agent configuration was updated.
 --
+--
+--
 -- /See:/ 'agentConfigurationStatus' smart constructor.
 data AgentConfigurationStatus = AgentConfigurationStatus'
     { _acsAgentId            :: !(Maybe Text)
@@ -34,11 +36,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'acsAgentId'
+-- * 'acsAgentId' - The agent ID.
 --
--- * 'acsOperationSucceeded'
+-- * 'acsOperationSucceeded' - Information about the status of the @StartDataCollection@ and @StopDataCollection@ operations. The system has recorded the data collection operation. The agent receives this command the next time it polls for a new command.
 --
--- * 'acsDescription'
+-- * 'acsDescription' - A description of the operation performed.
 agentConfigurationStatus
     :: AgentConfigurationStatus
 agentConfigurationStatus =
@@ -52,7 +54,7 @@
 acsAgentId :: Lens' AgentConfigurationStatus (Maybe Text)
 acsAgentId = lens _acsAgentId (\ s a -> s{_acsAgentId = a});
 
--- | Information about the status of the 'StartDataCollection' and 'StopDataCollection' operations. The system has recorded the data collection operation. The agent receives this command the next time it polls for a new command.
+-- | Information about the status of the @StartDataCollection@ and @StopDataCollection@ operations. The system has recorded the data collection operation. The agent receives this command the next time it polls for a new command.
 acsOperationSucceeded :: Lens' AgentConfigurationStatus (Maybe Bool)
 acsOperationSucceeded = lens _acsOperationSucceeded (\ s a -> s{_acsOperationSucceeded = a});
 
@@ -74,6 +76,8 @@
 
 -- | Information about agents associated with the user’s AWS account. Information includes agent IDs, IP addresses, media access control (MAC) addresses, agent health, hostname where the agent resides, and agent version for each agent.
 --
+--
+--
 -- /See:/ 'agentInfo' smart constructor.
 data AgentInfo = AgentInfo'
     { _aiHostName             :: !(Maybe Text)
@@ -88,17 +92,17 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'aiHostName'
+-- * 'aiHostName' - The name of the host where the agent resides. The host can be a server or virtual machine.
 --
--- * 'aiAgentNetworkInfoList'
+-- * 'aiAgentNetworkInfoList' - Network details about the host where the agent resides.
 --
--- * 'aiConnectorId'
+-- * 'aiConnectorId' - This data type is currently not valid.
 --
--- * 'aiHealth'
+-- * 'aiHealth' - The health of the agent.
 --
--- * 'aiAgentId'
+-- * 'aiAgentId' - The agent ID.
 --
--- * 'aiVersion'
+-- * 'aiVersion' - The agent version.
 agentInfo
     :: AgentInfo
 agentInfo =
@@ -153,6 +157,8 @@
 
 -- | Network details about the host where the agent resides.
 --
+--
+--
 -- /See:/ 'agentNetworkInfo' smart constructor.
 data AgentNetworkInfo = AgentNetworkInfo'
     { _aniIpAddress  :: !(Maybe Text)
@@ -163,9 +169,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'aniIpAddress'
+-- * 'aniIpAddress' - The IP address for the host where the agent resides.
 --
--- * 'aniMacAddress'
+-- * 'aniMacAddress' - The MAC address for the host where the agent resides.
 agentNetworkInfo
     :: AgentNetworkInfo
 agentNetworkInfo =
@@ -195,6 +201,8 @@
 
 -- | Tags for a configuration item. Tags are metadata that help you categorize IT assets.
 --
+--
+--
 -- /See:/ 'configurationTag' smart constructor.
 data ConfigurationTag = ConfigurationTag'
     { _ctTimeOfCreation    :: !(Maybe POSIX)
@@ -208,15 +216,15 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'ctTimeOfCreation'
+-- * 'ctTimeOfCreation' - The time the configuration tag was created in Coordinated Universal Time (UTC).
 --
--- * 'ctConfigurationId'
+-- * 'ctConfigurationId' - The configuration ID for the item you want to tag. You can specify a list of keys and values.
 --
--- * 'ctConfigurationType'
+-- * 'ctConfigurationType' - A type of IT asset that you want to tag.
 --
--- * 'ctValue'
+-- * 'ctValue' - A value to filter on. For example /key = serverType/ and /value = web server/ .
 --
--- * 'ctKey'
+-- * 'ctKey' - A type of tag to filter on. For example, /serverType/ .
 configurationTag
     :: ConfigurationTag
 configurationTag =
@@ -240,11 +248,11 @@
 ctConfigurationType :: Lens' ConfigurationTag (Maybe ConfigurationItemType)
 ctConfigurationType = lens _ctConfigurationType (\ s a -> s{_ctConfigurationType = a});
 
--- | A value to filter on. For example /key = serverType/ and /value = web server/.
+-- | A value to filter on. For example /key = serverType/ and /value = web server/ .
 ctValue :: Lens' ConfigurationTag (Maybe Text)
 ctValue = lens _ctValue (\ s a -> s{_ctValue = a});
 
--- | A type of tag to filter on. For example, /serverType/.
+-- | A type of tag to filter on. For example, /serverType/ .
 ctKey :: Lens' ConfigurationTag (Maybe Text)
 ctKey = lens _ctKey (\ s a -> s{_ctKey = a});
 
@@ -265,6 +273,8 @@
 
 -- | Information regarding the export status of the discovered data. The value is an array of objects.
 --
+--
+--
 -- /See:/ 'exportInfo' smart constructor.
 data ExportInfo = ExportInfo'
     { _eiConfigurationsDownloadURL :: !(Maybe Text)
@@ -278,15 +288,15 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'eiConfigurationsDownloadURL'
+-- * 'eiConfigurationsDownloadURL' - A URL for an Amazon S3 bucket where you can review the configuration data. The URL is displayed only if the export succeeded.
 --
--- * 'eiExportId'
+-- * 'eiExportId' - A unique identifier that you can use to query the export.
 --
--- * 'eiExportStatus'
+-- * 'eiExportStatus' - The status of the configuration data export. The status can succeed, fail, or be in-progress.
 --
--- * 'eiStatusMessage'
+-- * 'eiStatusMessage' - Helpful status messages for API callers. For example: Too many exports in the last 6 hours. Export in progress. Export was successful.
 --
--- * 'eiExportRequestTime'
+-- * 'eiExportRequestTime' - The time the configuration data export was initiated.
 exportInfo
     :: Text -- ^ 'eiExportId'
     -> ExportStatus -- ^ 'eiExportStatus'
@@ -339,6 +349,8 @@
 
 -- | A filter that can use conditional operators.
 --
+--
+--
 -- /See:/ 'filter'' smart constructor.
 data Filter = Filter'
     { _fName      :: !Text
@@ -350,11 +362,11 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'fName'
+-- * 'fName' - The name of the filter. The following filter names are allowed for @SERVER@ configuration items. __Server__      * @server.hostName@      * @server.osName@      * @server.osVersion@      * @server.configurationid@      * @server.agentid@  The name of the filter. The following filter names are allowed for @PROCESS@ configuration items. __Process__      * @process.configurationid@      * @process.name@      * @process.commandLine@      * @server.configurationid@      * @server.hostName@      * @server.osName@      * @server.osVersion@      * @server.agentId@  The name of the filter. The following filter names are allowed for @CONNECTION@ configuration items. __Connection__      * @connection.sourceIp@      * @connection.destinationIp@      * @connection.destinationPort@      * @sourceProcess.configurationId@      * @sourceProcess.name@      * @sourceProcess.commandLine@      * @destinationProcess.configurationId@      * @destinationProcess.name@      * @destinationProcess.commandLine@      * @sourceServer.configurationId@      * @sourceServer.hostName@      * @sourceServer.osName@      * @sourceServer.osVersion@      * @sourceServer.agentId@      * @destinationServer.configurationId@      * @destinationServer.hostName@      * @destinationServer.osName@      * @destinationServer.osVersion@      * @destinationServer.agentId@
 --
--- * 'fValues'
+-- * 'fValues' - A string value that you want to filter on. For example, if you choose the @destinationServer.osVersion@ filter name, you could specify @Ubuntu@ for the value.
 --
--- * 'fCondition'
+-- * 'fCondition' - A conditional operator. The following operators are valid: EQUALS, NOT_EQUALS, CONTAINS, NOT_CONTAINS. If you specify multiple filters, the system utilizes all filters as though concatenated by /AND/ . If you specify multiple values for a particular filter, the system differentiates the values using /OR/ . Calling either /DescribeConfigurations/ or /ListConfigurations/ returns attributes of matching configuration items.
 filter'
     :: Text -- ^ 'fName'
     -> Text -- ^ 'fCondition'
@@ -366,90 +378,15 @@
     , _fCondition = pCondition_
     }
 
--- | The name of the filter. The following filter names are allowed for 'SERVER' configuration items.
---
--- __Server__
---
--- -   'server.hostName'
---
--- -   'server.osName'
---
--- -   'server.osVersion'
---
--- -   'server.configurationid'
---
--- -   'server.agentid'
---
--- The name of the filter. The following filter names are allowed for 'PROCESS' configuration items.
---
--- __Process__
---
--- -   'process.configurationid'
---
--- -   'process.name'
---
--- -   'process.commandLine'
---
--- -   'server.configurationid'
---
--- -   'server.hostName'
---
--- -   'server.osName'
---
--- -   'server.osVersion'
---
--- -   'server.agentId'
---
--- The name of the filter. The following filter names are allowed for 'CONNECTION' configuration items.
---
--- __Connection__
---
--- -   'connection.sourceIp'
---
--- -   'connection.destinationIp'
---
--- -   'connection.destinationPort'
---
--- -   'sourceProcess.configurationId'
---
--- -   'sourceProcess.name'
---
--- -   'sourceProcess.commandLine'
---
--- -   'destinationProcess.configurationId'
---
--- -   'destinationProcess.name'
---
--- -   'destinationProcess.commandLine'
---
--- -   'sourceServer.configurationId'
---
--- -   'sourceServer.hostName'
---
--- -   'sourceServer.osName'
---
--- -   'sourceServer.osVersion'
---
--- -   'sourceServer.agentId'
---
--- -   'destinationServer.configurationId'
---
--- -   'destinationServer.hostName'
---
--- -   'destinationServer.osName'
---
--- -   'destinationServer.osVersion'
---
--- -   'destinationServer.agentId'
---
+-- | The name of the filter. The following filter names are allowed for @SERVER@ configuration items. __Server__      * @server.hostName@      * @server.osName@      * @server.osVersion@      * @server.configurationid@      * @server.agentid@  The name of the filter. The following filter names are allowed for @PROCESS@ configuration items. __Process__      * @process.configurationid@      * @process.name@      * @process.commandLine@      * @server.configurationid@      * @server.hostName@      * @server.osName@      * @server.osVersion@      * @server.agentId@  The name of the filter. The following filter names are allowed for @CONNECTION@ configuration items. __Connection__      * @connection.sourceIp@      * @connection.destinationIp@      * @connection.destinationPort@      * @sourceProcess.configurationId@      * @sourceProcess.name@      * @sourceProcess.commandLine@      * @destinationProcess.configurationId@      * @destinationProcess.name@      * @destinationProcess.commandLine@      * @sourceServer.configurationId@      * @sourceServer.hostName@      * @sourceServer.osName@      * @sourceServer.osVersion@      * @sourceServer.agentId@      * @destinationServer.configurationId@      * @destinationServer.hostName@      * @destinationServer.osName@      * @destinationServer.osVersion@      * @destinationServer.agentId@
 fName :: Lens' Filter Text
 fName = lens _fName (\ s a -> s{_fName = a});
 
--- | A string value that you want to filter on. For example, if you choose the 'destinationServer.osVersion' filter name, you could specify 'Ubuntu' for the value.
+-- | A string value that you want to filter on. For example, if you choose the @destinationServer.osVersion@ filter name, you could specify @Ubuntu@ for the value.
 fValues :: Lens' Filter [Text]
 fValues = lens _fValues (\ s a -> s{_fValues = a}) . _Coerce;
 
--- | A conditional operator. The following operators are valid: EQUALS, NOT_EQUALS, CONTAINS, NOT_CONTAINS. If you specify multiple filters, the system utilizes all filters as though concatenated by /AND/. If you specify multiple values for a particular filter, the system differentiates the values using /OR/. Calling either /DescribeConfigurations/ or /ListConfigurations/ returns attributes of matching configuration items.
+-- | A conditional operator. The following operators are valid: EQUALS, NOT_EQUALS, CONTAINS, NOT_CONTAINS. If you specify multiple filters, the system utilizes all filters as though concatenated by /AND/ . If you specify multiple values for a particular filter, the system differentiates the values using /OR/ . Calling either /DescribeConfigurations/ or /ListConfigurations/ returns attributes of matching configuration items.
 fCondition :: Lens' Filter Text
 fCondition = lens _fCondition (\ s a -> s{_fCondition = a});
 
@@ -467,6 +404,8 @@
 
 -- | Metadata that help you categorize IT assets.
 --
+--
+--
 -- /See:/ 'tag' smart constructor.
 data Tag = Tag'
     { _tagKey   :: !Text
@@ -477,9 +416,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'tagKey'
+-- * 'tagKey' - A type of tag to filter on.
 --
--- * 'tagValue'
+-- * 'tagValue' - A value for a tag key to filter on.
 tag
     :: Text -- ^ 'tagKey'
     -> Text -- ^ 'tagValue'
@@ -509,8 +448,10 @@
                  [Just ("key" .= _tagKey),
                   Just ("value" .= _tagValue)])
 
--- | The name of a tag filter. Valid names are: 'tagKey', 'tagValue', 'configurationId'.
+-- | The name of a tag filter. Valid names are: @tagKey@ , @tagValue@ , @configurationId@ .
 --
+--
+--
 -- /See:/ 'tagFilter' smart constructor.
 data TagFilter = TagFilter'
     { _tfName   :: !Text
@@ -521,9 +462,9 @@
 --
 -- Use one of the following lenses to modify other fields as desired:
 --
--- * 'tfName'
+-- * 'tfName' - A name of a tag filter.
 --
--- * 'tfValues'
+-- * 'tfValues' - Values of a tag filter.
 tagFilter
     :: Text -- ^ 'tfName'
     -> TagFilter
