#[non_exhaustive]pub struct UpdateCollectionDetail { /* private fields */ }
Expand description
Details about an updated OpenSearch Serverless collection.
Implementations§
source§impl UpdateCollectionDetail
impl UpdateCollectionDetail
sourcepub fn status(&self) -> Option<&CollectionStatus>
pub fn status(&self) -> Option<&CollectionStatus>
The current status of the collection.
sourcepub fn type(&self) -> Option<&CollectionType>
pub fn type(&self) -> Option<&CollectionType>
The collection type.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the collection.
sourcepub fn created_date(&self) -> Option<i64>
pub fn created_date(&self) -> Option<i64>
The date and time when the collection was created.
sourcepub fn last_modified_date(&self) -> Option<i64>
pub fn last_modified_date(&self) -> Option<i64>
The date and time when the collection was last modified.
source§impl UpdateCollectionDetail
impl UpdateCollectionDetail
sourcepub fn builder() -> UpdateCollectionDetailBuilder
pub fn builder() -> UpdateCollectionDetailBuilder
Creates a new builder-style object to manufacture UpdateCollectionDetail
.
Trait Implementations§
source§impl Clone for UpdateCollectionDetail
impl Clone for UpdateCollectionDetail
source§fn clone(&self) -> UpdateCollectionDetail
fn clone(&self) -> UpdateCollectionDetail
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 Debug for UpdateCollectionDetail
impl Debug for UpdateCollectionDetail
source§impl PartialEq<UpdateCollectionDetail> for UpdateCollectionDetail
impl PartialEq<UpdateCollectionDetail> for UpdateCollectionDetail
source§fn eq(&self, other: &UpdateCollectionDetail) -> bool
fn eq(&self, other: &UpdateCollectionDetail) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.