#[non_exhaustive]pub struct CollectionDetail { /* private fields */ }
Expand description
Details about each OpenSearch Serverless collection, including the collection endpoint and the OpenSearch Dashboards endpoint.
Implementations§
source§impl CollectionDetail
impl CollectionDetail
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 type of collection.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the collection.
sourcepub fn kms_key_arn(&self) -> Option<&str>
pub fn kms_key_arn(&self) -> Option<&str>
The ARN of the Amazon Web Services KMS key used to encrypt the collection.
sourcepub fn created_date(&self) -> Option<i64>
pub fn created_date(&self) -> Option<i64>
The Epoch 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.
sourcepub fn collection_endpoint(&self) -> Option<&str>
pub fn collection_endpoint(&self) -> Option<&str>
Collection-specific endpoint used to submit index, search, and data upload requests to an OpenSearch Serverless collection.
sourcepub fn dashboard_endpoint(&self) -> Option<&str>
pub fn dashboard_endpoint(&self) -> Option<&str>
Collection-specific endpoint used to access OpenSearch Dashboards.
source§impl CollectionDetail
impl CollectionDetail
sourcepub fn builder() -> CollectionDetailBuilder
pub fn builder() -> CollectionDetailBuilder
Creates a new builder-style object to manufacture CollectionDetail
.
Trait Implementations§
source§impl Clone for CollectionDetail
impl Clone for CollectionDetail
source§fn clone(&self) -> CollectionDetail
fn clone(&self) -> CollectionDetail
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 CollectionDetail
impl Debug for CollectionDetail
source§impl PartialEq<CollectionDetail> for CollectionDetail
impl PartialEq<CollectionDetail> for CollectionDetail
source§fn eq(&self, other: &CollectionDetail) -> bool
fn eq(&self, other: &CollectionDetail) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.