Struct aws_sdk_opensearch::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 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 Advanced cluster parameters for more information. - Option to specify the percentage of heap space allocated to field data. By default, this setting is unbounded.
For more information, see Advanced cluster parameters.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.options: Option<HashMap<String, String>>
The status of advanced options for the specified domain.
status: Option<OptionStatus>
The OptionStatus
for advanced options for the specified 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