Struct aws_sdk_elasticsearch::model::AdvancedOptionsStatus [−][src]
#[non_exhaustive]pub struct AdvancedOptionsStatus {
pub options: Option<HashMap<String, String>>,
pub status: Option<OptionStatus>,
}
Expand description
Status of the advanced options for the specified Elasticsearch domain. Currently, the following advanced options are available:
- Option to allow references to indices in an HTTP request body. Must be
false
when configuring access to individual sub-resources. By default, the value istrue
. See Configuration Advanced Options for more information. - Option to specify the percentage of heap space that is allocated to field data. By default, this setting is unbounded.
For more information, see Configuring Advanced Options.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.options: Option<HashMap<String, String>>
Specifies the status of advanced options for the specified Elasticsearch domain.
status: Option<OptionStatus>
Specifies the status of OptionStatus
for advanced options for the specified Elasticsearch domain.
Implementations
Creates a new builder-style object to manufacture AdvancedOptionsStatus
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AdvancedOptionsStatus
impl Send for AdvancedOptionsStatus
impl Sync for AdvancedOptionsStatus
impl Unpin for AdvancedOptionsStatus
impl UnwindSafe for AdvancedOptionsStatus
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more