pub struct DescribeIndexResponse {
pub index_name: Option<String>,
pub index_status: Option<String>,
pub schema: Option<String>,
}Fields§
§index_name: Option<String>The index name.
index_status: Option<String>The index status.
schema: Option<String>Contains a value that specifies the type of indexing performed. Valid values are:
-
REGISTRY – Your thing index contains only registry data.
-
REGISTRYANDSHADOW - Your thing index contains registry data and shadow data.
-
REGISTRYANDCONNECTIVITYSTATUS - Your thing index contains registry data and thing connectivity status data.
-
REGISTRYANDSHADOWANDCONNECTIVITYSTATUS - Your thing index contains registry data, shadow data, and thing connectivity status data.
Trait Implementations§
Source§impl Clone for DescribeIndexResponse
impl Clone for DescribeIndexResponse
Source§fn clone(&self) -> DescribeIndexResponse
fn clone(&self) -> DescribeIndexResponse
Returns a duplicate 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 Debug for DescribeIndexResponse
impl Debug for DescribeIndexResponse
Source§impl Default for DescribeIndexResponse
impl Default for DescribeIndexResponse
Source§fn default() -> DescribeIndexResponse
fn default() -> DescribeIndexResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeIndexResponse
impl<'de> Deserialize<'de> for DescribeIndexResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeIndexResponse
impl PartialEq for DescribeIndexResponse
impl StructuralPartialEq for DescribeIndexResponse
Auto Trait Implementations§
impl Freeze for DescribeIndexResponse
impl RefUnwindSafe for DescribeIndexResponse
impl Send for DescribeIndexResponse
impl Sync for DescribeIndexResponse
impl Unpin for DescribeIndexResponse
impl UnwindSafe for DescribeIndexResponse
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