amazonka-opensearch-2.0: Amazon OpenSearch Service SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.OpenSearch.Types.AdvancedOptionsStatus

Description

 
Synopsis

Documentation

data AdvancedOptionsStatus Source #

Status of the advanced options for the specified domain. The following options are available:

  • "rest.action.multi.allow_explicit_index": "true" | "false" - Note the use of a string rather than a boolean. Specifies whether explicit references to indexes are allowed inside the body of HTTP requests. If you want to configure access policies for domain sub-resources, such as specific indexes and domain APIs, you must disable this property. Default is true.
  • "indices.fielddata.cache.size": "80" - Note the use of a string rather than a boolean. Specifies the percentage of heap space allocated to field data. Default is unbounded.
  • "indices.query.bool.max_clause_count": "1024" - Note the use of a string rather than a boolean. Specifies the maximum number of clauses allowed in a Lucene boolean query. Default is 1,024. Queries with more than the permitted number of clauses result in a TooManyClauses error.
  • "override_main_response_version": "true" | "false" - Note the use of a string rather than a boolean. Specifies whether the domain reports its version as 7.10 to allow Elasticsearch OSS clients and plugins to continue working with it. Default is false when creating a domain and true when upgrading a domain.

For more information, see Advanced cluster parameters.

See: newAdvancedOptionsStatus smart constructor.

Constructors

AdvancedOptionsStatus' 

Fields

Instances

Instances details
FromJSON AdvancedOptionsStatus Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.AdvancedOptionsStatus

Generic AdvancedOptionsStatus Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.AdvancedOptionsStatus

Associated Types

type Rep AdvancedOptionsStatus :: Type -> Type #

Read AdvancedOptionsStatus Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.AdvancedOptionsStatus

Show AdvancedOptionsStatus Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.AdvancedOptionsStatus

NFData AdvancedOptionsStatus Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.AdvancedOptionsStatus

Methods

rnf :: AdvancedOptionsStatus -> () #

Eq AdvancedOptionsStatus Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.AdvancedOptionsStatus

Hashable AdvancedOptionsStatus Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.AdvancedOptionsStatus

type Rep AdvancedOptionsStatus Source # 
Instance details

Defined in Amazonka.OpenSearch.Types.AdvancedOptionsStatus

type Rep AdvancedOptionsStatus = D1 ('MetaData "AdvancedOptionsStatus" "Amazonka.OpenSearch.Types.AdvancedOptionsStatus" "amazonka-opensearch-2.0-GNoaWlqGXH04P8GBIHM78L" 'False) (C1 ('MetaCons "AdvancedOptionsStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "options") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text Text)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 OptionStatus)))

newAdvancedOptionsStatus Source #

Create a value of AdvancedOptionsStatus with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:options:AdvancedOptionsStatus', advancedOptionsStatus_options - The status of advanced options for the specified domain.

$sel:status:AdvancedOptionsStatus', advancedOptionsStatus_status - The status of advanced options for the specified domain.

advancedOptionsStatus_options :: Lens' AdvancedOptionsStatus (HashMap Text Text) Source #

The status of advanced options for the specified domain.

advancedOptionsStatus_status :: Lens' AdvancedOptionsStatus OptionStatus Source #

The status of advanced options for the specified domain.