Struct aws_sdk_iot::operation::update_indexing_configuration::UpdateIndexingConfigurationInput
source · #[non_exhaustive]pub struct UpdateIndexingConfigurationInput {
pub thing_indexing_configuration: Option<ThingIndexingConfiguration>,
pub thing_group_indexing_configuration: Option<ThingGroupIndexingConfiguration>,
}
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.thing_indexing_configuration: Option<ThingIndexingConfiguration>
Thing indexing configuration.
thing_group_indexing_configuration: Option<ThingGroupIndexingConfiguration>
Thing group indexing configuration.
Implementations§
source§impl UpdateIndexingConfigurationInput
impl UpdateIndexingConfigurationInput
sourcepub fn thing_indexing_configuration(
&self
) -> Option<&ThingIndexingConfiguration>
pub fn thing_indexing_configuration( &self ) -> Option<&ThingIndexingConfiguration>
Thing indexing configuration.
sourcepub fn thing_group_indexing_configuration(
&self
) -> Option<&ThingGroupIndexingConfiguration>
pub fn thing_group_indexing_configuration( &self ) -> Option<&ThingGroupIndexingConfiguration>
Thing group indexing configuration.
source§impl UpdateIndexingConfigurationInput
impl UpdateIndexingConfigurationInput
sourcepub fn builder() -> UpdateIndexingConfigurationInputBuilder
pub fn builder() -> UpdateIndexingConfigurationInputBuilder
Creates a new builder-style object to manufacture UpdateIndexingConfigurationInput
.
Trait Implementations§
source§impl Clone for UpdateIndexingConfigurationInput
impl Clone for UpdateIndexingConfigurationInput
source§fn clone(&self) -> UpdateIndexingConfigurationInput
fn clone(&self) -> UpdateIndexingConfigurationInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq for UpdateIndexingConfigurationInput
impl PartialEq for UpdateIndexingConfigurationInput
source§fn eq(&self, other: &UpdateIndexingConfigurationInput) -> bool
fn eq(&self, other: &UpdateIndexingConfigurationInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateIndexingConfigurationInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateIndexingConfigurationInput
impl Send for UpdateIndexingConfigurationInput
impl Sync for UpdateIndexingConfigurationInput
impl Unpin for UpdateIndexingConfigurationInput
impl UnwindSafe for UpdateIndexingConfigurationInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more