aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,865 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "BuildSuggesters": "<p>Indexes the search suggestions. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-suggestions.html#configuring-suggesters\">Configuring Suggesters</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
5
- "CreateDomain": "<p>Creates a new search domain. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/creating-domains.html\" target=\"_blank\">Creating a Search Domain</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
6
- "DefineAnalysisScheme": "<p>Configures an analysis scheme that can be applied to a <code>text</code> or <code>text-array</code> field to define language-specific text processing options. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-analysis-schemes.html\" target=\"_blank\">Configuring Analysis Schemes</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
7
- "DefineExpression": "<p>Configures an <code><a>Expression</a></code> 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 <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-expressions.html\" target=\"_blank\">Configuring Expressions</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
8
- "DefineIndexField": "<p>Configures an <code><a>IndexField</a></code> 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 <code><a>IndexFieldType</a></code>. If the field exists, the new configuration replaces the old one. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-index-fields.html\" target=\"_blank\">Configuring Index Fields</a> in the <i>Amazon CloudSearch Developer Guide</i>. </p>",
9
- "DefineSuggester": "<p>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 <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-suggestions.html\" target=\"_blank\">Getting Search Suggestions</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
10
- "DeleteAnalysisScheme": "<p>Deletes an analysis scheme. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-analysis-schemes.html\" target=\"_blank\">Configuring Analysis Schemes</a> in the <i>Amazon CloudSearch Developer Guide</i>. </p>",
11
- "DeleteDomain": "<p>Permanently deletes a search domain and all of its data. Once a domain has been deleted, it cannot be recovered. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/deleting-domains.html\" target=\"_blank\">Deleting a Search Domain</a> in the <i>Amazon CloudSearch Developer Guide</i>. </p>",
12
- "DeleteExpression": "<p>Removes an <code><a>Expression</a></code> from the search domain. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-expressions.html\" target=\"_blank\">Configuring Expressions</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
13
- "DeleteIndexField": "<p>Removes an <code><a>IndexField</a></code> from the search domain. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-index-fields.html\" target=\"_blank\">Configuring Index Fields</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
14
- "DeleteSuggester": "<p>Deletes a suggester. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-suggestions.html\" target=\"_blank\">Getting Search Suggestions</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
15
- "DescribeAnalysisSchemes": "<p>Gets the analysis schemes configured for a domain. An analysis scheme defines language-specific text processing options for a <code>text</code> 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 <code>Deployed</code> option to <code>true</code> to show the active configuration and exclude pending changes. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-analysis-schemes.html\" target=\"_blank\">Configuring Analysis Schemes</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
16
- "DescribeAvailabilityOptions": "<p>Gets the availability options configured for a domain. By default, shows the configuration with any pending changes. Set the <code>Deployed</code> option to <code>true</code> to show the active configuration and exclude pending changes. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-availability-options.html\" target=\"_blank\">Configuring Availability Options</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
17
- "DescribeDomains": "<p>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 <code>matchall</code> request to your domain's search endpoint: <code>q=matchall&amp;amp;q.parser=structured&amp;amp;size=0</code>. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-domain-info.html\" target=\"_blank\">Getting Information about a Search Domain</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
18
- "DescribeExpressions": "<p>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 <code>Deployed</code> option to <code>true</code> to show the active configuration and exclude pending changes. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-expressions.html\" target=\"_blank\">Configuring Expressions</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
19
- "DescribeIndexFields": "<p>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 <code>Deployed</code> option to <code>true</code> to show the active configuration and exclude pending changes. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-domain-info.html\" target=\"_blank\">Getting Domain Information</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
20
- "DescribeScalingParameters": "<p>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 <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-scaling-options.html\" target=\"_blank\">Configuring Scaling Options</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
21
- "DescribeServiceAccessPolicies": "<p>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 <code>Deployed</code> option to <code>true</code> to show the active configuration and exclude pending changes. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-access.html\" target=\"_blank\">Configuring Access for a Search Domain</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
22
- "DescribeSuggesters": "<p>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 <code>Deployed</code> option to <code>true</code> to show the active configuration and exclude pending changes. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-suggestions.html\" target=\"_blank\">Getting Search Suggestions</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
23
- "IndexDocuments": "<p>Tells the search domain to start indexing its documents using the latest indexing options. This operation must be invoked to activate options whose <a>OptionStatus</a> is <code>RequiresIndexDocuments</code>.</p>",
24
- "ListDomainNames": "<p>Lists all search domains owned by an account.</p>",
25
- "UpdateAvailabilityOptions": "<p>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 <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-availability-options.html\" target=\"_blank\">Configuring Availability Options</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
26
- "UpdateScalingParameters": "<p>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 <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-scaling-options.html\" target=\"_blank\">Configuring Scaling Options</a> in the <i>Amazon CloudSearch Developer Guide</i>. </p>",
27
- "UpdateServiceAccessPolicies": "<p>Configures the access rules that control access to the domain's document and search endpoints. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-access.html\" target=\"_blank\"> Configuring Access for an Amazon CloudSearch Domain</a>.</p>"
28
- },
29
- "service": "<fullname>Amazon CloudSearch Configuration Service</fullname> <p>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.</p> <p>The endpoint for configuration service requests is region-specific: cloudsearch.<i>region</i>.amazonaws.com. For example, cloudsearch.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html#cloudsearch_region\" target=\"_blank\">Regions and Endpoints</a>.</p>",
30
- "shapes": {
31
- "APIVersion": {
32
- "base": "<p>The Amazon CloudSearch API version for a domain: 2011-02-01 or 2013-01-01.</p>",
33
- "refs": {
34
- "DomainNameMap$value": null
35
- }
36
- },
37
- "ARN": {
38
- "base": "<p>The Amazon Resource Name (ARN) of the search domain. See <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/index.html?Using_Identifiers.html\" target=\"_blank\">Identifiers for IAM Entities</a> in <i>Using AWS Identity and Access Management</i> for more information.</p>",
39
- "refs": {
40
- "DomainStatus$ARN": null
41
- }
42
- },
43
- "AccessPoliciesStatus": {
44
- "base": "<p>The configured access rules for the domain's document and search endpoints, and the current status of those rules.</p>",
45
- "refs": {
46
- "DescribeServiceAccessPoliciesResponse$AccessPolicies": "<p>The access rules configured for the domain specified in the request.</p>",
47
- "UpdateServiceAccessPoliciesResponse$AccessPolicies": "<p>The access rules configured for the domain.</p>"
48
- }
49
- },
50
- "AlgorithmicStemming": {
51
- "base": null,
52
- "refs": {
53
- "AnalysisOptions$AlgorithmicStemming": "<p>The level of algorithmic stemming to perform: <code>none</code>, <code>minimal</code>, <code>light</code>, or <code>full</code>. The available levels vary depending on the language. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/text-processing.html#text-processing-settings\" target=\"_blank\">Language Specific Text Processing Settings</a> in the <i>Amazon CloudSearch Developer Guide</i> </p>"
54
- }
55
- },
56
- "AnalysisOptions": {
57
- "base": "<p>Synonyms, stopwords, and stemming options for an analysis scheme. Includes tokenization dictionary for Japanese.</p>",
58
- "refs": {
59
- "AnalysisScheme$AnalysisOptions": null
60
- }
61
- },
62
- "AnalysisScheme": {
63
- "base": "<p>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: <code>Synonyms</code>, <code>Stopwords</code>, <code>StemmingDictionary</code>, <code>JapaneseTokenizationDictionary</code> and <code>AlgorithmicStemming</code>.</p>",
64
- "refs": {
65
- "AnalysisSchemeStatus$Options": null,
66
- "DefineAnalysisSchemeRequest$AnalysisScheme": null
67
- }
68
- },
69
- "AnalysisSchemeLanguage": {
70
- "base": "<p>An <a href=\"http://tools.ietf.org/html/rfc4646\" target=\"_blank\">IETF RFC 4646</a> language code or <code>mul</code> for multiple languages.</p>",
71
- "refs": {
72
- "AnalysisScheme$AnalysisSchemeLanguage": null
73
- }
74
- },
75
- "AnalysisSchemeStatus": {
76
- "base": "<p>The status and configuration of an <code>AnalysisScheme</code>.</p>",
77
- "refs": {
78
- "AnalysisSchemeStatusList$member": null,
79
- "DefineAnalysisSchemeResponse$AnalysisScheme": null,
80
- "DeleteAnalysisSchemeResponse$AnalysisScheme": "<p>The status of the analysis scheme being deleted.</p>"
81
- }
82
- },
83
- "AnalysisSchemeStatusList": {
84
- "base": "<p>A list of the analysis schemes configured for a domain.</p>",
85
- "refs": {
86
- "DescribeAnalysisSchemesResponse$AnalysisSchemes": "<p>The analysis scheme descriptions.</p>"
87
- }
88
- },
89
- "AvailabilityOptionsStatus": {
90
- "base": "<p>The status and configuration of the domain's availability options.</p>",
91
- "refs": {
92
- "DescribeAvailabilityOptionsResponse$AvailabilityOptions": "<p>The availability options configured for the domain. Indicates whether Multi-AZ is enabled for the domain. </p>",
93
- "UpdateAvailabilityOptionsResponse$AvailabilityOptions": "<p>The newly-configured availability options. Indicates whether Multi-AZ is enabled for the domain. </p>"
94
- }
95
- },
96
- "BaseException": {
97
- "base": "<p>An error occurred while processing the request.</p>",
98
- "refs": {
99
- }
100
- },
101
- "Boolean": {
102
- "base": null,
103
- "refs": {
104
- "DateArrayOptions$FacetEnabled": "<p>Whether facet information can be returned for the field.</p>",
105
- "DateArrayOptions$SearchEnabled": "<p>Whether the contents of the field are searchable.</p>",
106
- "DateArrayOptions$ReturnEnabled": "<p>Whether the contents of the field can be returned in the search results.</p>",
107
- "DateOptions$FacetEnabled": "<p>Whether facet information can be returned for the field.</p>",
108
- "DateOptions$SearchEnabled": "<p>Whether the contents of the field are searchable.</p>",
109
- "DateOptions$ReturnEnabled": "<p>Whether the contents of the field can be returned in the search results.</p>",
110
- "DateOptions$SortEnabled": "<p>Whether the field can be used to sort the search results.</p>",
111
- "DescribeAnalysisSchemesRequest$Deployed": "<p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p>",
112
- "DescribeAvailabilityOptionsRequest$Deployed": "<p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p>",
113
- "DescribeExpressionsRequest$Deployed": "<p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p>",
114
- "DescribeIndexFieldsRequest$Deployed": "<p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p>",
115
- "DescribeServiceAccessPoliciesRequest$Deployed": "<p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p>",
116
- "DescribeSuggestersRequest$Deployed": "<p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p>",
117
- "DomainStatus$Created": "<p>True if the search domain is created. It can take several minutes to initialize a domain when <a>CreateDomain</a> is called. Newly created search domains are returned from <a>DescribeDomains</a> with a false value for Created until domain creation is complete.</p>",
118
- "DomainStatus$Deleted": "<p>True if the search domain has been deleted. The system must clean up resources dedicated to the search domain when <a>DeleteDomain</a> is called. Newly deleted search domains are returned from <a>DescribeDomains</a> with a true value for IsDeleted for several minutes until resource cleanup is complete.</p>",
119
- "DomainStatus$RequiresIndexDocuments": "<p>True if <a>IndexDocuments</a> needs to be called to activate the current domain configuration.</p>",
120
- "DomainStatus$Processing": "<p>True if processing is being done to activate the current domain configuration.</p>",
121
- "DoubleArrayOptions$FacetEnabled": "<p>Whether facet information can be returned for the field.</p>",
122
- "DoubleArrayOptions$SearchEnabled": "<p>Whether the contents of the field are searchable.</p>",
123
- "DoubleArrayOptions$ReturnEnabled": "<p>Whether the contents of the field can be returned in the search results.</p>",
124
- "DoubleOptions$FacetEnabled": "<p>Whether facet information can be returned for the field.</p>",
125
- "DoubleOptions$SearchEnabled": "<p>Whether the contents of the field are searchable.</p>",
126
- "DoubleOptions$ReturnEnabled": "<p>Whether the contents of the field can be returned in the search results.</p>",
127
- "DoubleOptions$SortEnabled": "<p>Whether the field can be used to sort the search results.</p>",
128
- "IntArrayOptions$FacetEnabled": "<p>Whether facet information can be returned for the field.</p>",
129
- "IntArrayOptions$SearchEnabled": "<p>Whether the contents of the field are searchable.</p>",
130
- "IntArrayOptions$ReturnEnabled": "<p>Whether the contents of the field can be returned in the search results.</p>",
131
- "IntOptions$FacetEnabled": "<p>Whether facet information can be returned for the field.</p>",
132
- "IntOptions$SearchEnabled": "<p>Whether the contents of the field are searchable.</p>",
133
- "IntOptions$ReturnEnabled": "<p>Whether the contents of the field can be returned in the search results.</p>",
134
- "IntOptions$SortEnabled": "<p>Whether the field can be used to sort the search results.</p>",
135
- "LatLonOptions$FacetEnabled": "<p>Whether facet information can be returned for the field.</p>",
136
- "LatLonOptions$SearchEnabled": "<p>Whether the contents of the field are searchable.</p>",
137
- "LatLonOptions$ReturnEnabled": "<p>Whether the contents of the field can be returned in the search results.</p>",
138
- "LatLonOptions$SortEnabled": "<p>Whether the field can be used to sort the search results.</p>",
139
- "LiteralArrayOptions$FacetEnabled": "<p>Whether facet information can be returned for the field.</p>",
140
- "LiteralArrayOptions$SearchEnabled": "<p>Whether the contents of the field are searchable.</p>",
141
- "LiteralArrayOptions$ReturnEnabled": "<p>Whether the contents of the field can be returned in the search results.</p>",
142
- "LiteralOptions$FacetEnabled": "<p>Whether facet information can be returned for the field.</p>",
143
- "LiteralOptions$SearchEnabled": "<p>Whether the contents of the field are searchable.</p>",
144
- "LiteralOptions$ReturnEnabled": "<p>Whether the contents of the field can be returned in the search results.</p>",
145
- "LiteralOptions$SortEnabled": "<p>Whether the field can be used to sort the search results.</p>",
146
- "OptionStatus$PendingDeletion": "<p>Indicates that the option will be deleted once processing is complete.</p>",
147
- "TextArrayOptions$ReturnEnabled": "<p>Whether the contents of the field can be returned in the search results.</p>",
148
- "TextArrayOptions$HighlightEnabled": "<p>Whether highlights can be returned for the field.</p>",
149
- "TextOptions$ReturnEnabled": "<p>Whether the contents of the field can be returned in the search results.</p>",
150
- "TextOptions$SortEnabled": "<p>Whether the field can be used to sort the search results.</p>",
151
- "TextOptions$HighlightEnabled": "<p>Whether highlights can be returned for the field.</p>",
152
- "UpdateAvailabilityOptionsRequest$MultiAZ": "<p>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 <code>false</code>. </p>"
153
- }
154
- },
155
- "BuildSuggestersRequest": {
156
- "base": "<p>Container for the parameters to the <code><a>BuildSuggester</a></code> operation. Specifies the name of the domain you want to update.</p>",
157
- "refs": {
158
- }
159
- },
160
- "BuildSuggestersResponse": {
161
- "base": "<p>The result of a <code>BuildSuggester</code> request. Contains a list of the fields used for suggestions.</p>",
162
- "refs": {
163
- }
164
- },
165
- "CreateDomainRequest": {
166
- "base": "<p>Container for the parameters to the <code><a>CreateDomain</a></code> operation. Specifies a name for the new search domain.</p>",
167
- "refs": {
168
- }
169
- },
170
- "CreateDomainResponse": {
171
- "base": "<p>The result of a <code>CreateDomainRequest</code>. Contains the status of a newly created domain.</p>",
172
- "refs": {
173
- }
174
- },
175
- "DateArrayOptions": {
176
- "base": "<p>Options for a field that contains an array of dates. Present if <code>IndexFieldType</code> specifies the field is of type <code>date-array</code>. All options are enabled by default.</p>",
177
- "refs": {
178
- "IndexField$DateArrayOptions": null
179
- }
180
- },
181
- "DateOptions": {
182
- "base": "<p>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 <code>IndexFieldType</code> specifies the field is of type <code>date</code>. All options are enabled by default.</p>",
183
- "refs": {
184
- "IndexField$DateOptions": null
185
- }
186
- },
187
- "DefineAnalysisSchemeRequest": {
188
- "base": "<p>Container for the parameters to the <code><a>DefineAnalysisScheme</a></code> operation. Specifies the name of the domain you want to update and the analysis scheme configuration.</p>",
189
- "refs": {
190
- }
191
- },
192
- "DefineAnalysisSchemeResponse": {
193
- "base": "<p>The result of a <code><a>DefineAnalysisScheme</a></code> request. Contains the status of the newly-configured analysis scheme.</p>",
194
- "refs": {
195
- }
196
- },
197
- "DefineExpressionRequest": {
198
- "base": "<p>Container for the parameters to the <code><a>DefineExpression</a></code> operation. Specifies the name of the domain you want to update and the expression you want to configure.</p>",
199
- "refs": {
200
- }
201
- },
202
- "DefineExpressionResponse": {
203
- "base": "<p>The result of a <code>DefineExpression</code> request. Contains the status of the newly-configured expression.</p>",
204
- "refs": {
205
- }
206
- },
207
- "DefineIndexFieldRequest": {
208
- "base": "<p>Container for the parameters to the <code><a>DefineIndexField</a></code> operation. Specifies the name of the domain you want to update and the index field configuration.</p>",
209
- "refs": {
210
- }
211
- },
212
- "DefineIndexFieldResponse": {
213
- "base": "<p>The result of a <code><a>DefineIndexField</a></code> request. Contains the status of the newly-configured index field.</p>",
214
- "refs": {
215
- }
216
- },
217
- "DefineSuggesterRequest": {
218
- "base": "<p>Container for the parameters to the <code><a>DefineSuggester</a></code> operation. Specifies the name of the domain you want to update and the suggester configuration.</p>",
219
- "refs": {
220
- }
221
- },
222
- "DefineSuggesterResponse": {
223
- "base": "<p>The result of a <code>DefineSuggester</code> request. Contains the status of the newly-configured suggester.</p>",
224
- "refs": {
225
- }
226
- },
227
- "DeleteAnalysisSchemeRequest": {
228
- "base": "<p>Container for the parameters to the <code><a>DeleteAnalysisScheme</a></code> operation. Specifies the name of the domain you want to update and the analysis scheme you want to delete. </p>",
229
- "refs": {
230
- }
231
- },
232
- "DeleteAnalysisSchemeResponse": {
233
- "base": "<p>The result of a <code>DeleteAnalysisScheme</code> request. Contains the status of the deleted analysis scheme.</p>",
234
- "refs": {
235
- }
236
- },
237
- "DeleteDomainRequest": {
238
- "base": "<p>Container for the parameters to the <code><a>DeleteDomain</a></code> operation. Specifies the name of the domain you want to delete.</p>",
239
- "refs": {
240
- }
241
- },
242
- "DeleteDomainResponse": {
243
- "base": "<p>The result of a <code>DeleteDomain</code> request. Contains the status of a newly deleted domain, or no status if the domain has already been completely deleted.</p>",
244
- "refs": {
245
- }
246
- },
247
- "DeleteExpressionRequest": {
248
- "base": "<p>Container for the parameters to the <code><a>DeleteExpression</a></code> operation. Specifies the name of the domain you want to update and the name of the expression you want to delete.</p>",
249
- "refs": {
250
- }
251
- },
252
- "DeleteExpressionResponse": {
253
- "base": "<p>The result of a <code><a>DeleteExpression</a></code> request. Specifies the expression being deleted.</p>",
254
- "refs": {
255
- }
256
- },
257
- "DeleteIndexFieldRequest": {
258
- "base": "<p>Container for the parameters to the <code><a>DeleteIndexField</a></code> operation. Specifies the name of the domain you want to update and the name of the index field you want to delete.</p>",
259
- "refs": {
260
- }
261
- },
262
- "DeleteIndexFieldResponse": {
263
- "base": "<p>The result of a <code><a>DeleteIndexField</a></code> request.</p>",
264
- "refs": {
265
- }
266
- },
267
- "DeleteSuggesterRequest": {
268
- "base": "<p>Container for the parameters to the <code><a>DeleteSuggester</a></code> operation. Specifies the name of the domain you want to update and name of the suggester you want to delete.</p>",
269
- "refs": {
270
- }
271
- },
272
- "DeleteSuggesterResponse": {
273
- "base": "<p>The result of a <code>DeleteSuggester</code> request. Contains the status of the deleted suggester.</p>",
274
- "refs": {
275
- }
276
- },
277
- "DescribeAnalysisSchemesRequest": {
278
- "base": "<p>Container for the parameters to the <code><a>DescribeAnalysisSchemes</a></code> 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 <code>Deployed</code> option to <code>true</code>. </p>",
279
- "refs": {
280
- }
281
- },
282
- "DescribeAnalysisSchemesResponse": {
283
- "base": "<p>The result of a <code>DescribeAnalysisSchemes</code> request. Contains the analysis schemes configured for the domain specified in the request.</p>",
284
- "refs": {
285
- }
286
- },
287
- "DescribeAvailabilityOptionsRequest": {
288
- "base": "<p>Container for the parameters to the <code><a>DescribeAvailabilityOptions</a></code> 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 <code>true</code>.</p>",
289
- "refs": {
290
- }
291
- },
292
- "DescribeAvailabilityOptionsResponse": {
293
- "base": "<p>The result of a <code>DescribeAvailabilityOptions</code> request. Indicates whether or not the Multi-AZ option is enabled for the domain specified in the request. </p>",
294
- "refs": {
295
- }
296
- },
297
- "DescribeDomainsRequest": {
298
- "base": "<p>Container for the parameters to the <code><a>DescribeDomains</a></code> 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.</p>",
299
- "refs": {
300
- }
301
- },
302
- "DescribeDomainsResponse": {
303
- "base": "<p>The result of a <code>DescribeDomains</code> request. Contains the status of the domains specified in the request or all domains owned by the account.</p>",
304
- "refs": {
305
- }
306
- },
307
- "DescribeExpressionsRequest": {
308
- "base": "<p>Container for the parameters to the <code><a>DescribeDomains</a></code> 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 <code>Deployed</code> option to <code>true</code>.</p>",
309
- "refs": {
310
- }
311
- },
312
- "DescribeExpressionsResponse": {
313
- "base": "<p>The result of a <code>DescribeExpressions</code> request. Contains the expressions configured for the domain specified in the request.</p>",
314
- "refs": {
315
- }
316
- },
317
- "DescribeIndexFieldsRequest": {
318
- "base": "<p>Container for the parameters to the <code><a>DescribeIndexFields</a></code> 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 <code>Deployed</code> option to <code>true</code>.</p>",
319
- "refs": {
320
- }
321
- },
322
- "DescribeIndexFieldsResponse": {
323
- "base": "<p>The result of a <code>DescribeIndexFields</code> request. Contains the index fields configured for the domain specified in the request.</p>",
324
- "refs": {
325
- }
326
- },
327
- "DescribeScalingParametersRequest": {
328
- "base": "<p>Container for the parameters to the <code><a>DescribeScalingParameters</a></code> operation. Specifies the name of the domain you want to describe. </p>",
329
- "refs": {
330
- }
331
- },
332
- "DescribeScalingParametersResponse": {
333
- "base": "<p>The result of a <code>DescribeScalingParameters</code> request. Contains the scaling parameters configured for the domain specified in the request.</p>",
334
- "refs": {
335
- }
336
- },
337
- "DescribeServiceAccessPoliciesRequest": {
338
- "base": "<p>Container for the parameters to the <code><a>DescribeServiceAccessPolicies</a></code> operation. Specifies the name of the domain you want to describe. To show the active configuration and exclude any pending changes, set the <code>Deployed</code> option to <code>true</code>.</p>",
339
- "refs": {
340
- }
341
- },
342
- "DescribeServiceAccessPoliciesResponse": {
343
- "base": "<p>The result of a <code>DescribeServiceAccessPolicies</code> request.</p>",
344
- "refs": {
345
- }
346
- },
347
- "DescribeSuggestersRequest": {
348
- "base": "<p>Container for the parameters to the <code><a>DescribeSuggester</a></code> 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 <code>Deployed</code> option to <code>true</code>.</p>",
349
- "refs": {
350
- }
351
- },
352
- "DescribeSuggestersResponse": {
353
- "base": "<p>The result of a <code>DescribeSuggesters</code> request.</p>",
354
- "refs": {
355
- }
356
- },
357
- "DisabledOperationException": {
358
- "base": "<p>The request was rejected because it attempted an operation which is not enabled.</p>",
359
- "refs": {
360
- }
361
- },
362
- "DocumentSuggesterOptions": {
363
- "base": "<p>Options for a search suggester.</p>",
364
- "refs": {
365
- "Suggester$DocumentSuggesterOptions": null
366
- }
367
- },
368
- "DomainId": {
369
- "base": "<p>An internally generated unique identifier for a domain.</p>",
370
- "refs": {
371
- "DomainStatus$DomainId": null
372
- }
373
- },
374
- "DomainName": {
375
- "base": "<p>A string that represents the name of a domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).</p>",
376
- "refs": {
377
- "BuildSuggestersRequest$DomainName": null,
378
- "CreateDomainRequest$DomainName": "<p>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.</p>",
379
- "DefineAnalysisSchemeRequest$DomainName": null,
380
- "DefineExpressionRequest$DomainName": null,
381
- "DefineIndexFieldRequest$DomainName": null,
382
- "DefineSuggesterRequest$DomainName": null,
383
- "DeleteAnalysisSchemeRequest$DomainName": null,
384
- "DeleteDomainRequest$DomainName": "<p>The name of the domain you want to permanently delete.</p>",
385
- "DeleteExpressionRequest$DomainName": null,
386
- "DeleteIndexFieldRequest$DomainName": null,
387
- "DeleteSuggesterRequest$DomainName": null,
388
- "DescribeAnalysisSchemesRequest$DomainName": "<p>The name of the domain you want to describe.</p>",
389
- "DescribeAvailabilityOptionsRequest$DomainName": "<p>The name of the domain you want to describe.</p>",
390
- "DescribeExpressionsRequest$DomainName": "<p>The name of the domain you want to describe.</p>",
391
- "DescribeIndexFieldsRequest$DomainName": "<p>The name of the domain you want to describe.</p>",
392
- "DescribeScalingParametersRequest$DomainName": null,
393
- "DescribeServiceAccessPoliciesRequest$DomainName": "<p>The name of the domain you want to describe.</p>",
394
- "DescribeSuggestersRequest$DomainName": "<p>The name of the domain you want to describe.</p>",
395
- "DomainNameList$member": null,
396
- "DomainNameMap$key": null,
397
- "DomainStatus$DomainName": null,
398
- "IndexDocumentsRequest$DomainName": null,
399
- "UpdateAvailabilityOptionsRequest$DomainName": null,
400
- "UpdateScalingParametersRequest$DomainName": null,
401
- "UpdateServiceAccessPoliciesRequest$DomainName": null
402
- }
403
- },
404
- "DomainNameList": {
405
- "base": "<p>A list of domain names.</p>",
406
- "refs": {
407
- "DescribeDomainsRequest$DomainNames": "<p>The names of the domains you want to include in the response.</p>"
408
- }
409
- },
410
- "DomainNameMap": {
411
- "base": "<p>A collection of domain names.</p>",
412
- "refs": {
413
- "ListDomainNamesResponse$DomainNames": "<p>The names of the search domains owned by an account.</p>"
414
- }
415
- },
416
- "DomainStatus": {
417
- "base": "<p>The current status of the search domain.</p>",
418
- "refs": {
419
- "CreateDomainResponse$DomainStatus": null,
420
- "DeleteDomainResponse$DomainStatus": null,
421
- "DomainStatusList$member": null
422
- }
423
- },
424
- "DomainStatusList": {
425
- "base": "<p>A list that contains the status of each requested domain.</p>",
426
- "refs": {
427
- "DescribeDomainsResponse$DomainStatusList": null
428
- }
429
- },
430
- "Double": {
431
- "base": null,
432
- "refs": {
433
- "DoubleArrayOptions$DefaultValue": "A value to use for the field if the field isn't specified for a document.",
434
- "DoubleOptions$DefaultValue": "<p>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.</p>"
435
- }
436
- },
437
- "DoubleArrayOptions": {
438
- "base": "<p>Options for a field that contains an array of double-precision 64-bit floating point values. Present if <code>IndexFieldType</code> specifies the field is of type <code>double-array</code>. All options are enabled by default.</p>",
439
- "refs": {
440
- "IndexField$DoubleArrayOptions": null
441
- }
442
- },
443
- "DoubleOptions": {
444
- "base": "<p>Options for a double-precision 64-bit floating point field. Present if <code>IndexFieldType</code> specifies the field is of type <code>double</code>. All options are enabled by default.</p>",
445
- "refs": {
446
- "IndexField$DoubleOptions": null
447
- }
448
- },
449
- "DynamicFieldName": {
450
- "base": null,
451
- "refs": {
452
- "DeleteIndexFieldRequest$IndexFieldName": "<p>The name of the index field your want to remove from the domain's indexing options.</p>",
453
- "DynamicFieldNameList$member": null,
454
- "IndexField$IndexFieldName": "<p>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. </p> <p>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. </p> <p>The name <code>score</code> is reserved and cannot be used as a field name. To reference a document's ID, you can use the name <code>_id</code>. </p>"
455
- }
456
- },
457
- "DynamicFieldNameList": {
458
- "base": null,
459
- "refs": {
460
- "DescribeIndexFieldsRequest$FieldNames": "<p>A list of the index fields you want to describe. If not specified, information is returned for all configured index fields.</p>"
461
- }
462
- },
463
- "ErrorCode": {
464
- "base": "<p>A machine-parsable string error or warning code.</p>",
465
- "refs": {
466
- "BaseException$Code": null
467
- }
468
- },
469
- "ErrorMessage": {
470
- "base": "<p>A human-readable string error or warning message.</p>",
471
- "refs": {
472
- "BaseException$Message": null
473
- }
474
- },
475
- "Expression": {
476
- "base": "<p>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. </p>",
477
- "refs": {
478
- "DefineExpressionRequest$Expression": null,
479
- "ExpressionStatus$Options": "<p>The expression that is evaluated for sorting while processing a search request.</p>"
480
- }
481
- },
482
- "ExpressionStatus": {
483
- "base": "<p>The value of an <code>Expression</code> and its current status.</p>",
484
- "refs": {
485
- "DefineExpressionResponse$Expression": null,
486
- "DeleteExpressionResponse$Expression": "<p>The status of the expression being deleted.</p>",
487
- "ExpressionStatusList$member": null
488
- }
489
- },
490
- "ExpressionStatusList": {
491
- "base": "<p>Contains the status of multiple expressions.</p>",
492
- "refs": {
493
- "DescribeExpressionsResponse$Expressions": "<p>The expressions configured for the domain.</p>"
494
- }
495
- },
496
- "ExpressionValue": {
497
- "base": "<p>The expression to evaluate for sorting while processing a search request. The <code>Expression</code> syntax is based on JavaScript expressions. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-expressions.html\" target=\"_blank\">Configuring Expressions</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
498
- "refs": {
499
- "Expression$ExpressionValue": null
500
- }
501
- },
502
- "FieldName": {
503
- "base": "<p>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. </p> <p>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. </p> <p>The name <code>score</code> is reserved and cannot be used as a field name. To reference a document's ID, you can use the name <code>_id</code>. </p>",
504
- "refs": {
505
- "DateOptions$SourceField": null,
506
- "DocumentSuggesterOptions$SourceField": "<p>The name of the index field you want to use for suggestions. </p>",
507
- "DoubleOptions$SourceField": "<p>The name of the source field to map to the field. </p>",
508
- "FieldNameList$member": null,
509
- "IntOptions$SourceField": "<p>The name of the source field to map to the field. </p>",
510
- "LatLonOptions$SourceField": null,
511
- "LiteralOptions$SourceField": null,
512
- "TextOptions$SourceField": null
513
- }
514
- },
515
- "FieldNameCommaList": {
516
- "base": null,
517
- "refs": {
518
- "DateArrayOptions$SourceFields": "<p>A list of source fields to map to the field. </p>",
519
- "DoubleArrayOptions$SourceFields": "<p>A list of source fields to map to the field. </p>",
520
- "IntArrayOptions$SourceFields": "<p>A list of source fields to map to the field. </p>",
521
- "LiteralArrayOptions$SourceFields": "<p>A list of source fields to map to the field. </p>",
522
- "TextArrayOptions$SourceFields": "<p>A list of source fields to map to the field. </p>"
523
- }
524
- },
525
- "FieldNameList": {
526
- "base": "<p>A list of field names.</p>",
527
- "refs": {
528
- "BuildSuggestersResponse$FieldNames": null,
529
- "IndexDocumentsResponse$FieldNames": "<p>The names of the fields that are currently being indexed.</p>"
530
- }
531
- },
532
- "FieldValue": {
533
- "base": "<p>The value of a field attribute.</p>",
534
- "refs": {
535
- "DateArrayOptions$DefaultValue": "A value to use for the field if the field isn't specified for a document.",
536
- "DateOptions$DefaultValue": "A value to use for the field if the field isn't specified for a document.",
537
- "LatLonOptions$DefaultValue": "A value to use for the field if the field isn't specified for a document.",
538
- "LiteralArrayOptions$DefaultValue": "A value to use for the field if the field isn't specified for a document.",
539
- "LiteralOptions$DefaultValue": "A value to use for the field if the field isn't specified for a document.",
540
- "TextArrayOptions$DefaultValue": "A value to use for the field if the field isn't specified for a document.",
541
- "TextOptions$DefaultValue": "A value to use for the field if the field isn't specified for a document."
542
- }
543
- },
544
- "IndexDocumentsRequest": {
545
- "base": "<p>Container for the parameters to the <code><a>IndexDocuments</a></code> operation. Specifies the name of the domain you want to re-index.</p>",
546
- "refs": {
547
- }
548
- },
549
- "IndexDocumentsResponse": {
550
- "base": "<p>The result of an <code>IndexDocuments</code> request. Contains the status of the indexing operation, including the fields being indexed.</p>",
551
- "refs": {
552
- }
553
- },
554
- "IndexField": {
555
- "base": "<p>Configuration information for a field in the index, including its name, type, and options. The supported options depend on the <code><a>IndexFieldType</a></code>.</p>",
556
- "refs": {
557
- "DefineIndexFieldRequest$IndexField": "<p>The index field and field options you want to configure. </p>",
558
- "IndexFieldStatus$Options": null
559
- }
560
- },
561
- "IndexFieldStatus": {
562
- "base": "<p>The value of an <code>IndexField</code> and its current status.</p>",
563
- "refs": {
564
- "DefineIndexFieldResponse$IndexField": null,
565
- "DeleteIndexFieldResponse$IndexField": "<p>The status of the index field being deleted.</p>",
566
- "IndexFieldStatusList$member": null
567
- }
568
- },
569
- "IndexFieldStatusList": {
570
- "base": "<p>Contains the status of multiple index fields.</p>",
571
- "refs": {
572
- "DescribeIndexFieldsResponse$IndexFields": "<p>The index fields configured for the domain.</p>"
573
- }
574
- },
575
- "IndexFieldType": {
576
- "base": "<p>The type of field. The valid options for a field depend on the field type. For more information about the supported field types, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-index-fields.html\" target=\"_blank\">Configuring Index Fields</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
577
- "refs": {
578
- "IndexField$IndexFieldType": null
579
- }
580
- },
581
- "InstanceCount": {
582
- "base": null,
583
- "refs": {
584
- "DomainStatus$SearchInstanceCount": "<p>The number of search instances that are available to process search requests.</p>"
585
- }
586
- },
587
- "IntArrayOptions": {
588
- "base": "<p>Options for a field that contains an array of 64-bit signed integers. Present if <code>IndexFieldType</code> specifies the field is of type <code>int-array</code>. All options are enabled by default.</p>",
589
- "refs": {
590
- "IndexField$IntArrayOptions": null
591
- }
592
- },
593
- "IntOptions": {
594
- "base": "<p>Options for a 64-bit signed integer field. Present if <code>IndexFieldType</code> specifies the field is of type <code>int</code>. All options are enabled by default.</p>",
595
- "refs": {
596
- "IndexField$IntOptions": null
597
- }
598
- },
599
- "InternalException": {
600
- "base": "<p>An internal error occurred while processing the request. If this problem persists, report an issue from the <a href=\"http://status.aws.amazon.com/\" target=\"_blank\">Service Health Dashboard</a>.</p>",
601
- "refs": {
602
- }
603
- },
604
- "InvalidTypeException": {
605
- "base": "<p>The request was rejected because it specified an invalid type definition.</p>",
606
- "refs": {
607
- }
608
- },
609
- "LatLonOptions": {
610
- "base": "<p>Options for a latlon field. A latlon field contains a location stored as a latitude and longitude value pair. Present if <code>IndexFieldType</code> specifies the field is of type <code>latlon</code>. All options are enabled by default.</p>",
611
- "refs": {
612
- "IndexField$LatLonOptions": null
613
- }
614
- },
615
- "LimitExceededException": {
616
- "base": "<p>The request was rejected because a resource limit has already been met.</p>",
617
- "refs": {
618
- }
619
- },
620
- "Limits": {
621
- "base": null,
622
- "refs": {
623
- "DomainStatus$Limits": null
624
- }
625
- },
626
- "ListDomainNamesResponse": {
627
- "base": "<p>The result of a <code>ListDomainNames</code> request. Contains a list of the domains owned by an account.</p>",
628
- "refs": {
629
- }
630
- },
631
- "LiteralArrayOptions": {
632
- "base": "<p>Options for a field that contains an array of literal strings. Present if <code>IndexFieldType</code> specifies the field is of type <code>literal-array</code>. All options are enabled by default.</p>",
633
- "refs": {
634
- "IndexField$LiteralArrayOptions": null
635
- }
636
- },
637
- "LiteralOptions": {
638
- "base": "<p>Options for literal field. Present if <code>IndexFieldType</code> specifies the field is of type <code>literal</code>. All options are enabled by default.</p>",
639
- "refs": {
640
- "IndexField$LiteralOptions": null
641
- }
642
- },
643
- "Long": {
644
- "base": null,
645
- "refs": {
646
- "IntArrayOptions$DefaultValue": "A value to use for the field if the field isn't specified for a document.",
647
- "IntOptions$DefaultValue": "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."
648
- }
649
- },
650
- "MaximumPartitionCount": {
651
- "base": null,
652
- "refs": {
653
- "Limits$MaximumPartitionCount": null
654
- }
655
- },
656
- "MaximumReplicationCount": {
657
- "base": null,
658
- "refs": {
659
- "Limits$MaximumReplicationCount": null
660
- }
661
- },
662
- "MultiAZ": {
663
- "base": null,
664
- "refs": {
665
- "AvailabilityOptionsStatus$Options": "<p>The availability options configured for the domain.</p>"
666
- }
667
- },
668
- "OptionState": {
669
- "base": "<p>The state of processing a change to an option. One of:</p> <ul> <li>RequiresIndexDocuments: The option's latest value will not be deployed until <a>IndexDocuments</a> has been called and indexing is complete.</li> <li>Processing: The option's latest value is in the process of being activated.</li> <li>Active: The option's latest value is fully deployed. </li> <li>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.</li> </ul>",
670
- "refs": {
671
- "OptionStatus$State": "<p>The state of processing a change to an option. Possible values:</p> <ul> <li> <code>RequiresIndexDocuments</code>: the option's latest value will not be deployed until <a>IndexDocuments</a> has been called and indexing is complete.</li> <li> <code>Processing</code>: the option's latest value is in the process of being activated. </li> <li> <code>Active</code>: the option's latest value is completely deployed.</li> <li> <code>FailedToValidate</code>: 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.</li> </ul>"
672
- }
673
- },
674
- "OptionStatus": {
675
- "base": "<p>The status of domain configuration option.</p>",
676
- "refs": {
677
- "AccessPoliciesStatus$Status": null,
678
- "AnalysisSchemeStatus$Status": null,
679
- "AvailabilityOptionsStatus$Status": null,
680
- "ExpressionStatus$Status": null,
681
- "IndexFieldStatus$Status": null,
682
- "ScalingParametersStatus$Status": null,
683
- "SuggesterStatus$Status": null
684
- }
685
- },
686
- "PartitionCount": {
687
- "base": "<p>The number of partitions used to hold the domain's index.</p>",
688
- "refs": {
689
- "DomainStatus$SearchPartitionCount": "<p>The number of partitions across which the search index is spread.</p>"
690
- }
691
- },
692
- "PartitionInstanceType": {
693
- "base": "<p>The instance type (such as <code>search.m1.small</code>) on which an index partition is hosted.</p>",
694
- "refs": {
695
- "ScalingParameters$DesiredInstanceType": "<p>The instance type that you want to preconfigure for your domain. For example, <code>search.m1.small</code>.</p>"
696
- }
697
- },
698
- "PolicyDocument": {
699
- "base": "<p>Access rules for a domain's document or search service endpoints. For more information, see <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-access.html\" target=\"_blank\">Configuring Access for a Search Domain</a> in the <i>Amazon CloudSearch Developer Guide</i>. The maximum size of a policy document is 100 KB.</p>",
700
- "refs": {
701
- "AccessPoliciesStatus$Options": null,
702
- "UpdateServiceAccessPoliciesRequest$AccessPolicies": "<p>The access rules you want to configure. These rules replace any existing rules. </p>"
703
- }
704
- },
705
- "ResourceNotFoundException": {
706
- "base": "<p>The request was rejected because it attempted to reference a resource that does not exist.</p>",
707
- "refs": {
708
- }
709
- },
710
- "ScalingParameters": {
711
- "base": "<p>The desired instance type and desired number of replicas of each index partition.</p>",
712
- "refs": {
713
- "ScalingParametersStatus$Options": null,
714
- "UpdateScalingParametersRequest$ScalingParameters": null
715
- }
716
- },
717
- "ScalingParametersStatus": {
718
- "base": "<p>The status and configuration of a search domain's scaling parameters. </p>",
719
- "refs": {
720
- "DescribeScalingParametersResponse$ScalingParameters": null,
721
- "UpdateScalingParametersResponse$ScalingParameters": null
722
- }
723
- },
724
- "SearchInstanceType": {
725
- "base": "<p>The instance type (such as <code>search.m1.small</code>) that is being used to process search requests.</p>",
726
- "refs": {
727
- "DomainStatus$SearchInstanceType": "<p>The instance type that is being used to process search requests.</p>"
728
- }
729
- },
730
- "ServiceEndpoint": {
731
- "base": "<p>The endpoint to which service requests can be submitted.</p>",
732
- "refs": {
733
- "DomainStatus$DocService": "<p>The service endpoint for updating documents in a search domain.</p>",
734
- "DomainStatus$SearchService": "<p>The service endpoint for requesting search results from a search domain.</p>"
735
- }
736
- },
737
- "ServiceUrl": {
738
- "base": "<p>The endpoint to which service requests can be submitted. For example, <code>search-imdb-movies-oopcnjfn6ugofer3zx5iadxxca.eu-west-1.cloudsearch.amazonaws.com</code> or <code>doc-imdb-movies-oopcnjfn6ugofer3zx5iadxxca.eu-west-1.cloudsearch.amazonaws.com</code>.</p>",
739
- "refs": {
740
- "ServiceEndpoint$Endpoint": null
741
- }
742
- },
743
- "StandardName": {
744
- "base": "<p>Names must begin with a letter and can contain the following characters: a-z (lowercase), 0-9, and _ (underscore).</p>",
745
- "refs": {
746
- "AnalysisScheme$AnalysisSchemeName": null,
747
- "DeleteAnalysisSchemeRequest$AnalysisSchemeName": "<p>The name of the analysis scheme you want to delete.</p>",
748
- "DeleteExpressionRequest$ExpressionName": "<p>The name of the <code><a>Expression</a></code> to delete.</p>",
749
- "DeleteSuggesterRequest$SuggesterName": "<p>Specifies the name of the suggester you want to delete.</p>",
750
- "Expression$ExpressionName": null,
751
- "StandardNameList$member": null,
752
- "Suggester$SuggesterName": null
753
- }
754
- },
755
- "StandardNameList": {
756
- "base": null,
757
- "refs": {
758
- "DescribeAnalysisSchemesRequest$AnalysisSchemeNames": "<p>The analysis schemes you want to describe.</p>",
759
- "DescribeExpressionsRequest$ExpressionNames": "<p>Limits the <code><a>DescribeExpressions</a></code> response to the specified expressions. If not specified, all expressions are shown.</p>",
760
- "DescribeSuggestersRequest$SuggesterNames": "<p>The suggesters you want to describe.</p>"
761
- }
762
- },
763
- "String": {
764
- "base": null,
765
- "refs": {
766
- "AnalysisOptions$Synonyms": "<p>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 <a href=\"http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-analysis-schemes.html#synonyms\">Synonyms</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>",
767
- "AnalysisOptions$Stopwords": "<p>A JSON array of terms to ignore during indexing and searching. For example, <code>[\"a\", \"an\", \"the\", \"of\"]</code>. The stopwords dictionary must explicitly list each word you want to ignore. Wildcards and regular expressions are not supported. </p>",
768
- "AnalysisOptions$StemmingDictionary": "<p>A JSON object that contains a collection of string:value pairs that each map a term to its stem. For example, <code>{\"term1\": \"stem1\", \"term2\": \"stem2\", \"term3\": \"stem3\"}</code>. 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.</p>",
769
- "AnalysisOptions$JapaneseTokenizationDictionary": "<p>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.</p>",
770
- "DocumentSuggesterOptions$SortExpression": "<p>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 <code>_score</code> 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.</p>"
771
- }
772
- },
773
- "Suggester": {
774
- "base": "<p>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: <code>FuzzyMatching</code>, <code>SortExpression</code>. </p>",
775
- "refs": {
776
- "DefineSuggesterRequest$Suggester": null,
777
- "SuggesterStatus$Options": null
778
- }
779
- },
780
- "SuggesterFuzzyMatching": {
781
- "base": null,
782
- "refs": {
783
- "DocumentSuggesterOptions$FuzzyMatching": "<p>The level of fuzziness allowed when suggesting matches for a string: <code>none</code>, <code>low</code>, or <code>high</code>. 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. </p>"
784
- }
785
- },
786
- "SuggesterStatus": {
787
- "base": "<p>The value of a <code>Suggester</code> and its current status.</p>",
788
- "refs": {
789
- "DefineSuggesterResponse$Suggester": null,
790
- "DeleteSuggesterResponse$Suggester": "<p>The status of the suggester being deleted.</p>",
791
- "SuggesterStatusList$member": null
792
- }
793
- },
794
- "SuggesterStatusList": {
795
- "base": "<p>Contains the status of multiple suggesters.</p>",
796
- "refs": {
797
- "DescribeSuggestersResponse$Suggesters": "<p>The suggesters configured for the domain specified in the request.</p>"
798
- }
799
- },
800
- "TextArrayOptions": {
801
- "base": "<p>Options for a field that contains an array of text strings. Present if <code>IndexFieldType</code> specifies the field is of type <code>text-array</code>. A <code>text-array</code> field is always searchable. All options are enabled by default.</p>",
802
- "refs": {
803
- "IndexField$TextArrayOptions": null
804
- }
805
- },
806
- "TextOptions": {
807
- "base": "<p>Options for text field. Present if <code>IndexFieldType</code> specifies the field is of type <code>text</code>. A <code>text</code> field is always searchable. All options are enabled by default.</p>",
808
- "refs": {
809
- "IndexField$TextOptions": null
810
- }
811
- },
812
- "UIntValue": {
813
- "base": null,
814
- "refs": {
815
- "OptionStatus$UpdateVersion": "<p>A unique integer that indicates when this option was last updated.</p>",
816
- "ScalingParameters$DesiredReplicationCount": "<p>The number of replicas you want to preconfigure for each index partition.</p>",
817
- "ScalingParameters$DesiredPartitionCount": "<p>The number of partitions you want to preconfigure for your domain. Only valid when you select <code>m2.2xlarge</code> as the desired instance type.</p>"
818
- }
819
- },
820
- "UpdateAvailabilityOptionsRequest": {
821
- "base": "<p>Container for the parameters to the <code><a>UpdateAvailabilityOptions</a></code> operation. Specifies the name of the domain you want to update and the Multi-AZ availability option.</p>",
822
- "refs": {
823
- }
824
- },
825
- "UpdateAvailabilityOptionsResponse": {
826
- "base": "<p>The result of a <code>UpdateAvailabilityOptions</code> request. Contains the status of the domain's availability options. </p>",
827
- "refs": {
828
- }
829
- },
830
- "UpdateScalingParametersRequest": {
831
- "base": "<p>Container for the parameters to the <code><a>UpdateScalingParameters</a></code> operation. Specifies the name of the domain you want to update and the scaling parameters you want to configure.</p>",
832
- "refs": {
833
- }
834
- },
835
- "UpdateScalingParametersResponse": {
836
- "base": "<p>The result of a <code>UpdateScalingParameters</code> request. Contains the status of the newly-configured scaling parameters.</p>",
837
- "refs": {
838
- }
839
- },
840
- "UpdateServiceAccessPoliciesRequest": {
841
- "base": "<p>Container for the parameters to the <code><a>UpdateServiceAccessPolicies</a></code> operation. Specifies the name of the domain you want to update and the access rules you want to configure.</p>",
842
- "refs": {
843
- }
844
- },
845
- "UpdateServiceAccessPoliciesResponse": {
846
- "base": "<p>The result of an <code>UpdateServiceAccessPolicies</code> request. Contains the new access policies.</p>",
847
- "refs": {
848
- }
849
- },
850
- "UpdateTimestamp": {
851
- "base": null,
852
- "refs": {
853
- "OptionStatus$CreationDate": "<p>A timestamp for when this option was created.</p>",
854
- "OptionStatus$UpdateDate": "<p>A timestamp for when this option was last updated.</p>"
855
- }
856
- },
857
- "Word": {
858
- "base": null,
859
- "refs": {
860
- "TextArrayOptions$AnalysisScheme": "<p>The name of an analysis scheme for a <code>text-array</code> field.</p>",
861
- "TextOptions$AnalysisScheme": "<p>The name of an analysis scheme for a <code>text</code> field.</p>"
862
- }
863
- }
864
- }
865
- }