amazonka-cloudsearch 1.4.2 → 1.4.3
raw patch · 31 files changed
+298/−653 lines, 31 filesdep ~amazonka-cloudsearchdep ~amazonka-coredep ~amazonka-testPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-cloudsearch, amazonka-core, amazonka-test
API changes (from Hackage documentation)
Files
- README.md +3/−11
- amazonka-cloudsearch.cabal +7/−15
- gen/Network/AWS/CloudSearch.hs +2/−10
- gen/Network/AWS/CloudSearch/BuildSuggesters.hs +3/−7
- gen/Network/AWS/CloudSearch/CreateDomain.hs +4/−11
- gen/Network/AWS/CloudSearch/DefineAnalysisScheme.hs +3/−10
- gen/Network/AWS/CloudSearch/DefineExpression.hs +3/−10
- gen/Network/AWS/CloudSearch/DefineIndexField.hs +3/−14
- gen/Network/AWS/CloudSearch/DefineSuggester.hs +3/−12
- gen/Network/AWS/CloudSearch/DeleteAnalysisScheme.hs +3/−8
- gen/Network/AWS/CloudSearch/DeleteDomain.hs +3/−9
- gen/Network/AWS/CloudSearch/DeleteExpression.hs +3/−9
- gen/Network/AWS/CloudSearch/DeleteIndexField.hs +3/−9
- gen/Network/AWS/CloudSearch/DeleteSuggester.hs +3/−8
- gen/Network/AWS/CloudSearch/DescribeAnalysisSchemes.hs +4/−17
- gen/Network/AWS/CloudSearch/DescribeAvailabilityOptions.hs +5/−17
- gen/Network/AWS/CloudSearch/DescribeDomains.hs +3/−14
- gen/Network/AWS/CloudSearch/DescribeExpressions.hs +5/−18
- gen/Network/AWS/CloudSearch/DescribeIndexFields.hs +5/−18
- gen/Network/AWS/CloudSearch/DescribeScalingParameters.hs +3/−9
- gen/Network/AWS/CloudSearch/DescribeServiceAccessPolicies.hs +3/−13
- gen/Network/AWS/CloudSearch/DescribeSuggesters.hs +3/−15
- gen/Network/AWS/CloudSearch/IndexDocuments.hs +3/−7
- gen/Network/AWS/CloudSearch/ListDomainNames.hs +1/−2
- gen/Network/AWS/CloudSearch/Types.hs +4/−9
- gen/Network/AWS/CloudSearch/Types/Product.hs +51/−168
- gen/Network/AWS/CloudSearch/Types/Sum.hs +6/−17
- gen/Network/AWS/CloudSearch/UpdateAvailabilityOptions.hs +5/−18
- gen/Network/AWS/CloudSearch/UpdateScalingParameters.hs +3/−14
- gen/Network/AWS/CloudSearch/UpdateServiceAccessPolicies.hs +4/−10
- test/Test/AWS/Gen/CloudSearch.hs +144/−144
README.md view
@@ -8,24 +8,16 @@ ## Version -`1.4.2`+`1.4.3` ## Description Amazon CloudSearch Configuration Service -You use the Amazon CloudSearch configuration service to create,-configure, and manage search domains. Configuration service requests are-submitted using the AWS Query protocol. AWS Query requests are HTTP or-HTTPS requests submitted via HTTP GET or POST with a query parameter-named Action.+You use the Amazon CloudSearch configuration service to create, configure, and manage search domains. Configuration service requests are submitted using the AWS Query protocol. AWS Query requests are HTTP or HTTPS requests submitted via HTTP GET or POST with a query parameter named Action. -The endpoint for configuration service requests is region-specific:-cloudsearch./region/.amazonaws.com. For example,-cloudsearch.us-east-1.amazonaws.com. For a current list of supported-regions and endpoints, see-<http://docs.aws.amazon.com/general/latest/gr/rande.html#cloudsearch_region Regions and Endpoints>.+The endpoint for configuration service requests is region-specific: cloudsearch./region/.amazonaws.com. For example, cloudsearch.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <http://docs.aws.amazon.com/general/latest/gr/rande.html#cloudsearch_region Regions and Endpoints>. Documentation is available via [Hackage](http://hackage.haskell.org/package/amazonka-cloudsearch) and the [AWS API Reference](https://aws.amazon.com/documentation/).
amazonka-cloudsearch.cabal view
@@ -1,5 +1,5 @@ name: amazonka-cloudsearch-version: 1.4.2+version: 1.4.3 synopsis: Amazon CloudSearch SDK. homepage: https://github.com/brendanhay/amazonka bug-reports: https://github.com/brendanhay/amazonka/issues@@ -15,17 +15,9 @@ description: Amazon CloudSearch Configuration Service - You use the Amazon CloudSearch configuration service to create,- configure, and manage search domains. Configuration service requests are- submitted using the AWS Query protocol. AWS Query requests are HTTP or- HTTPS requests submitted via HTTP GET or POST with a query parameter- named Action.+ You use the Amazon CloudSearch configuration service to create, configure, and manage search domains. Configuration service requests are submitted using the AWS Query protocol. AWS Query requests are HTTP or HTTPS requests submitted via HTTP GET or POST with a query parameter named Action. - The endpoint for configuration service requests is region-specific:- cloudsearch./region/.amazonaws.com. For example,- cloudsearch.us-east-1.amazonaws.com. For a current list of supported- regions and endpoints, see- <http://docs.aws.amazon.com/general/latest/gr/rande.html#cloudsearch_region Regions and Endpoints>.+ The endpoint for configuration service requests is region-specific: cloudsearch./region/.amazonaws.com. For example, cloudsearch.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <http://docs.aws.amazon.com/general/latest/gr/rande.html#cloudsearch_region Regions and Endpoints>. . The types from this library are intended to be used with <http://hackage.haskell.org/package/amazonka amazonka>, which provides@@ -85,7 +77,7 @@ , Network.AWS.CloudSearch.Types.Sum build-depends:- amazonka-core == 1.4.2.*+ amazonka-core == 1.4.3.* , base >= 4.7 && < 5 test-suite amazonka-cloudsearch-test@@ -105,9 +97,9 @@ , Test.AWS.CloudSearch.Internal build-depends:- amazonka-core == 1.4.2.*- , amazonka-test == 1.4.2.*- , amazonka-cloudsearch == 1.4.2.*+ amazonka-core == 1.4.3.*+ , amazonka-test == 1.4.3.*+ , amazonka-cloudsearch == 1.4.3.* , base , bytestring , tasty
gen/Network/AWS/CloudSearch.hs view
@@ -13,17 +13,9 @@ -- -- Amazon CloudSearch Configuration Service ----- You use the Amazon CloudSearch configuration service to create,--- configure, and manage search domains. Configuration service requests are--- submitted using the AWS Query protocol. AWS Query requests are HTTP or--- HTTPS requests submitted via HTTP GET or POST with a query parameter--- named Action.+-- You use the Amazon CloudSearch configuration service to create, configure, and manage search domains. Configuration service requests are submitted using the AWS Query protocol. AWS Query requests are HTTP or HTTPS requests submitted via HTTP GET or POST with a query parameter named Action. ----- The endpoint for configuration service requests is region-specific:--- cloudsearch./region/.amazonaws.com. For example,--- cloudsearch.us-east-1.amazonaws.com. For a current list of supported--- regions and endpoints, see--- <http://docs.aws.amazon.com/general/latest/gr/rande.html#cloudsearch_region Regions and Endpoints>.+-- The endpoint for configuration service requests is region-specific: cloudsearch./region/.amazonaws.com. For example, cloudsearch.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <http://docs.aws.amazon.com/general/latest/gr/rande.html#cloudsearch_region Regions and Endpoints>. module Network.AWS.CloudSearch ( -- * Service Configuration
gen/Network/AWS/CloudSearch/BuildSuggesters.hs view
@@ -18,9 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Indexes the search suggestions. For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-suggestions.html#configuring-suggesters Configuring Suggesters>--- in the /Amazon CloudSearch Developer Guide/.+-- Indexes the search suggestions. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-suggestions.html#configuring-suggesters Configuring Suggesters> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.BuildSuggesters ( -- * Creating a Request@@ -44,8 +42,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'BuildSuggester' operation.--- Specifies the name of the domain you want to update.+-- | Container for the parameters to the 'BuildSuggester' operation. Specifies the name of the domain you want to update. -- -- /See:/ 'buildSuggesters' smart constructor. newtype BuildSuggesters = BuildSuggesters'@@ -97,8 +94,7 @@ "Version" =: ("2013-01-01" :: ByteString), "DomainName" =: _bsDomainName] --- | The result of a 'BuildSuggester' request. Contains a list of the fields--- used for suggestions.+-- | The result of a 'BuildSuggester' request. Contains a list of the fields used for suggestions. -- -- /See:/ 'buildSuggestersResponse' smart constructor. data BuildSuggestersResponse = BuildSuggestersResponse'
gen/Network/AWS/CloudSearch/CreateDomain.hs view
@@ -18,9 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Creates a new search domain. For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/creating-domains.html Creating a Search Domain>--- in the /Amazon CloudSearch Developer Guide/.+-- Creates a new search domain. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/creating-domains.html Creating a Search Domain> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.CreateDomain ( -- * Creating a Request@@ -44,8 +42,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'CreateDomain' operation. Specifies--- a name for the new search domain.+-- | Container for the parameters to the 'CreateDomain' operation. Specifies a name for the new search domain. -- -- /See:/ 'createDomain' smart constructor. newtype CreateDomain = CreateDomain'@@ -65,10 +62,7 @@ { _cdDomainName = pDomainName_ } --- | A name for the domain you are creating. Allowed characters are a-z--- (lower-case letters), 0-9, and hyphen (-). Domain names must start with--- a letter or number and be at least 3 and no more than 28 characters--- long.+-- | A name for the domain you are creating. Allowed characters are a-z (lower-case letters), 0-9, and hyphen (-). Domain names must start with a letter or number and be at least 3 and no more than 28 characters long. cdDomainName :: Lens' CreateDomain Text cdDomainName = lens _cdDomainName (\ s a -> s{_cdDomainName = a}); @@ -98,8 +92,7 @@ "Version" =: ("2013-01-01" :: ByteString), "DomainName" =: _cdDomainName] --- | The result of a 'CreateDomainRequest'. Contains the status of a newly--- created domain.+-- | The result of a 'CreateDomainRequest'. Contains the status of a newly created domain. -- -- /See:/ 'createDomainResponse' smart constructor. data CreateDomainResponse = CreateDomainResponse'
gen/Network/AWS/CloudSearch/DefineAnalysisScheme.hs view
@@ -18,11 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Configures an analysis scheme that can be applied to a 'text' or--- 'text-array' field to define language-specific text processing options.--- For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-analysis-schemes.html Configuring Analysis Schemes>--- in the /Amazon CloudSearch Developer Guide/.+-- Configures an analysis scheme that can be applied to a 'text' or 'text-array' field to define language-specific text processing options. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-analysis-schemes.html Configuring Analysis Schemes> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DefineAnalysisScheme ( -- * Creating a Request@@ -47,9 +43,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DefineAnalysisScheme' operation.--- Specifies the name of the domain you want to update and the analysis--- scheme configuration.+-- | Container for the parameters to the 'DefineAnalysisScheme' operation. Specifies the name of the domain you want to update and the analysis scheme configuration. -- -- /See:/ 'defineAnalysisScheme' smart constructor. data DefineAnalysisScheme = DefineAnalysisScheme'@@ -110,8 +104,7 @@ "DomainName" =: _dasaDomainName, "AnalysisScheme" =: _dasaAnalysisScheme] --- | The result of a 'DefineAnalysisScheme' request. Contains the status of--- the newly-configured analysis scheme.+-- | The result of a 'DefineAnalysisScheme' request. Contains the status of the newly-configured analysis scheme. -- -- /See:/ 'defineAnalysisSchemeResponse' smart constructor. data DefineAnalysisSchemeResponse = DefineAnalysisSchemeResponse'
gen/Network/AWS/CloudSearch/DefineExpression.hs view
@@ -18,11 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Configures an 'Expression' for the search domain. Used to create new--- expressions and modify existing ones. If the expression exists, the new--- configuration replaces the old one. For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-expressions.html Configuring Expressions>--- in the /Amazon CloudSearch Developer Guide/.+-- Configures an 'Expression' for the search domain. Used to create new expressions and modify existing ones. If the expression exists, the new configuration replaces the old one. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-expressions.html Configuring Expressions> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DefineExpression ( -- * Creating a Request@@ -47,9 +43,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DefineExpression' operation.--- Specifies the name of the domain you want to update and the expression--- you want to configure.+-- | Container for the parameters to the 'DefineExpression' operation. Specifies the name of the domain you want to update and the expression you want to configure. -- -- /See:/ 'defineExpression' smart constructor. data DefineExpression = DefineExpression'@@ -109,8 +103,7 @@ "DomainName" =: _dDomainName, "Expression" =: _dExpression] --- | The result of a 'DefineExpression' request. Contains the status of the--- newly-configured expression.+-- | The result of a 'DefineExpression' request. Contains the status of the newly-configured expression. -- -- /See:/ 'defineExpressionResponse' smart constructor. data DefineExpressionResponse = DefineExpressionResponse'
gen/Network/AWS/CloudSearch/DefineIndexField.hs view
@@ -18,15 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Configures an 'IndexField' for the search domain. Used to create new--- fields and modify existing ones. You must specify the name of the domain--- you are configuring and an index field configuration. The index field--- configuration specifies a unique name, the index field type, and the--- options you want to configure for the field. The options you can specify--- depend on the 'IndexFieldType'. If the field exists, the new--- configuration replaces the old one. For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-index-fields.html Configuring Index Fields>--- in the /Amazon CloudSearch Developer Guide/.+-- Configures an 'IndexField' for the search domain. Used to create new fields and modify existing ones. You must specify the name of the domain you are configuring and an index field configuration. The index field configuration specifies a unique name, the index field type, and the options you want to configure for the field. The options you can specify depend on the 'IndexFieldType'. If the field exists, the new configuration replaces the old one. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-index-fields.html Configuring Index Fields> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DefineIndexField ( -- * Creating a Request@@ -51,9 +43,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DefineIndexField' operation.--- Specifies the name of the domain you want to update and the index field--- configuration.+-- | Container for the parameters to the 'DefineIndexField' operation. Specifies the name of the domain you want to update and the index field configuration. -- -- /See:/ 'defineIndexField' smart constructor. data DefineIndexField = DefineIndexField'@@ -113,8 +103,7 @@ "DomainName" =: _defeDomainName, "IndexField" =: _defeIndexField] --- | The result of a 'DefineIndexField' request. Contains the status of the--- newly-configured index field.+-- | The result of a 'DefineIndexField' request. Contains the status of the newly-configured index field. -- -- /See:/ 'defineIndexFieldResponse' smart constructor. data DefineIndexFieldResponse = DefineIndexFieldResponse'
gen/Network/AWS/CloudSearch/DefineSuggester.hs view
@@ -18,13 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Configures a suggester for a domain. A suggester enables you to display--- possible matches before users finish typing their queries. When you--- configure a suggester, you must specify the name of the text field you--- want to search for possible matches and a unique name for the suggester.--- For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-suggestions.html Getting Search Suggestions>--- in the /Amazon CloudSearch Developer Guide/.+-- Configures a suggester for a domain. A suggester enables you to display possible matches before users finish typing their queries. When you configure a suggester, you must specify the name of the text field you want to search for possible matches and a unique name for the suggester. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-suggestions.html Getting Search Suggestions> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DefineSuggester ( -- * Creating a Request@@ -49,9 +43,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DefineSuggester' operation.--- Specifies the name of the domain you want to update and the suggester--- configuration.+-- | Container for the parameters to the 'DefineSuggester' operation. Specifies the name of the domain you want to update and the suggester configuration. -- -- /See:/ 'defineSuggester' smart constructor. data DefineSuggester = DefineSuggester'@@ -111,8 +103,7 @@ "DomainName" =: _defDomainName, "Suggester" =: _defSuggester] --- | The result of a 'DefineSuggester' request. Contains the status of the--- newly-configured suggester.+-- | The result of a 'DefineSuggester' request. Contains the status of the newly-configured suggester. -- -- /See:/ 'defineSuggesterResponse' smart constructor. data DefineSuggesterResponse = DefineSuggesterResponse'
gen/Network/AWS/CloudSearch/DeleteAnalysisScheme.hs view
@@ -18,9 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Deletes an analysis scheme. For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-analysis-schemes.html Configuring Analysis Schemes>--- in the /Amazon CloudSearch Developer Guide/.+-- Deletes an analysis scheme. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-analysis-schemes.html Configuring Analysis Schemes> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DeleteAnalysisScheme ( -- * Creating a Request@@ -45,9 +43,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DeleteAnalysisScheme' operation.--- Specifies the name of the domain you want to update and the analysis--- scheme you want to delete.+-- | Container for the parameters to the 'DeleteAnalysisScheme' operation. Specifies the name of the domain you want to update and the analysis scheme you want to delete. -- -- /See:/ 'deleteAnalysisScheme' smart constructor. data DeleteAnalysisScheme = DeleteAnalysisScheme'@@ -108,8 +104,7 @@ "DomainName" =: _dasDomainName, "AnalysisSchemeName" =: _dasAnalysisSchemeName] --- | The result of a 'DeleteAnalysisScheme' request. Contains the status of--- the deleted analysis scheme.+-- | The result of a 'DeleteAnalysisScheme' request. Contains the status of the deleted analysis scheme. -- -- /See:/ 'deleteAnalysisSchemeResponse' smart constructor. data DeleteAnalysisSchemeResponse = DeleteAnalysisSchemeResponse'
gen/Network/AWS/CloudSearch/DeleteDomain.hs view
@@ -18,10 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Permanently deletes a search domain and all of its data. Once a domain--- has been deleted, it cannot be recovered. For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/deleting-domains.html Deleting a Search Domain>--- in the /Amazon CloudSearch Developer Guide/.+-- Permanently deletes a search domain and all of its data. Once a domain has been deleted, it cannot be recovered. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/deleting-domains.html Deleting a Search Domain> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DeleteDomain ( -- * Creating a Request@@ -45,8 +42,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DeleteDomain' operation. Specifies--- the name of the domain you want to delete.+-- | Container for the parameters to the 'DeleteDomain' operation. Specifies the name of the domain you want to delete. -- -- /See:/ 'deleteDomain' smart constructor. newtype DeleteDomain = DeleteDomain'@@ -96,9 +92,7 @@ "Version" =: ("2013-01-01" :: ByteString), "DomainName" =: _dddDomainName] --- | The result of a 'DeleteDomain' request. Contains the status of a newly--- deleted domain, or no status if the domain has already been completely--- deleted.+-- | The result of a 'DeleteDomain' request. Contains the status of a newly deleted domain, or no status if the domain has already been completely deleted. -- -- /See:/ 'deleteDomainResponse' smart constructor. data DeleteDomainResponse = DeleteDomainResponse'
gen/Network/AWS/CloudSearch/DeleteExpression.hs view
@@ -18,10 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Removes an 'Expression' from the search domain. For more information,--- see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-expressions.html Configuring Expressions>--- in the /Amazon CloudSearch Developer Guide/.+-- Removes an 'Expression' from the search domain. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-expressions.html Configuring Expressions> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DeleteExpression ( -- * Creating a Request@@ -46,9 +43,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DeleteExpression' operation.--- Specifies the name of the domain you want to update and the name of the--- expression you want to delete.+-- | Container for the parameters to the 'DeleteExpression' operation. Specifies the name of the domain you want to update and the name of the expression you want to delete. -- -- /See:/ 'deleteExpression' smart constructor. data DeleteExpression = DeleteExpression'@@ -108,8 +103,7 @@ "DomainName" =: _delDomainName, "ExpressionName" =: _delExpressionName] --- | The result of a 'DeleteExpression' request. Specifies the expression--- being deleted.+-- | The result of a 'DeleteExpression' request. Specifies the expression being deleted. -- -- /See:/ 'deleteExpressionResponse' smart constructor. data DeleteExpressionResponse = DeleteExpressionResponse'
gen/Network/AWS/CloudSearch/DeleteIndexField.hs view
@@ -18,10 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Removes an 'IndexField' from the search domain. For more information,--- see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-index-fields.html Configuring Index Fields>--- in the /Amazon CloudSearch Developer Guide/.+-- Removes an 'IndexField' from the search domain. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-index-fields.html Configuring Index Fields> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DeleteIndexField ( -- * Creating a Request@@ -46,9 +43,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DeleteIndexField' operation.--- Specifies the name of the domain you want to update and the name of the--- index field you want to delete.+-- | Container for the parameters to the 'DeleteIndexField' operation. Specifies the name of the domain you want to update and the name of the index field you want to delete. -- -- /See:/ 'deleteIndexField' smart constructor. data DeleteIndexField = DeleteIndexField'@@ -77,8 +72,7 @@ difiDomainName :: Lens' DeleteIndexField Text difiDomainName = lens _difiDomainName (\ s a -> s{_difiDomainName = a}); --- | The name of the index field your want to remove from the domain\'s--- indexing options.+-- | The name of the index field your want to remove from the domain\'s indexing options. difiIndexFieldName :: Lens' DeleteIndexField Text difiIndexFieldName = lens _difiIndexFieldName (\ s a -> s{_difiIndexFieldName = a});
gen/Network/AWS/CloudSearch/DeleteSuggester.hs view
@@ -18,9 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Deletes a suggester. For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-suggestions.html Getting Search Suggestions>--- in the /Amazon CloudSearch Developer Guide/.+-- Deletes a suggester. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-suggestions.html Getting Search Suggestions> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DeleteSuggester ( -- * Creating a Request@@ -45,9 +43,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DeleteSuggester' operation.--- Specifies the name of the domain you want to update and name of the--- suggester you want to delete.+-- | Container for the parameters to the 'DeleteSuggester' operation. Specifies the name of the domain you want to update and name of the suggester you want to delete. -- -- /See:/ 'deleteSuggester' smart constructor. data DeleteSuggester = DeleteSuggester'@@ -107,8 +103,7 @@ "DomainName" =: _ddDomainName, "SuggesterName" =: _ddSuggesterName] --- | The result of a 'DeleteSuggester' request. Contains the status of the--- deleted suggester.+-- | The result of a 'DeleteSuggester' request. Contains the status of the deleted suggester. -- -- /See:/ 'deleteSuggesterResponse' smart constructor. data DeleteSuggesterResponse = DeleteSuggesterResponse'
gen/Network/AWS/CloudSearch/DescribeAnalysisSchemes.hs view
@@ -18,14 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Gets the analysis schemes configured for a domain. An analysis scheme--- defines language-specific text processing options for a 'text' field.--- Can be limited to specific analysis schemes by name. By default, shows--- all analysis schemes and includes any pending changes to the--- configuration. Set the 'Deployed' option to 'true' to show the active--- configuration and exclude pending changes. For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-analysis-schemes.html Configuring Analysis Schemes>--- in the /Amazon CloudSearch Developer Guide/.+-- Gets the analysis schemes configured for a domain. An analysis scheme defines language-specific text processing options for a 'text' field. Can be limited to specific analysis schemes by name. By default, shows all analysis schemes and includes any pending changes to the configuration. Set the 'Deployed' option to 'true' to show the active configuration and exclude pending changes. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-analysis-schemes.html Configuring Analysis Schemes> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DescribeAnalysisSchemes ( -- * Creating a Request@@ -51,11 +44,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DescribeAnalysisSchemes' operation.--- Specifies the name of the domain you want to describe. To limit the--- response to particular analysis schemes, specify the names of the--- analysis schemes you want to describe. To show the active configuration--- and exclude any pending changes, set the 'Deployed' option to 'true'.+-- | Container for the parameters to the 'DescribeAnalysisSchemes' operation. Specifies the name of the domain you want to describe. To limit the response to particular analysis schemes, specify the names of the analysis schemes you want to describe. To show the active configuration and exclude any pending changes, set the 'Deployed' option to 'true'. -- -- /See:/ 'describeAnalysisSchemes' smart constructor. data DescribeAnalysisSchemes = DescribeAnalysisSchemes'@@ -83,8 +72,7 @@ , _dassDomainName = pDomainName_ } --- | Whether to display the deployed configuration ('true') or include any--- pending changes ('false'). Defaults to 'false'.+-- | Whether to display the deployed configuration ('true') or include any pending changes ('false'). Defaults to 'false'. dassDeployed :: Lens' DescribeAnalysisSchemes (Maybe Bool) dassDeployed = lens _dassDeployed (\ s a -> s{_dassDeployed = a}); @@ -130,8 +118,7 @@ (toQueryList "member" <$> _dassAnalysisSchemeNames), "DomainName" =: _dassDomainName] --- | The result of a 'DescribeAnalysisSchemes' request. Contains the analysis--- schemes configured for the domain specified in the request.+-- | The result of a 'DescribeAnalysisSchemes' request. Contains the analysis schemes configured for the domain specified in the request. -- -- /See:/ 'describeAnalysisSchemesResponse' smart constructor. data DescribeAnalysisSchemesResponse = DescribeAnalysisSchemesResponse'
gen/Network/AWS/CloudSearch/DescribeAvailabilityOptions.hs view
@@ -18,12 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Gets the availability options configured for a domain. By default, shows--- the configuration with any pending changes. Set the 'Deployed' option to--- 'true' to show the active configuration and exclude pending changes. For--- more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-availability-options.html Configuring Availability Options>--- in the /Amazon CloudSearch Developer Guide/.+-- Gets the availability options configured for a domain. By default, shows the configuration with any pending changes. Set the 'Deployed' option to 'true' to show the active configuration and exclude pending changes. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-availability-options.html Configuring Availability Options> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DescribeAvailabilityOptions ( -- * Creating a Request@@ -48,10 +43,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DescribeAvailabilityOptions'--- operation. Specifies the name of the domain you want to describe. To--- show the active configuration and exclude any pending changes, set the--- Deployed option to 'true'.+-- | Container for the parameters to the 'DescribeAvailabilityOptions' operation. Specifies the name of the domain you want to describe. To show the active configuration and exclude any pending changes, set the Deployed option to 'true'. -- -- /See:/ 'describeAvailabilityOptions' smart constructor. data DescribeAvailabilityOptions = DescribeAvailabilityOptions'@@ -75,8 +67,7 @@ , _daoDomainName = pDomainName_ } --- | Whether to display the deployed configuration ('true') or include any--- pending changes ('false'). Defaults to 'false'.+-- | Whether to display the deployed configuration ('true') or include any pending changes ('false'). Defaults to 'false'. daoDeployed :: Lens' DescribeAvailabilityOptions (Maybe Bool) daoDeployed = lens _daoDeployed (\ s a -> s{_daoDeployed = a}); @@ -115,9 +106,7 @@ "Deployed" =: _daoDeployed, "DomainName" =: _daoDomainName] --- | The result of a 'DescribeAvailabilityOptions' request. Indicates whether--- or not the Multi-AZ option is enabled for the domain specified in the--- request.+-- | The result of a 'DescribeAvailabilityOptions' request. Indicates whether or not the Multi-AZ option is enabled for the domain specified in the request. -- -- /See:/ 'describeAvailabilityOptionsResponse' smart constructor. data DescribeAvailabilityOptionsResponse = DescribeAvailabilityOptionsResponse'@@ -141,8 +130,7 @@ , _daorsResponseStatus = pResponseStatus_ } --- | The availability options configured for the domain. Indicates whether--- Multi-AZ is enabled for the domain.+-- | The availability options configured for the domain. Indicates whether Multi-AZ is enabled for the domain. daorsAvailabilityOptions :: Lens' DescribeAvailabilityOptionsResponse (Maybe AvailabilityOptionsStatus) daorsAvailabilityOptions = lens _daorsAvailabilityOptions (\ s a -> s{_daorsAvailabilityOptions = a});
gen/Network/AWS/CloudSearch/DescribeDomains.hs view
@@ -18,14 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Gets information about the search domains owned by this account. Can be--- limited to specific domains. Shows all domains by default. To get the--- number of searchable documents in a domain, use the console or submit a--- 'matchall' request to your domain\'s search endpoint:--- 'q=matchall&q.parser=structured&size=0'. For more information,--- see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-domain-info.html Getting Information about a Search Domain>--- in the /Amazon CloudSearch Developer Guide/.+-- Gets information about the search domains owned by this account. Can be limited to specific domains. Shows all domains by default. To get the number of searchable documents in a domain, use the console or submit a 'matchall' request to your domain\'s search endpoint: 'q=matchall&q.parser=structured&size=0'. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-domain-info.html Getting Information about a Search Domain> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DescribeDomains ( -- * Creating a Request@@ -49,10 +42,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DescribeDomains' operation. By--- default shows the status of all domains. To restrict the response to--- particular domains, specify the names of the domains you want to--- describe.+-- | Container for the parameters to the 'DescribeDomains' operation. By default shows the status of all domains. To restrict the response to particular domains, specify the names of the domains you want to describe. -- -- /See:/ 'describeDomains' smart constructor. newtype DescribeDomains = DescribeDomains'@@ -104,8 +94,7 @@ "DomainNames" =: toQuery (toQueryList "member" <$> _ddDomainNames)] --- | The result of a 'DescribeDomains' request. Contains the status of the--- domains specified in the request or all domains owned by the account.+-- | The result of a 'DescribeDomains' request. Contains the status of the domains specified in the request or all domains owned by the account. -- -- /See:/ 'describeDomainsResponse' smart constructor. data DescribeDomainsResponse = DescribeDomainsResponse'
gen/Network/AWS/CloudSearch/DescribeExpressions.hs view
@@ -18,13 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Gets the expressions configured for the search domain. Can be limited to--- specific expressions by name. By default, shows all expressions and--- includes any pending changes to the configuration. Set the 'Deployed'--- option to 'true' to show the active configuration and exclude pending--- changes. For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-expressions.html Configuring Expressions>--- in the /Amazon CloudSearch Developer Guide/.+-- Gets the expressions configured for the search domain. Can be limited to specific expressions by name. By default, shows all expressions and includes any pending changes to the configuration. Set the 'Deployed' option to 'true' to show the active configuration and exclude pending changes. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-expressions.html Configuring Expressions> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DescribeExpressions ( -- * Creating a Request@@ -50,11 +44,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DescribeDomains' operation.--- Specifies the name of the domain you want to describe. To restrict the--- response to particular expressions, specify the names of the expressions--- you want to describe. To show the active configuration and exclude any--- pending changes, set the 'Deployed' option to 'true'.+-- | Container for the parameters to the 'DescribeDomains' operation. Specifies the name of the domain you want to describe. To restrict the response to particular expressions, specify the names of the expressions you want to describe. To show the active configuration and exclude any pending changes, set the 'Deployed' option to 'true'. -- -- /See:/ 'describeExpressions' smart constructor. data DescribeExpressions = DescribeExpressions'@@ -82,13 +72,11 @@ , _deDomainName = pDomainName_ } --- | Whether to display the deployed configuration ('true') or include any--- pending changes ('false'). Defaults to 'false'.+-- | Whether to display the deployed configuration ('true') or include any pending changes ('false'). Defaults to 'false'. deDeployed :: Lens' DescribeExpressions (Maybe Bool) deDeployed = lens _deDeployed (\ s a -> s{_deDeployed = a}); --- | Limits the 'DescribeExpressions' response to the specified expressions.--- If not specified, all expressions are shown.+-- | Limits the 'DescribeExpressions' response to the specified expressions. If not specified, all expressions are shown. deExpressionNames :: Lens' DescribeExpressions [Text] deExpressionNames = lens _deExpressionNames (\ s a -> s{_deExpressionNames = a}) . _Default . _Coerce; @@ -129,8 +117,7 @@ (toQueryList "member" <$> _deExpressionNames), "DomainName" =: _deDomainName] --- | The result of a 'DescribeExpressions' request. Contains the expressions--- configured for the domain specified in the request.+-- | The result of a 'DescribeExpressions' request. Contains the expressions configured for the domain specified in the request. -- -- /See:/ 'describeExpressionsResponse' smart constructor. data DescribeExpressionsResponse = DescribeExpressionsResponse'
gen/Network/AWS/CloudSearch/DescribeIndexFields.hs view
@@ -18,13 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Gets information about the index fields configured for the search--- domain. Can be limited to specific fields by name. By default, shows all--- fields and includes any pending changes to the configuration. Set the--- 'Deployed' option to 'true' to show the active configuration and exclude--- pending changes. For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-domain-info.html Getting Domain Information>--- in the /Amazon CloudSearch Developer Guide/.+-- Gets information about the index fields configured for the search domain. Can be limited to specific fields by name. By default, shows all fields and includes any pending changes to the configuration. Set the 'Deployed' option to 'true' to show the active configuration and exclude pending changes. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-domain-info.html Getting Domain Information> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DescribeIndexFields ( -- * Creating a Request@@ -50,11 +44,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DescribeIndexFields' operation.--- Specifies the name of the domain you want to describe. To restrict the--- response to particular index fields, specify the names of the index--- fields you want to describe. To show the active configuration and--- exclude any pending changes, set the 'Deployed' option to 'true'.+-- | Container for the parameters to the 'DescribeIndexFields' operation. Specifies the name of the domain you want to describe. To restrict the response to particular index fields, specify the names of the index fields you want to describe. To show the active configuration and exclude any pending changes, set the 'Deployed' option to 'true'. -- -- /See:/ 'describeIndexFields' smart constructor. data DescribeIndexFields = DescribeIndexFields'@@ -82,13 +72,11 @@ , _difDomainName = pDomainName_ } --- | Whether to display the deployed configuration ('true') or include any--- pending changes ('false'). Defaults to 'false'.+-- | Whether to display the deployed configuration ('true') or include any pending changes ('false'). Defaults to 'false'. difDeployed :: Lens' DescribeIndexFields (Maybe Bool) difDeployed = lens _difDeployed (\ s a -> s{_difDeployed = a}); --- | A list of the index fields you want to describe. If not specified,--- information is returned for all configured index fields.+-- | A list of the index fields you want to describe. If not specified, information is returned for all configured index fields. difFieldNames :: Lens' DescribeIndexFields [Text] difFieldNames = lens _difFieldNames (\ s a -> s{_difFieldNames = a}) . _Default . _Coerce; @@ -128,8 +116,7 @@ toQuery (toQueryList "member" <$> _difFieldNames), "DomainName" =: _difDomainName] --- | The result of a 'DescribeIndexFields' request. Contains the index fields--- configured for the domain specified in the request.+-- | The result of a 'DescribeIndexFields' request. Contains the index fields configured for the domain specified in the request. -- -- /See:/ 'describeIndexFieldsResponse' smart constructor. data DescribeIndexFieldsResponse = DescribeIndexFieldsResponse'
gen/Network/AWS/CloudSearch/DescribeScalingParameters.hs view
@@ -18,11 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Gets the scaling parameters configured for a domain. A domain\'s scaling--- parameters specify the desired search instance type and replication--- count. For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-scaling-options.html Configuring Scaling Options>--- in the /Amazon CloudSearch Developer Guide/.+-- Gets the scaling parameters configured for a domain. A domain\'s scaling parameters specify the desired search instance type and replication count. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-scaling-options.html Configuring Scaling Options> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DescribeScalingParameters ( -- * Creating a Request@@ -46,8 +42,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DescribeScalingParameters'--- operation. Specifies the name of the domain you want to describe.+-- | Container for the parameters to the 'DescribeScalingParameters' operation. Specifies the name of the domain you want to describe. -- -- /See:/ 'describeScalingParameters' smart constructor. newtype DescribeScalingParameters = DescribeScalingParameters'@@ -99,8 +94,7 @@ "Version" =: ("2013-01-01" :: ByteString), "DomainName" =: _dspDomainName] --- | The result of a 'DescribeScalingParameters' request. Contains the--- scaling parameters configured for the domain specified in the request.+-- | The result of a 'DescribeScalingParameters' request. Contains the scaling parameters configured for the domain specified in the request. -- -- /See:/ 'describeScalingParametersResponse' smart constructor. data DescribeScalingParametersResponse = DescribeScalingParametersResponse'
gen/Network/AWS/CloudSearch/DescribeServiceAccessPolicies.hs view
@@ -18,13 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Gets information about the access policies that control access to the--- domain\'s document and search endpoints. By default, shows the--- configuration with any pending changes. Set the 'Deployed' option to--- 'true' to show the active configuration and exclude pending changes. For--- more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-access.html Configuring Access for a Search Domain>--- in the /Amazon CloudSearch Developer Guide/.+-- Gets information about the access policies that control access to the domain\'s document and search endpoints. By default, shows the configuration with any pending changes. Set the 'Deployed' option to 'true' to show the active configuration and exclude pending changes. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-access.html Configuring Access for a Search Domain> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DescribeServiceAccessPolicies ( -- * Creating a Request@@ -49,10 +43,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DescribeServiceAccessPolicies'--- operation. Specifies the name of the domain you want to describe. To--- show the active configuration and exclude any pending changes, set the--- 'Deployed' option to 'true'.+-- | Container for the parameters to the 'DescribeServiceAccessPolicies' operation. Specifies the name of the domain you want to describe. To show the active configuration and exclude any pending changes, set the 'Deployed' option to 'true'. -- -- /See:/ 'describeServiceAccessPolicies' smart constructor. data DescribeServiceAccessPolicies = DescribeServiceAccessPolicies'@@ -76,8 +67,7 @@ , _dsapDomainName = pDomainName_ } --- | Whether to display the deployed configuration ('true') or include any--- pending changes ('false'). Defaults to 'false'.+-- | Whether to display the deployed configuration ('true') or include any pending changes ('false'). Defaults to 'false'. dsapDeployed :: Lens' DescribeServiceAccessPolicies (Maybe Bool) dsapDeployed = lens _dsapDeployed (\ s a -> s{_dsapDeployed = a});
gen/Network/AWS/CloudSearch/DescribeSuggesters.hs view
@@ -18,14 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Gets the suggesters configured for a domain. A suggester enables you to--- display possible matches before users finish typing their queries. Can--- be limited to specific suggesters by name. By default, shows all--- suggesters and includes any pending changes to the configuration. Set--- the 'Deployed' option to 'true' to show the active configuration and--- exclude pending changes. For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-suggestions.html Getting Search Suggestions>--- in the /Amazon CloudSearch Developer Guide/.+-- Gets the suggesters configured for a domain. A suggester enables you to display possible matches before users finish typing their queries. Can be limited to specific suggesters by name. By default, shows all suggesters and includes any pending changes to the configuration. Set the 'Deployed' option to 'true' to show the active configuration and exclude pending changes. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-suggestions.html Getting Search Suggestions> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.DescribeSuggesters ( -- * Creating a Request@@ -51,11 +44,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'DescribeSuggester' operation.--- Specifies the name of the domain you want to describe. To restrict the--- response to particular suggesters, specify the names of the suggesters--- you want to describe. To show the active configuration and exclude any--- pending changes, set the 'Deployed' option to 'true'.+-- | Container for the parameters to the 'DescribeSuggester' operation. Specifies the name of the domain you want to describe. To restrict the response to particular suggesters, specify the names of the suggesters you want to describe. To show the active configuration and exclude any pending changes, set the 'Deployed' option to 'true'. -- -- /See:/ 'describeSuggesters' smart constructor. data DescribeSuggesters = DescribeSuggesters'@@ -83,8 +72,7 @@ , _dssDomainName = pDomainName_ } --- | Whether to display the deployed configuration ('true') or include any--- pending changes ('false'). Defaults to 'false'.+-- | Whether to display the deployed configuration ('true') or include any pending changes ('false'). Defaults to 'false'. dssDeployed :: Lens' DescribeSuggesters (Maybe Bool) dssDeployed = lens _dssDeployed (\ s a -> s{_dssDeployed = a});
gen/Network/AWS/CloudSearch/IndexDocuments.hs view
@@ -18,9 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Tells the search domain to start indexing its documents using the latest--- indexing options. This operation must be invoked to activate options--- whose < OptionStatus> is 'RequiresIndexDocuments'.+-- Tells the search domain to start indexing its documents using the latest indexing options. This operation must be invoked to activate options whose < OptionStatus> is 'RequiresIndexDocuments'. module Network.AWS.CloudSearch.IndexDocuments ( -- * Creating a Request@@ -44,8 +42,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'IndexDocuments' operation.--- Specifies the name of the domain you want to re-index.+-- | Container for the parameters to the 'IndexDocuments' operation. Specifies the name of the domain you want to re-index. -- -- /See:/ 'indexDocuments' smart constructor. newtype IndexDocuments = IndexDocuments'@@ -97,8 +94,7 @@ "Version" =: ("2013-01-01" :: ByteString), "DomainName" =: _idDomainName] --- | The result of an 'IndexDocuments' request. Contains the status of the--- indexing operation, including the fields being indexed.+-- | The result of an 'IndexDocuments' request. Contains the status of the indexing operation, including the fields being indexed. -- -- /See:/ 'indexDocumentsResponse' smart constructor. data IndexDocumentsResponse = IndexDocumentsResponse'
gen/Network/AWS/CloudSearch/ListDomainNames.hs view
@@ -79,8 +79,7 @@ ["Action" =: ("ListDomainNames" :: ByteString), "Version" =: ("2013-01-01" :: ByteString)]) --- | The result of a 'ListDomainNames' request. Contains a list of the--- domains owned by an account.+-- | The result of a 'ListDomainNames' request. Contains a list of the domains owned by an account. -- -- /See:/ 'listDomainNamesResponse' smart constructor. data ListDomainNamesResponse = ListDomainNamesResponse'
gen/Network/AWS/CloudSearch/Types.hs view
@@ -331,26 +331,21 @@ _BaseException :: AsError a => Getting (First ServiceError) a ServiceError _BaseException = _ServiceError . hasCode "BaseException" --- | The request was rejected because it attempted an operation which is not--- enabled.+-- | The request was rejected because it attempted an operation which is not enabled. _DisabledOperationException :: AsError a => Getting (First ServiceError) a ServiceError _DisabledOperationException = _ServiceError . hasStatus 409 . hasCode "DisabledAction" --- | An internal error occurred while processing the request. If this problem--- persists, report an issue from the--- <http://status.aws.amazon.com/ Service Health Dashboard>.+-- | An internal error occurred while processing the request. If this problem persists, report an issue from the <http://status.aws.amazon.com/ Service Health Dashboard>. _InternalException :: AsError a => Getting (First ServiceError) a ServiceError _InternalException = _ServiceError . hasStatus 500 . hasCode "InternalException" --- | The request was rejected because it specified an invalid type--- definition.+-- | The request was rejected because it specified an invalid type definition. _InvalidTypeException :: AsError a => Getting (First ServiceError) a ServiceError _InvalidTypeException = _ServiceError . hasStatus 409 . hasCode "InvalidType" --- | The request was rejected because it attempted to reference a resource--- that does not exist.+-- | The request was rejected because it attempted to reference a resource that does not exist. _ResourceNotFoundException :: AsError a => Getting (First ServiceError) a ServiceError _ResourceNotFoundException = _ServiceError . hasStatus 409 . hasCode "ResourceNotFound"
gen/Network/AWS/CloudSearch/Types/Product.hs view
@@ -21,8 +21,7 @@ import Network.AWS.Lens import Network.AWS.Prelude --- | The configured access rules for the domain\'s document and search--- endpoints, and the current status of those rules.+-- | The configured access rules for the domain\'s document and search endpoints, and the current status of those rules. -- -- /See:/ 'accessPoliciesStatus' smart constructor. data AccessPoliciesStatus = AccessPoliciesStatus'@@ -64,8 +63,7 @@ instance NFData AccessPoliciesStatus --- | Synonyms, stopwords, and stemming options for an analysis scheme.--- Includes tokenization dictionary for Japanese.+-- | Synonyms, stopwords, and stemming options for an analysis scheme. Includes tokenization dictionary for Japanese. -- -- /See:/ 'analysisOptions' smart constructor. data AnalysisOptions = AnalysisOptions'@@ -100,49 +98,23 @@ , _aoStemmingDictionary = Nothing } --- | The level of algorithmic stemming to perform: 'none', 'minimal',--- 'light', or 'full'. The available levels vary depending on the language.--- For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/text-processing.html#text-processing-settings Language Specific Text Processing Settings>--- in the /Amazon CloudSearch Developer Guide/+-- | The level of algorithmic stemming to perform: 'none', 'minimal', 'light', or 'full'. The available levels vary depending on the language. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/text-processing.html#text-processing-settings Language Specific Text Processing Settings> in the /Amazon CloudSearch Developer Guide/ aoAlgorithmicStemming :: Lens' AnalysisOptions (Maybe AlgorithmicStemming) aoAlgorithmicStemming = lens _aoAlgorithmicStemming (\ s a -> s{_aoAlgorithmicStemming = a}); --- | A JSON array of terms to ignore during indexing and searching. For--- example, '[\"a\", \"an\", \"the\", \"of\"]'. The stopwords dictionary--- must explicitly list each word you want to ignore. Wildcards and regular--- expressions are not supported.+-- | A JSON array of terms to ignore during indexing and searching. For example, '[\"a\", \"an\", \"the\", \"of\"]'. The stopwords dictionary must explicitly list each word you want to ignore. Wildcards and regular expressions are not supported. aoStopwords :: Lens' AnalysisOptions (Maybe Text) aoStopwords = lens _aoStopwords (\ s a -> s{_aoStopwords = a}); --- | A JSON array that contains a collection of terms, tokens, readings and--- part of speech for Japanese Tokenizaiton. The Japanese tokenization--- dictionary enables you to override the default tokenization for selected--- terms. This is only valid for Japanese language fields.+-- | A JSON array that contains a collection of terms, tokens, readings and part of speech for Japanese Tokenizaiton. The Japanese tokenization dictionary enables you to override the default tokenization for selected terms. This is only valid for Japanese language fields. aoJapaneseTokenizationDictionary :: Lens' AnalysisOptions (Maybe Text) aoJapaneseTokenizationDictionary = lens _aoJapaneseTokenizationDictionary (\ s a -> s{_aoJapaneseTokenizationDictionary = a}); --- | A JSON object that defines synonym groups and aliases. A synonym group--- is an array of arrays, where each sub-array is a group of terms where--- each term in the group is considered a synonym of every other term in--- the group. The aliases value is an object that contains a collection of--- string:value pairs where the string specifies a term and the array of--- values specifies each of the aliases for that term. An alias is--- considered a synonym of the specified term, but the term is not--- considered a synonym of the alias. For more information about specifying--- synonyms, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-analysis-schemes.html#synonyms Synonyms>--- in the /Amazon CloudSearch Developer Guide/.+-- | A JSON object that defines synonym groups and aliases. A synonym group is an array of arrays, where each sub-array is a group of terms where each term in the group is considered a synonym of every other term in the group. The aliases value is an object that contains a collection of string:value pairs where the string specifies a term and the array of values specifies each of the aliases for that term. An alias is considered a synonym of the specified term, but the term is not considered a synonym of the alias. For more information about specifying synonyms, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-analysis-schemes.html#synonyms Synonyms> in the /Amazon CloudSearch Developer Guide/. aoSynonyms :: Lens' AnalysisOptions (Maybe Text) aoSynonyms = lens _aoSynonyms (\ s a -> s{_aoSynonyms = a}); --- | A JSON object that contains a collection of string:value pairs that each--- map a term to its stem. For example,--- '{\"term1\": \"stem1\", \"term2\": \"stem2\", \"term3\": \"stem3\"}'.--- The stemming dictionary is applied in addition to any algorithmic--- stemming. This enables you to override the results of the algorithmic--- stemming to correct specific cases of overstemming or understemming. The--- maximum size of a stemming dictionary is 500 KB.+-- | A JSON object that contains a collection of string:value pairs that each map a term to its stem. For example, '{\"term1\": \"stem1\", \"term2\": \"stem2\", \"term3\": \"stem3\"}'. The stemming dictionary is applied in addition to any algorithmic stemming. This enables you to override the results of the algorithmic stemming to correct specific cases of overstemming or understemming. The maximum size of a stemming dictionary is 500 KB. aoStemmingDictionary :: Lens' AnalysisOptions (Maybe Text) aoStemmingDictionary = lens _aoStemmingDictionary (\ s a -> s{_aoStemmingDictionary = a}); @@ -168,11 +140,7 @@ "Synonyms" =: _aoSynonyms, "StemmingDictionary" =: _aoStemmingDictionary] --- | Configuration information for an analysis scheme. Each analysis scheme--- has a unique name and specifies the language of the text to be--- processed. The following options can be configured for an analysis--- scheme: 'Synonyms', 'Stopwords', 'StemmingDictionary',--- 'JapaneseTokenizationDictionary' and 'AlgorithmicStemming'.+-- | Configuration information for an analysis scheme. Each analysis scheme has a unique name and specifies the language of the text to be processed. The following options can be configured for an analysis scheme: 'Synonyms', 'Stopwords', 'StemmingDictionary', 'JapaneseTokenizationDictionary' and 'AlgorithmicStemming'. -- -- /See:/ 'analysisScheme' smart constructor. data AnalysisScheme = AnalysisScheme'@@ -316,9 +284,7 @@ instance NFData AvailabilityOptionsStatus --- | Options for a field that contains an array of dates. Present if--- 'IndexFieldType' specifies the field is of type 'date-array'. All--- options are enabled by default.+-- | Options for a field that contains an array of dates. Present if 'IndexFieldType' specifies the field is of type 'date-array'. All options are enabled by default. -- -- /See:/ 'dateArrayOptions' smart constructor. data DateArrayOptions = DateArrayOptions'@@ -369,8 +335,7 @@ daosSearchEnabled :: Lens' DateArrayOptions (Maybe Bool) daosSearchEnabled = lens _daosSearchEnabled (\ s a -> s{_daosSearchEnabled = a}); --- | A value to use for the field if the field isn\'t specified for a--- document.+-- | A value to use for the field if the field isn\'t specified for a document. daosDefaultValue :: Lens' DateArrayOptions (Maybe Text) daosDefaultValue = lens _daosDefaultValue (\ s a -> s{_daosDefaultValue = a}); @@ -395,10 +360,7 @@ "SearchEnabled" =: _daosSearchEnabled, "DefaultValue" =: _daosDefaultValue] --- | Options for a date field. Dates and times are specified in UTC--- (Coordinated Universal Time) according to IETF RFC3339:--- yyyy-mm-ddT00:00:00Z. Present if 'IndexFieldType' specifies the field is--- of type 'date'. All options are enabled by default.+-- | Options for a date field. Dates and times are specified in UTC (Coordinated Universal Time) according to IETF RFC3339: yyyy-mm-ddT00:00:00Z. Present if 'IndexFieldType' specifies the field is of type 'date'. All options are enabled by default. -- -- /See:/ 'dateOptions' smart constructor. data DateOptions = DateOptions'@@ -457,8 +419,7 @@ doSortEnabled :: Lens' DateOptions (Maybe Bool) doSortEnabled = lens _doSortEnabled (\ s a -> s{_doSortEnabled = a}); --- | A value to use for the field if the field isn\'t specified for a--- document.+-- | A value to use for the field if the field isn\'t specified for a document. doDefaultValue :: Lens' DateOptions (Maybe Text) doDefaultValue = lens _doDefaultValue (\ s a -> s{_doDefaultValue = a}); @@ -513,22 +474,11 @@ , _dsoSourceField = pSourceField_ } --- | An expression that computes a score for each suggestion to control how--- they are sorted. The scores are rounded to the nearest integer, with a--- floor of 0 and a ceiling of 2^31-1. A document\'s relevance score is not--- computed for suggestions, so sort expressions cannot reference the--- '_score' value. To sort suggestions using a numeric field or existing--- expression, simply specify the name of the field or expression. If no--- expression is configured for the suggester, the suggestions are sorted--- with the closest matches listed first.+-- | An expression that computes a score for each suggestion to control how they are sorted. The scores are rounded to the nearest integer, with a floor of 0 and a ceiling of 2^31-1. A document\'s relevance score is not computed for suggestions, so sort expressions cannot reference the '_score' value. To sort suggestions using a numeric field or existing expression, simply specify the name of the field or expression. If no expression is configured for the suggester, the suggestions are sorted with the closest matches listed first. dsoSortExpression :: Lens' DocumentSuggesterOptions (Maybe Text) dsoSortExpression = lens _dsoSortExpression (\ s a -> s{_dsoSortExpression = a}); --- | The level of fuzziness allowed when suggesting matches for a string:--- 'none', 'low', or 'high'. With none, the specified string is treated as--- an exact prefix. With low, suggestions must differ from the specified--- string by no more than one character. With high, suggestions can differ--- by up to two characters. The default is none.+-- | The level of fuzziness allowed when suggesting matches for a string: 'none', 'low', or 'high'. With none, the specified string is treated as an exact prefix. With low, suggestions must differ from the specified string by no more than one character. With high, suggestions can differ by up to two characters. The default is none. dsoFuzzyMatching :: Lens' DocumentSuggesterOptions (Maybe SuggesterFuzzyMatching) dsoFuzzyMatching = lens _dsoFuzzyMatching (\ s a -> s{_dsoFuzzyMatching = a}); @@ -623,8 +573,7 @@ , _dsRequiresIndexDocuments = pRequiresIndexDocuments_ } --- | The number of search instances that are available to process search--- requests.+-- | The number of search instances that are available to process search requests. dsSearchInstanceCount :: Lens' DomainStatus (Maybe Natural) dsSearchInstanceCount = lens _dsSearchInstanceCount (\ s a -> s{_dsSearchInstanceCount = a}) . mapping _Nat; @@ -640,10 +589,7 @@ dsARN :: Lens' DomainStatus (Maybe Text) dsARN = lens _dsARN (\ s a -> s{_dsARN = a}); --- | True if the search domain is created. It can take several minutes to--- initialize a domain when < CreateDomain> is called. Newly created search--- domains are returned from < DescribeDomains> with a false value for--- Created until domain creation is complete.+-- | True if the search domain is created. It can take several minutes to initialize a domain when < CreateDomain> is called. Newly created search domains are returned from < DescribeDomains> with a false value for Created until domain creation is complete. dsCreated :: Lens' DomainStatus (Maybe Bool) dsCreated = lens _dsCreated (\ s a -> s{_dsCreated = a}); @@ -659,16 +605,11 @@ dsSearchPartitionCount :: Lens' DomainStatus (Maybe Natural) dsSearchPartitionCount = lens _dsSearchPartitionCount (\ s a -> s{_dsSearchPartitionCount = a}) . mapping _Nat; --- | True if the search domain has been deleted. The system must clean up--- resources dedicated to the search domain when < DeleteDomain> is called.--- Newly deleted search domains are returned from < DescribeDomains> with a--- true value for IsDeleted for several minutes until resource cleanup is--- complete.+-- | True if the search domain has been deleted. The system must clean up resources dedicated to the search domain when < DeleteDomain> is called. Newly deleted search domains are returned from < DescribeDomains> with a true value for IsDeleted for several minutes until resource cleanup is complete. dsDeleted :: Lens' DomainStatus (Maybe Bool) dsDeleted = lens _dsDeleted (\ s a -> s{_dsDeleted = a}); --- | True if processing is being done to activate the current domain--- configuration.+-- | True if processing is being done to activate the current domain configuration. dsProcessing :: Lens' DomainStatus (Maybe Bool) dsProcessing = lens _dsProcessing (\ s a -> s{_dsProcessing = a}); @@ -680,8 +621,7 @@ dsDomainName :: Lens' DomainStatus Text dsDomainName = lens _dsDomainName (\ s a -> s{_dsDomainName = a}); --- | True if < IndexDocuments> needs to be called to activate the current--- domain configuration.+-- | True if < IndexDocuments> needs to be called to activate the current domain configuration. dsRequiresIndexDocuments :: Lens' DomainStatus Bool dsRequiresIndexDocuments = lens _dsRequiresIndexDocuments (\ s a -> s{_dsRequiresIndexDocuments = a}); @@ -706,9 +646,7 @@ instance NFData DomainStatus --- | Options for a field that contains an array of double-precision 64-bit--- floating point values. Present if 'IndexFieldType' specifies the field--- is of type 'double-array'. All options are enabled by default.+-- | Options for a field that contains an array of double-precision 64-bit floating point values. Present if 'IndexFieldType' specifies the field is of type 'double-array'. All options are enabled by default. -- -- /See:/ 'doubleArrayOptions' smart constructor. data DoubleArrayOptions = DoubleArrayOptions'@@ -759,8 +697,7 @@ daoSearchEnabled :: Lens' DoubleArrayOptions (Maybe Bool) daoSearchEnabled = lens _daoSearchEnabled (\ s a -> s{_daoSearchEnabled = a}); --- | A value to use for the field if the field isn\'t specified for a--- document.+-- | A value to use for the field if the field isn\'t specified for a document. daoDefaultValue :: Lens' DoubleArrayOptions (Maybe Double) daoDefaultValue = lens _daoDefaultValue (\ s a -> s{_daoDefaultValue = a}); @@ -785,9 +722,7 @@ "SearchEnabled" =: _daoSearchEnabled, "DefaultValue" =: _daoDefaultValue] --- | Options for a double-precision 64-bit floating point field. Present if--- 'IndexFieldType' specifies the field is of type 'double'. All options--- are enabled by default.+-- | Options for a double-precision 64-bit floating point field. Present if 'IndexFieldType' specifies the field is of type 'double'. All options are enabled by default. -- -- /See:/ 'doubleOptions' smart constructor. data DoubleOptions = DoubleOptions'@@ -846,9 +781,7 @@ dSortEnabled :: Lens' DoubleOptions (Maybe Bool) dSortEnabled = lens _dSortEnabled (\ s a -> s{_dSortEnabled = a}); --- | A value to use for the field if the field isn\'t specified for a--- document. This can be important if you are using the field in an--- expression and that field is not present in every document.+-- | A value to use for the field if the field isn\'t specified for a document. This can be important if you are using the field in an expression and that field is not present in every document. dDefaultValue :: Lens' DoubleOptions (Maybe Double) dDefaultValue = lens _dDefaultValue (\ s a -> s{_dDefaultValue = a}); @@ -875,9 +808,7 @@ "SortEnabled" =: _dSortEnabled, "DefaultValue" =: _dDefaultValue] --- | A named expression that can be evaluated at search time. Can be used to--- sort the search results, define other expressions, or return computed--- information in the search results.+-- | A named expression that can be evaluated at search time. Can be used to sort the search results, define other expressions, or return computed information in the search results. -- -- /See:/ 'expression' smart constructor. data Expression = Expression'@@ -950,8 +881,7 @@ , _esStatus = pStatus_ } --- | The expression that is evaluated for sorting while processing a search--- request.+-- | The expression that is evaluated for sorting while processing a search request. esOptions :: Lens' ExpressionStatus Expression esOptions = lens _esOptions (\ s a -> s{_esOptions = a}); @@ -968,8 +898,7 @@ instance NFData ExpressionStatus --- | Configuration information for a field in the index, including its name,--- type, and options. The supported options depend on the 'IndexFieldType'.+-- | Configuration information for a field in the index, including its name, type, and options. The supported options depend on the 'IndexFieldType'. -- -- /See:/ 'indexField' smart constructor. data IndexField = IndexField'@@ -1082,21 +1011,11 @@ ifLiteralOptions :: Lens' IndexField (Maybe LiteralOptions) ifLiteralOptions = lens _ifLiteralOptions (\ s a -> s{_ifLiteralOptions = a}); --- | A string that represents the name of an index field. CloudSearch--- supports regular index fields as well as dynamic fields. A dynamic--- field\'s name defines a pattern that begins or ends with a wildcard. Any--- document fields that don\'t map to a regular index field but do match a--- dynamic field\'s pattern are configured with the dynamic field\'s--- indexing options.+-- | A string that represents the name of an index field. CloudSearch supports regular index fields as well as dynamic fields. A dynamic field\'s name defines a pattern that begins or ends with a wildcard. Any document fields that don\'t map to a regular index field but do match a dynamic field\'s pattern are configured with the dynamic field\'s indexing options. ----- Regular field names begin with a letter and can contain the following--- characters: a-z (lowercase), 0-9, and _ (underscore). Dynamic field--- names must begin or end with a wildcard (*). The wildcard can also be--- the only character in a dynamic field name. Multiple wildcards, and--- wildcards embedded within a string are not supported.+-- Regular field names begin with a letter and can contain the following characters: a-z (lowercase), 0-9, and _ (underscore). Dynamic field names must begin or end with a wildcard (*). The wildcard can also be the only character in a dynamic field name. Multiple wildcards, and wildcards embedded within a string are not supported. ----- The name 'score' is reserved and cannot be used as a field name. To--- reference a document\'s ID, you can use the name '_id'.+-- The name 'score' is reserved and cannot be used as a field name. To reference a document\'s ID, you can use the name '_id'. ifIndexFieldName :: Lens' IndexField Text ifIndexFieldName = lens _ifIndexFieldName (\ s a -> s{_ifIndexFieldName = a}); @@ -1184,9 +1103,7 @@ instance NFData IndexFieldStatus --- | Options for a field that contains an array of 64-bit signed integers.--- Present if 'IndexFieldType' specifies the field is of type 'int-array'.--- All options are enabled by default.+-- | Options for a field that contains an array of 64-bit signed integers. Present if 'IndexFieldType' specifies the field is of type 'int-array'. All options are enabled by default. -- -- /See:/ 'intArrayOptions' smart constructor. data IntArrayOptions = IntArrayOptions'@@ -1237,8 +1154,7 @@ iaoSearchEnabled :: Lens' IntArrayOptions (Maybe Bool) iaoSearchEnabled = lens _iaoSearchEnabled (\ s a -> s{_iaoSearchEnabled = a}); --- | A value to use for the field if the field isn\'t specified for a--- document.+-- | A value to use for the field if the field isn\'t specified for a document. iaoDefaultValue :: Lens' IntArrayOptions (Maybe Integer) iaoDefaultValue = lens _iaoDefaultValue (\ s a -> s{_iaoDefaultValue = a}); @@ -1263,9 +1179,7 @@ "SearchEnabled" =: _iaoSearchEnabled, "DefaultValue" =: _iaoDefaultValue] --- | Options for a 64-bit signed integer field. Present if 'IndexFieldType'--- specifies the field is of type 'int'. All options are enabled by--- default.+-- | Options for a 64-bit signed integer field. Present if 'IndexFieldType' specifies the field is of type 'int'. All options are enabled by default. -- -- /See:/ 'intOptions' smart constructor. data IntOptions = IntOptions'@@ -1324,9 +1238,7 @@ ioSortEnabled :: Lens' IntOptions (Maybe Bool) ioSortEnabled = lens _ioSortEnabled (\ s a -> s{_ioSortEnabled = a}); --- | A value to use for the field if the field isn\'t specified for a--- document. This can be important if you are using the field in an--- expression and that field is not present in every document.+-- | A value to use for the field if the field isn\'t specified for a document. This can be important if you are using the field in an expression and that field is not present in every document. ioDefaultValue :: Lens' IntOptions (Maybe Integer) ioDefaultValue = lens _ioDefaultValue (\ s a -> s{_ioDefaultValue = a}); @@ -1353,10 +1265,7 @@ "SortEnabled" =: _ioSortEnabled, "DefaultValue" =: _ioDefaultValue] --- | Options for a latlon field. A latlon field contains a location stored as--- a latitude and longitude value pair. Present if 'IndexFieldType'--- specifies the field is of type 'latlon'. All options are enabled by--- default.+-- | Options for a latlon field. A latlon field contains a location stored as a latitude and longitude value pair. Present if 'IndexFieldType' specifies the field is of type 'latlon'. All options are enabled by default. -- -- /See:/ 'latLonOptions' smart constructor. data LatLonOptions = LatLonOptions'@@ -1415,8 +1324,7 @@ lloSortEnabled :: Lens' LatLonOptions (Maybe Bool) lloSortEnabled = lens _lloSortEnabled (\ s a -> s{_lloSortEnabled = a}); --- | A value to use for the field if the field isn\'t specified for a--- document.+-- | A value to use for the field if the field isn\'t specified for a document. lloDefaultValue :: Lens' LatLonOptions (Maybe Text) lloDefaultValue = lens _lloDefaultValue (\ s a -> s{_lloDefaultValue = a}); @@ -1484,9 +1392,7 @@ instance NFData Limits --- | Options for a field that contains an array of literal strings. Present--- if 'IndexFieldType' specifies the field is of type 'literal-array'. All--- options are enabled by default.+-- | Options for a field that contains an array of literal strings. Present if 'IndexFieldType' specifies the field is of type 'literal-array'. All options are enabled by default. -- -- /See:/ 'literalArrayOptions' smart constructor. data LiteralArrayOptions = LiteralArrayOptions'@@ -1537,8 +1443,7 @@ laoSearchEnabled :: Lens' LiteralArrayOptions (Maybe Bool) laoSearchEnabled = lens _laoSearchEnabled (\ s a -> s{_laoSearchEnabled = a}); --- | A value to use for the field if the field isn\'t specified for a--- document.+-- | A value to use for the field if the field isn\'t specified for a document. laoDefaultValue :: Lens' LiteralArrayOptions (Maybe Text) laoDefaultValue = lens _laoDefaultValue (\ s a -> s{_laoDefaultValue = a}); @@ -1563,8 +1468,7 @@ "SearchEnabled" =: _laoSearchEnabled, "DefaultValue" =: _laoDefaultValue] --- | Options for literal field. Present if 'IndexFieldType' specifies the--- field is of type 'literal'. All options are enabled by default.+-- | Options for literal field. Present if 'IndexFieldType' specifies the field is of type 'literal'. All options are enabled by default. -- -- /See:/ 'literalOptions' smart constructor. data LiteralOptions = LiteralOptions'@@ -1623,8 +1527,7 @@ loSortEnabled :: Lens' LiteralOptions (Maybe Bool) loSortEnabled = lens _loSortEnabled (\ s a -> s{_loSortEnabled = a}); --- | A value to use for the field if the field isn\'t specified for a--- document.+-- | A value to use for the field if the field isn\'t specified for a document. loDefaultValue :: Lens' LiteralOptions (Maybe Text) loDefaultValue = lens _loDefaultValue (\ s a -> s{_loDefaultValue = a}); @@ -1707,16 +1610,10 @@ -- | The state of processing a change to an option. Possible values: ----- - 'RequiresIndexDocuments': the option\'s latest value will not be--- deployed until < IndexDocuments> has been called and indexing is--- complete.--- - 'Processing': the option\'s latest value is in the process of being--- activated.+-- - 'RequiresIndexDocuments': the option\'s latest value will not be deployed until < IndexDocuments> has been called and indexing is complete.+-- - 'Processing': the option\'s latest value is in the process of being activated. -- - 'Active': the option\'s latest value is completely deployed.--- - 'FailedToValidate': the option value is not compatible with the--- domain\'s data and cannot be used to index the data. You must either--- modify the option value or update or remove the incompatible--- documents.+-- - 'FailedToValidate': the option value is not compatible with the domain\'s data and cannot be used to index the data. You must either modify the option value or update or remove the incompatible documents. osState :: Lens' OptionStatus OptionState osState = lens _osState (\ s a -> s{_osState = a}); @@ -1732,8 +1629,7 @@ instance NFData OptionStatus --- | The desired instance type and desired number of replicas of each index--- partition.+-- | The desired instance type and desired number of replicas of each index partition. -- -- /See:/ 'scalingParameters' smart constructor. data ScalingParameters = ScalingParameters'@@ -1760,18 +1656,15 @@ , _spDesiredPartitionCount = Nothing } --- | The instance type that you want to preconfigure for your domain. For--- example, 'search.m1.small'.+-- | The instance type that you want to preconfigure for your domain. For example, 'search.m1.small'. spDesiredInstanceType :: Lens' ScalingParameters (Maybe PartitionInstanceType) spDesiredInstanceType = lens _spDesiredInstanceType (\ s a -> s{_spDesiredInstanceType = a}); --- | The number of replicas you want to preconfigure for each index--- partition.+-- | The number of replicas you want to preconfigure for each index partition. spDesiredReplicationCount :: Lens' ScalingParameters (Maybe Natural) spDesiredReplicationCount = lens _spDesiredReplicationCount (\ s a -> s{_spDesiredReplicationCount = a}) . mapping _Nat; --- | The number of partitions you want to preconfigure for your domain. Only--- valid when you select 'm2.2xlarge' as the desired instance type.+-- | The number of partitions you want to preconfigure for your domain. Only valid when you select 'm2.2xlarge' as the desired instance type. spDesiredPartitionCount :: Lens' ScalingParameters (Maybe Natural) spDesiredPartitionCount = lens _spDesiredPartitionCount (\ s a -> s{_spDesiredPartitionCount = a}) . mapping _Nat; @@ -1866,10 +1759,7 @@ instance NFData ServiceEndpoint --- | Configuration information for a search suggester. Each suggester has a--- unique name and specifies the text field you want to use for--- suggestions. The following options can be configured for a suggester:--- 'FuzzyMatching', 'SortExpression'.+-- | Configuration information for a search suggester. Each suggester has a unique name and specifies the text field you want to use for suggestions. The following options can be configured for a suggester: 'FuzzyMatching', 'SortExpression'. -- -- /See:/ 'suggester' smart constructor. data Suggester = Suggester'@@ -1961,10 +1851,7 @@ instance NFData SuggesterStatus --- | Options for a field that contains an array of text strings. Present if--- 'IndexFieldType' specifies the field is of type 'text-array'. A--- 'text-array' field is always searchable. All options are enabled by--- default.+-- | Options for a field that contains an array of text strings. Present if 'IndexFieldType' specifies the field is of type 'text-array'. A 'text-array' field is always searchable. All options are enabled by default. -- -- /See:/ 'textArrayOptions' smart constructor. data TextArrayOptions = TextArrayOptions'@@ -2015,8 +1902,7 @@ taoHighlightEnabled :: Lens' TextArrayOptions (Maybe Bool) taoHighlightEnabled = lens _taoHighlightEnabled (\ s a -> s{_taoHighlightEnabled = a}); --- | A value to use for the field if the field isn\'t specified for a--- document.+-- | A value to use for the field if the field isn\'t specified for a document. taoDefaultValue :: Lens' TextArrayOptions (Maybe Text) taoDefaultValue = lens _taoDefaultValue (\ s a -> s{_taoDefaultValue = a}); @@ -2041,9 +1927,7 @@ "HighlightEnabled" =: _taoHighlightEnabled, "DefaultValue" =: _taoDefaultValue] --- | Options for text field. Present if 'IndexFieldType' specifies the field--- is of type 'text'. A 'text' field is always searchable. All options are--- enabled by default.+-- | Options for text field. Present if 'IndexFieldType' specifies the field is of type 'text'. A 'text' field is always searchable. All options are enabled by default. -- -- /See:/ 'textOptions' smart constructor. data TextOptions = TextOptions'@@ -2102,8 +1986,7 @@ toSortEnabled :: Lens' TextOptions (Maybe Bool) toSortEnabled = lens _toSortEnabled (\ s a -> s{_toSortEnabled = a}); --- | A value to use for the field if the field isn\'t specified for a--- document.+-- | A value to use for the field if the field isn\'t specified for a document. toDefaultValue :: Lens' TextOptions (Maybe Text) toDefaultValue = lens _toDefaultValue (\ s a -> s{_toDefaultValue = a});
gen/Network/AWS/CloudSearch/Types/Sum.hs view
@@ -51,8 +51,7 @@ instance FromXML AlgorithmicStemming where parseXML = parseXMLText "AlgorithmicStemming" --- | An <http://tools.ietf.org/html/rfc4646 IETF RFC 4646> language code or--- 'mul' for multiple languages.+-- | An <http://tools.ietf.org/html/rfc4646 IETF RFC 4646> language code or 'mul' for multiple languages. data AnalysisSchemeLanguage = AR | BG@@ -178,10 +177,7 @@ instance FromXML AnalysisSchemeLanguage where parseXML = parseXMLText "AnalysisSchemeLanguage" --- | The type of field. The valid options for a field depend on the field--- type. For more information about the supported field types, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-index-fields.html Configuring Index Fields>--- in the /Amazon CloudSearch Developer Guide/.+-- | The type of field. The valid options for a field depend on the field type. For more information about the supported field types, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-index-fields.html Configuring Index Fields> in the /Amazon CloudSearch Developer Guide/. data IndexFieldType = Date | DateArray@@ -237,16 +233,10 @@ -- | The state of processing a change to an option. One of: ----- - RequiresIndexDocuments: The option\'s latest value will not be--- deployed until < IndexDocuments> has been called and indexing is--- complete.--- - Processing: The option\'s latest value is in the process of being--- activated.+-- - RequiresIndexDocuments: The option\'s latest value will not be deployed until < IndexDocuments> has been called and indexing is complete.+-- - Processing: The option\'s latest value is in the process of being activated. -- - Active: The option\'s latest value is fully deployed.--- - FailedToValidate: The option value is not compatible with the--- domain\'s data and cannot be used to index the data. You must either--- modify the option value or update or remove the incompatible--- documents.+-- - FailedToValidate: The option value is not compatible with the domain\'s data and cannot be used to index the data. You must either modify the option value or update or remove the incompatible documents. data OptionState = Active | FailedToValidate@@ -279,8 +269,7 @@ instance FromXML OptionState where parseXML = parseXMLText "OptionState" --- | The instance type (such as 'search.m1.small') on which an index--- partition is hosted.+-- | The instance type (such as 'search.m1.small') on which an index partition is hosted. data PartitionInstanceType = Search_M1_Large | Search_M1_Small
gen/Network/AWS/CloudSearch/UpdateAvailabilityOptions.hs view
@@ -18,13 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Configures the availability options for a domain. Enabling the Multi-AZ--- option expands an Amazon CloudSearch domain to an additional--- Availability Zone in the same Region to increase fault tolerance in the--- event of a service disruption. Changes to the Multi-AZ option can take--- about half an hour to become active. For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-availability-options.html Configuring Availability Options>--- in the /Amazon CloudSearch Developer Guide/.+-- Configures the availability options for a domain. Enabling the Multi-AZ option expands an Amazon CloudSearch domain to an additional Availability Zone in the same Region to increase fault tolerance in the event of a service disruption. Changes to the Multi-AZ option can take about half an hour to become active. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-availability-options.html Configuring Availability Options> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.UpdateAvailabilityOptions ( -- * Creating a Request@@ -49,9 +43,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'UpdateAvailabilityOptions'--- operation. Specifies the name of the domain you want to update and the--- Multi-AZ availability option.+-- | Container for the parameters to the 'UpdateAvailabilityOptions' operation. Specifies the name of the domain you want to update and the Multi-AZ availability option. -- -- /See:/ 'updateAvailabilityOptions' smart constructor. data UpdateAvailabilityOptions = UpdateAvailabilityOptions'@@ -80,10 +72,7 @@ uaoDomainName :: Lens' UpdateAvailabilityOptions Text uaoDomainName = lens _uaoDomainName (\ s a -> s{_uaoDomainName = a}); --- | You expand an existing search domain to a second Availability Zone by--- setting the Multi-AZ option to true. Similarly, you can turn off the--- Multi-AZ option to downgrade the domain to a single Availability Zone by--- setting the Multi-AZ option to 'false'.+-- | You expand an existing search domain to a second Availability Zone by setting the Multi-AZ option to true. Similarly, you can turn off the Multi-AZ option to downgrade the domain to a single Availability Zone by setting the Multi-AZ option to 'false'. uaoMultiAZ :: Lens' UpdateAvailabilityOptions Bool uaoMultiAZ = lens _uaoMultiAZ (\ s a -> s{_uaoMultiAZ = a}); @@ -117,8 +106,7 @@ "DomainName" =: _uaoDomainName, "MultiAZ" =: _uaoMultiAZ] --- | The result of a 'UpdateAvailabilityOptions' request. Contains the status--- of the domain\'s availability options.+-- | The result of a 'UpdateAvailabilityOptions' request. Contains the status of the domain\'s availability options. -- -- /See:/ 'updateAvailabilityOptionsResponse' smart constructor. data UpdateAvailabilityOptionsResponse = UpdateAvailabilityOptionsResponse'@@ -142,8 +130,7 @@ , _uaorsResponseStatus = pResponseStatus_ } --- | The newly-configured availability options. Indicates whether Multi-AZ is--- enabled for the domain.+-- | The newly-configured availability options. Indicates whether Multi-AZ is enabled for the domain. uaorsAvailabilityOptions :: Lens' UpdateAvailabilityOptionsResponse (Maybe AvailabilityOptionsStatus) uaorsAvailabilityOptions = lens _uaorsAvailabilityOptions (\ s a -> s{_uaorsAvailabilityOptions = a});
gen/Network/AWS/CloudSearch/UpdateScalingParameters.hs view
@@ -18,15 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Configures scaling parameters for a domain. A domain\'s scaling--- parameters specify the desired search instance type and replication--- count. Amazon CloudSearch will still automatically scale your domain--- based on the volume of data and traffic, but not below the desired--- instance type and replication count. If the Multi-AZ option is enabled,--- these values control the resources used per Availability Zone. For more--- information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-scaling-options.html Configuring Scaling Options>--- in the /Amazon CloudSearch Developer Guide/.+-- Configures scaling parameters for a domain. A domain\'s scaling parameters specify the desired search instance type and replication count. Amazon CloudSearch will still automatically scale your domain based on the volume of data and traffic, but not below the desired instance type and replication count. If the Multi-AZ option is enabled, these values control the resources used per Availability Zone. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-scaling-options.html Configuring Scaling Options> in the /Amazon CloudSearch Developer Guide/. module Network.AWS.CloudSearch.UpdateScalingParameters ( -- * Creating a Request@@ -51,9 +43,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'UpdateScalingParameters' operation.--- Specifies the name of the domain you want to update and the scaling--- parameters you want to configure.+-- | Container for the parameters to the 'UpdateScalingParameters' operation. Specifies the name of the domain you want to update and the scaling parameters you want to configure. -- -- /See:/ 'updateScalingParameters' smart constructor. data UpdateScalingParameters = UpdateScalingParameters'@@ -115,8 +105,7 @@ "DomainName" =: _uspDomainName, "ScalingParameters" =: _uspScalingParameters] --- | The result of a 'UpdateScalingParameters' request. Contains the status--- of the newly-configured scaling parameters.+-- | The result of a 'UpdateScalingParameters' request. Contains the status of the newly-configured scaling parameters. -- -- /See:/ 'updateScalingParametersResponse' smart constructor. data UpdateScalingParametersResponse = UpdateScalingParametersResponse'
gen/Network/AWS/CloudSearch/UpdateServiceAccessPolicies.hs view
@@ -18,9 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Configures the access rules that control access to the domain\'s--- document and search endpoints. For more information, see--- <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-access.html Configuring Access for an Amazon CloudSearch Domain>.+-- Configures the access rules that control access to the domain\'s document and search endpoints. For more information, see <http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-access.html Configuring Access for an Amazon CloudSearch Domain>. module Network.AWS.CloudSearch.UpdateServiceAccessPolicies ( -- * Creating a Request@@ -45,9 +43,7 @@ import Network.AWS.Request import Network.AWS.Response --- | Container for the parameters to the 'UpdateServiceAccessPolicies'--- operation. Specifies the name of the domain you want to update and the--- access rules you want to configure.+-- | Container for the parameters to the 'UpdateServiceAccessPolicies' operation. Specifies the name of the domain you want to update and the access rules you want to configure. -- -- /See:/ 'updateServiceAccessPolicies' smart constructor. data UpdateServiceAccessPolicies = UpdateServiceAccessPolicies'@@ -76,8 +72,7 @@ usapDomainName :: Lens' UpdateServiceAccessPolicies Text usapDomainName = lens _usapDomainName (\ s a -> s{_usapDomainName = a}); --- | The access rules you want to configure. These rules replace any existing--- rules.+-- | The access rules you want to configure. These rules replace any existing rules. usapAccessPolicies :: Lens' UpdateServiceAccessPolicies Text usapAccessPolicies = lens _usapAccessPolicies (\ s a -> s{_usapAccessPolicies = a}); @@ -111,8 +106,7 @@ "DomainName" =: _usapDomainName, "AccessPolicies" =: _usapAccessPolicies] --- | The result of an 'UpdateServiceAccessPolicies' request. Contains the new--- access policies.+-- | The result of an 'UpdateServiceAccessPolicies' request. Contains the new access policies. -- -- /See:/ 'updateServiceAccessPoliciesResponse' smart constructor. data UpdateServiceAccessPoliciesResponse = UpdateServiceAccessPoliciesResponse'
test/Test/AWS/Gen/CloudSearch.hs view
@@ -28,151 +28,151 @@ -- fixtures :: TestTree -- fixtures = -- [ testGroup "request"--- [ testDescribeAvailabilityOptions $+-- [ requestDescribeAvailabilityOptions $ -- describeAvailabilityOptions ----- , testDescribeExpressions $+-- , requestDescribeExpressions $ -- describeExpressions ----- , testDefineExpression $+-- , requestDefineExpression $ -- defineExpression ----- , testDescribeScalingParameters $+-- , requestDescribeScalingParameters $ -- describeScalingParameters ----- , testDescribeServiceAccessPolicies $+-- , requestDescribeServiceAccessPolicies $ -- describeServiceAccessPolicies ----- , testDescribeSuggesters $+-- , requestDescribeSuggesters $ -- describeSuggesters ----- , testUpdateAvailabilityOptions $+-- , requestUpdateAvailabilityOptions $ -- updateAvailabilityOptions ----- , testDeleteExpression $+-- , requestDeleteExpression $ -- deleteExpression ----- , testListDomainNames $+-- , requestListDomainNames $ -- listDomainNames ----- , testDefineSuggester $+-- , requestDefineSuggester $ -- defineSuggester ----- , testDescribeDomains $+-- , requestDescribeDomains $ -- describeDomains ----- , testDeleteAnalysisScheme $+-- , requestDeleteAnalysisScheme $ -- deleteAnalysisScheme ----- , testDescribeAnalysisSchemes $+-- , requestDescribeAnalysisSchemes $ -- describeAnalysisSchemes ----- , testCreateDomain $+-- , requestCreateDomain $ -- createDomain ----- , testDescribeIndexFields $+-- , requestDescribeIndexFields $ -- describeIndexFields ----- , testDeleteSuggester $+-- , requestDeleteSuggester $ -- deleteSuggester ----- , testDefineAnalysisScheme $+-- , requestDefineAnalysisScheme $ -- defineAnalysisScheme ----- , testIndexDocuments $+-- , requestIndexDocuments $ -- indexDocuments ----- , testDeleteIndexField $+-- , requestDeleteIndexField $ -- deleteIndexField ----- , testUpdateServiceAccessPolicies $+-- , requestUpdateServiceAccessPolicies $ -- updateServiceAccessPolicies ----- , testUpdateScalingParameters $+-- , requestUpdateScalingParameters $ -- updateScalingParameters ----- , testBuildSuggesters $+-- , requestBuildSuggesters $ -- buildSuggesters ----- , testDeleteDomain $+-- , requestDeleteDomain $ -- deleteDomain ----- , testDefineIndexField $+-- , requestDefineIndexField $ -- defineIndexField -- -- ] -- , testGroup "response"--- [ testDescribeAvailabilityOptionsResponse $+-- [ responseDescribeAvailabilityOptions $ -- describeAvailabilityOptionsResponse ----- , testDescribeExpressionsResponse $+-- , responseDescribeExpressions $ -- describeExpressionsResponse ----- , testDefineExpressionResponse $+-- , responseDefineExpression $ -- defineExpressionResponse ----- , testDescribeScalingParametersResponse $+-- , responseDescribeScalingParameters $ -- describeScalingParametersResponse ----- , testDescribeServiceAccessPoliciesResponse $+-- , responseDescribeServiceAccessPolicies $ -- describeServiceAccessPoliciesResponse ----- , testDescribeSuggestersResponse $+-- , responseDescribeSuggesters $ -- describeSuggestersResponse ----- , testUpdateAvailabilityOptionsResponse $+-- , responseUpdateAvailabilityOptions $ -- updateAvailabilityOptionsResponse ----- , testDeleteExpressionResponse $+-- , responseDeleteExpression $ -- deleteExpressionResponse ----- , testListDomainNamesResponse $+-- , responseListDomainNames $ -- listDomainNamesResponse ----- , testDefineSuggesterResponse $+-- , responseDefineSuggester $ -- defineSuggesterResponse ----- , testDescribeDomainsResponse $+-- , responseDescribeDomains $ -- describeDomainsResponse ----- , testDeleteAnalysisSchemeResponse $+-- , responseDeleteAnalysisScheme $ -- deleteAnalysisSchemeResponse ----- , testDescribeAnalysisSchemesResponse $+-- , responseDescribeAnalysisSchemes $ -- describeAnalysisSchemesResponse ----- , testCreateDomainResponse $+-- , responseCreateDomain $ -- createDomainResponse ----- , testDescribeIndexFieldsResponse $+-- , responseDescribeIndexFields $ -- describeIndexFieldsResponse ----- , testDeleteSuggesterResponse $+-- , responseDeleteSuggester $ -- deleteSuggesterResponse ----- , testDefineAnalysisSchemeResponse $+-- , responseDefineAnalysisScheme $ -- defineAnalysisSchemeResponse ----- , testIndexDocumentsResponse $+-- , responseIndexDocuments $ -- indexDocumentsResponse ----- , testDeleteIndexFieldResponse $+-- , responseDeleteIndexField $ -- deleteIndexFieldResponse ----- , testUpdateServiceAccessPoliciesResponse $+-- , responseUpdateServiceAccessPolicies $ -- updateServiceAccessPoliciesResponse ----- , testUpdateScalingParametersResponse $+-- , responseUpdateScalingParameters $ -- updateScalingParametersResponse ----- , testBuildSuggestersResponse $+-- , responseBuildSuggesters $ -- buildSuggestersResponse ----- , testDeleteDomainResponse $+-- , responseDeleteDomain $ -- deleteDomainResponse ----- , testDefineIndexFieldResponse $+-- , responseDefineIndexField $ -- defineIndexFieldResponse -- -- ]@@ -180,291 +180,291 @@ -- Requests -testDescribeAvailabilityOptions :: DescribeAvailabilityOptions -> TestTree-testDescribeAvailabilityOptions = req+requestDescribeAvailabilityOptions :: DescribeAvailabilityOptions -> TestTree+requestDescribeAvailabilityOptions = req "DescribeAvailabilityOptions" "fixture/DescribeAvailabilityOptions.yaml" -testDescribeExpressions :: DescribeExpressions -> TestTree-testDescribeExpressions = req+requestDescribeExpressions :: DescribeExpressions -> TestTree+requestDescribeExpressions = req "DescribeExpressions" "fixture/DescribeExpressions.yaml" -testDefineExpression :: DefineExpression -> TestTree-testDefineExpression = req+requestDefineExpression :: DefineExpression -> TestTree+requestDefineExpression = req "DefineExpression" "fixture/DefineExpression.yaml" -testDescribeScalingParameters :: DescribeScalingParameters -> TestTree-testDescribeScalingParameters = req+requestDescribeScalingParameters :: DescribeScalingParameters -> TestTree+requestDescribeScalingParameters = req "DescribeScalingParameters" "fixture/DescribeScalingParameters.yaml" -testDescribeServiceAccessPolicies :: DescribeServiceAccessPolicies -> TestTree-testDescribeServiceAccessPolicies = req+requestDescribeServiceAccessPolicies :: DescribeServiceAccessPolicies -> TestTree+requestDescribeServiceAccessPolicies = req "DescribeServiceAccessPolicies" "fixture/DescribeServiceAccessPolicies.yaml" -testDescribeSuggesters :: DescribeSuggesters -> TestTree-testDescribeSuggesters = req+requestDescribeSuggesters :: DescribeSuggesters -> TestTree+requestDescribeSuggesters = req "DescribeSuggesters" "fixture/DescribeSuggesters.yaml" -testUpdateAvailabilityOptions :: UpdateAvailabilityOptions -> TestTree-testUpdateAvailabilityOptions = req+requestUpdateAvailabilityOptions :: UpdateAvailabilityOptions -> TestTree+requestUpdateAvailabilityOptions = req "UpdateAvailabilityOptions" "fixture/UpdateAvailabilityOptions.yaml" -testDeleteExpression :: DeleteExpression -> TestTree-testDeleteExpression = req+requestDeleteExpression :: DeleteExpression -> TestTree+requestDeleteExpression = req "DeleteExpression" "fixture/DeleteExpression.yaml" -testListDomainNames :: ListDomainNames -> TestTree-testListDomainNames = req+requestListDomainNames :: ListDomainNames -> TestTree+requestListDomainNames = req "ListDomainNames" "fixture/ListDomainNames.yaml" -testDefineSuggester :: DefineSuggester -> TestTree-testDefineSuggester = req+requestDefineSuggester :: DefineSuggester -> TestTree+requestDefineSuggester = req "DefineSuggester" "fixture/DefineSuggester.yaml" -testDescribeDomains :: DescribeDomains -> TestTree-testDescribeDomains = req+requestDescribeDomains :: DescribeDomains -> TestTree+requestDescribeDomains = req "DescribeDomains" "fixture/DescribeDomains.yaml" -testDeleteAnalysisScheme :: DeleteAnalysisScheme -> TestTree-testDeleteAnalysisScheme = req+requestDeleteAnalysisScheme :: DeleteAnalysisScheme -> TestTree+requestDeleteAnalysisScheme = req "DeleteAnalysisScheme" "fixture/DeleteAnalysisScheme.yaml" -testDescribeAnalysisSchemes :: DescribeAnalysisSchemes -> TestTree-testDescribeAnalysisSchemes = req+requestDescribeAnalysisSchemes :: DescribeAnalysisSchemes -> TestTree+requestDescribeAnalysisSchemes = req "DescribeAnalysisSchemes" "fixture/DescribeAnalysisSchemes.yaml" -testCreateDomain :: CreateDomain -> TestTree-testCreateDomain = req+requestCreateDomain :: CreateDomain -> TestTree+requestCreateDomain = req "CreateDomain" "fixture/CreateDomain.yaml" -testDescribeIndexFields :: DescribeIndexFields -> TestTree-testDescribeIndexFields = req+requestDescribeIndexFields :: DescribeIndexFields -> TestTree+requestDescribeIndexFields = req "DescribeIndexFields" "fixture/DescribeIndexFields.yaml" -testDeleteSuggester :: DeleteSuggester -> TestTree-testDeleteSuggester = req+requestDeleteSuggester :: DeleteSuggester -> TestTree+requestDeleteSuggester = req "DeleteSuggester" "fixture/DeleteSuggester.yaml" -testDefineAnalysisScheme :: DefineAnalysisScheme -> TestTree-testDefineAnalysisScheme = req+requestDefineAnalysisScheme :: DefineAnalysisScheme -> TestTree+requestDefineAnalysisScheme = req "DefineAnalysisScheme" "fixture/DefineAnalysisScheme.yaml" -testIndexDocuments :: IndexDocuments -> TestTree-testIndexDocuments = req+requestIndexDocuments :: IndexDocuments -> TestTree+requestIndexDocuments = req "IndexDocuments" "fixture/IndexDocuments.yaml" -testDeleteIndexField :: DeleteIndexField -> TestTree-testDeleteIndexField = req+requestDeleteIndexField :: DeleteIndexField -> TestTree+requestDeleteIndexField = req "DeleteIndexField" "fixture/DeleteIndexField.yaml" -testUpdateServiceAccessPolicies :: UpdateServiceAccessPolicies -> TestTree-testUpdateServiceAccessPolicies = req+requestUpdateServiceAccessPolicies :: UpdateServiceAccessPolicies -> TestTree+requestUpdateServiceAccessPolicies = req "UpdateServiceAccessPolicies" "fixture/UpdateServiceAccessPolicies.yaml" -testUpdateScalingParameters :: UpdateScalingParameters -> TestTree-testUpdateScalingParameters = req+requestUpdateScalingParameters :: UpdateScalingParameters -> TestTree+requestUpdateScalingParameters = req "UpdateScalingParameters" "fixture/UpdateScalingParameters.yaml" -testBuildSuggesters :: BuildSuggesters -> TestTree-testBuildSuggesters = req+requestBuildSuggesters :: BuildSuggesters -> TestTree+requestBuildSuggesters = req "BuildSuggesters" "fixture/BuildSuggesters.yaml" -testDeleteDomain :: DeleteDomain -> TestTree-testDeleteDomain = req+requestDeleteDomain :: DeleteDomain -> TestTree+requestDeleteDomain = req "DeleteDomain" "fixture/DeleteDomain.yaml" -testDefineIndexField :: DefineIndexField -> TestTree-testDefineIndexField = req+requestDefineIndexField :: DefineIndexField -> TestTree+requestDefineIndexField = req "DefineIndexField" "fixture/DefineIndexField.yaml" -- Responses -testDescribeAvailabilityOptionsResponse :: DescribeAvailabilityOptionsResponse -> TestTree-testDescribeAvailabilityOptionsResponse = res+responseDescribeAvailabilityOptions :: DescribeAvailabilityOptionsResponse -> TestTree+responseDescribeAvailabilityOptions = res "DescribeAvailabilityOptionsResponse" "fixture/DescribeAvailabilityOptionsResponse.proto" cloudSearch (Proxy :: Proxy DescribeAvailabilityOptions) -testDescribeExpressionsResponse :: DescribeExpressionsResponse -> TestTree-testDescribeExpressionsResponse = res+responseDescribeExpressions :: DescribeExpressionsResponse -> TestTree+responseDescribeExpressions = res "DescribeExpressionsResponse" "fixture/DescribeExpressionsResponse.proto" cloudSearch (Proxy :: Proxy DescribeExpressions) -testDefineExpressionResponse :: DefineExpressionResponse -> TestTree-testDefineExpressionResponse = res+responseDefineExpression :: DefineExpressionResponse -> TestTree+responseDefineExpression = res "DefineExpressionResponse" "fixture/DefineExpressionResponse.proto" cloudSearch (Proxy :: Proxy DefineExpression) -testDescribeScalingParametersResponse :: DescribeScalingParametersResponse -> TestTree-testDescribeScalingParametersResponse = res+responseDescribeScalingParameters :: DescribeScalingParametersResponse -> TestTree+responseDescribeScalingParameters = res "DescribeScalingParametersResponse" "fixture/DescribeScalingParametersResponse.proto" cloudSearch (Proxy :: Proxy DescribeScalingParameters) -testDescribeServiceAccessPoliciesResponse :: DescribeServiceAccessPoliciesResponse -> TestTree-testDescribeServiceAccessPoliciesResponse = res+responseDescribeServiceAccessPolicies :: DescribeServiceAccessPoliciesResponse -> TestTree+responseDescribeServiceAccessPolicies = res "DescribeServiceAccessPoliciesResponse" "fixture/DescribeServiceAccessPoliciesResponse.proto" cloudSearch (Proxy :: Proxy DescribeServiceAccessPolicies) -testDescribeSuggestersResponse :: DescribeSuggestersResponse -> TestTree-testDescribeSuggestersResponse = res+responseDescribeSuggesters :: DescribeSuggestersResponse -> TestTree+responseDescribeSuggesters = res "DescribeSuggestersResponse" "fixture/DescribeSuggestersResponse.proto" cloudSearch (Proxy :: Proxy DescribeSuggesters) -testUpdateAvailabilityOptionsResponse :: UpdateAvailabilityOptionsResponse -> TestTree-testUpdateAvailabilityOptionsResponse = res+responseUpdateAvailabilityOptions :: UpdateAvailabilityOptionsResponse -> TestTree+responseUpdateAvailabilityOptions = res "UpdateAvailabilityOptionsResponse" "fixture/UpdateAvailabilityOptionsResponse.proto" cloudSearch (Proxy :: Proxy UpdateAvailabilityOptions) -testDeleteExpressionResponse :: DeleteExpressionResponse -> TestTree-testDeleteExpressionResponse = res+responseDeleteExpression :: DeleteExpressionResponse -> TestTree+responseDeleteExpression = res "DeleteExpressionResponse" "fixture/DeleteExpressionResponse.proto" cloudSearch (Proxy :: Proxy DeleteExpression) -testListDomainNamesResponse :: ListDomainNamesResponse -> TestTree-testListDomainNamesResponse = res+responseListDomainNames :: ListDomainNamesResponse -> TestTree+responseListDomainNames = res "ListDomainNamesResponse" "fixture/ListDomainNamesResponse.proto" cloudSearch (Proxy :: Proxy ListDomainNames) -testDefineSuggesterResponse :: DefineSuggesterResponse -> TestTree-testDefineSuggesterResponse = res+responseDefineSuggester :: DefineSuggesterResponse -> TestTree+responseDefineSuggester = res "DefineSuggesterResponse" "fixture/DefineSuggesterResponse.proto" cloudSearch (Proxy :: Proxy DefineSuggester) -testDescribeDomainsResponse :: DescribeDomainsResponse -> TestTree-testDescribeDomainsResponse = res+responseDescribeDomains :: DescribeDomainsResponse -> TestTree+responseDescribeDomains = res "DescribeDomainsResponse" "fixture/DescribeDomainsResponse.proto" cloudSearch (Proxy :: Proxy DescribeDomains) -testDeleteAnalysisSchemeResponse :: DeleteAnalysisSchemeResponse -> TestTree-testDeleteAnalysisSchemeResponse = res+responseDeleteAnalysisScheme :: DeleteAnalysisSchemeResponse -> TestTree+responseDeleteAnalysisScheme = res "DeleteAnalysisSchemeResponse" "fixture/DeleteAnalysisSchemeResponse.proto" cloudSearch (Proxy :: Proxy DeleteAnalysisScheme) -testDescribeAnalysisSchemesResponse :: DescribeAnalysisSchemesResponse -> TestTree-testDescribeAnalysisSchemesResponse = res+responseDescribeAnalysisSchemes :: DescribeAnalysisSchemesResponse -> TestTree+responseDescribeAnalysisSchemes = res "DescribeAnalysisSchemesResponse" "fixture/DescribeAnalysisSchemesResponse.proto" cloudSearch (Proxy :: Proxy DescribeAnalysisSchemes) -testCreateDomainResponse :: CreateDomainResponse -> TestTree-testCreateDomainResponse = res+responseCreateDomain :: CreateDomainResponse -> TestTree+responseCreateDomain = res "CreateDomainResponse" "fixture/CreateDomainResponse.proto" cloudSearch (Proxy :: Proxy CreateDomain) -testDescribeIndexFieldsResponse :: DescribeIndexFieldsResponse -> TestTree-testDescribeIndexFieldsResponse = res+responseDescribeIndexFields :: DescribeIndexFieldsResponse -> TestTree+responseDescribeIndexFields = res "DescribeIndexFieldsResponse" "fixture/DescribeIndexFieldsResponse.proto" cloudSearch (Proxy :: Proxy DescribeIndexFields) -testDeleteSuggesterResponse :: DeleteSuggesterResponse -> TestTree-testDeleteSuggesterResponse = res+responseDeleteSuggester :: DeleteSuggesterResponse -> TestTree+responseDeleteSuggester = res "DeleteSuggesterResponse" "fixture/DeleteSuggesterResponse.proto" cloudSearch (Proxy :: Proxy DeleteSuggester) -testDefineAnalysisSchemeResponse :: DefineAnalysisSchemeResponse -> TestTree-testDefineAnalysisSchemeResponse = res+responseDefineAnalysisScheme :: DefineAnalysisSchemeResponse -> TestTree+responseDefineAnalysisScheme = res "DefineAnalysisSchemeResponse" "fixture/DefineAnalysisSchemeResponse.proto" cloudSearch (Proxy :: Proxy DefineAnalysisScheme) -testIndexDocumentsResponse :: IndexDocumentsResponse -> TestTree-testIndexDocumentsResponse = res+responseIndexDocuments :: IndexDocumentsResponse -> TestTree+responseIndexDocuments = res "IndexDocumentsResponse" "fixture/IndexDocumentsResponse.proto" cloudSearch (Proxy :: Proxy IndexDocuments) -testDeleteIndexFieldResponse :: DeleteIndexFieldResponse -> TestTree-testDeleteIndexFieldResponse = res+responseDeleteIndexField :: DeleteIndexFieldResponse -> TestTree+responseDeleteIndexField = res "DeleteIndexFieldResponse" "fixture/DeleteIndexFieldResponse.proto" cloudSearch (Proxy :: Proxy DeleteIndexField) -testUpdateServiceAccessPoliciesResponse :: UpdateServiceAccessPoliciesResponse -> TestTree-testUpdateServiceAccessPoliciesResponse = res+responseUpdateServiceAccessPolicies :: UpdateServiceAccessPoliciesResponse -> TestTree+responseUpdateServiceAccessPolicies = res "UpdateServiceAccessPoliciesResponse" "fixture/UpdateServiceAccessPoliciesResponse.proto" cloudSearch (Proxy :: Proxy UpdateServiceAccessPolicies) -testUpdateScalingParametersResponse :: UpdateScalingParametersResponse -> TestTree-testUpdateScalingParametersResponse = res+responseUpdateScalingParameters :: UpdateScalingParametersResponse -> TestTree+responseUpdateScalingParameters = res "UpdateScalingParametersResponse" "fixture/UpdateScalingParametersResponse.proto" cloudSearch (Proxy :: Proxy UpdateScalingParameters) -testBuildSuggestersResponse :: BuildSuggestersResponse -> TestTree-testBuildSuggestersResponse = res+responseBuildSuggesters :: BuildSuggestersResponse -> TestTree+responseBuildSuggesters = res "BuildSuggestersResponse" "fixture/BuildSuggestersResponse.proto" cloudSearch (Proxy :: Proxy BuildSuggesters) -testDeleteDomainResponse :: DeleteDomainResponse -> TestTree-testDeleteDomainResponse = res+responseDeleteDomain :: DeleteDomainResponse -> TestTree+responseDeleteDomain = res "DeleteDomainResponse" "fixture/DeleteDomainResponse.proto" cloudSearch (Proxy :: Proxy DeleteDomain) -testDefineIndexFieldResponse :: DefineIndexFieldResponse -> TestTree-testDefineIndexFieldResponse = res+responseDefineIndexField :: DefineIndexFieldResponse -> TestTree+responseDefineIndexField = res "DefineIndexFieldResponse" "fixture/DefineIndexFieldResponse.proto" cloudSearch