#[non_exhaustive]pub struct VpcEndpointDetail { /* private fields */ }
Expand description
Details about an OpenSearch Serverless-managed interface endpoint.
Implementations§
source§impl VpcEndpointDetail
impl VpcEndpointDetail
sourcepub fn vpc_id(&self) -> Option<&str>
pub fn vpc_id(&self) -> Option<&str>
The ID of the VPC from which you access OpenSearch Serverless.
sourcepub fn subnet_ids(&self) -> Option<&[String]>
pub fn subnet_ids(&self) -> Option<&[String]>
The ID of the subnets from which you access OpenSearch Serverless.
sourcepub fn security_group_ids(&self) -> Option<&[String]>
pub fn security_group_ids(&self) -> Option<&[String]>
The unique identifiers of the security groups that define the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.
sourcepub fn status(&self) -> Option<&VpcEndpointStatus>
pub fn status(&self) -> Option<&VpcEndpointStatus>
The current status of the endpoint.
sourcepub fn created_date(&self) -> Option<i64>
pub fn created_date(&self) -> Option<i64>
The date the endpoint was created.
source§impl VpcEndpointDetail
impl VpcEndpointDetail
sourcepub fn builder() -> VpcEndpointDetailBuilder
pub fn builder() -> VpcEndpointDetailBuilder
Creates a new builder-style object to manufacture VpcEndpointDetail
.
Trait Implementations§
source§impl Clone for VpcEndpointDetail
impl Clone for VpcEndpointDetail
source§fn clone(&self) -> VpcEndpointDetail
fn clone(&self) -> VpcEndpointDetail
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 VpcEndpointDetail
impl Debug for VpcEndpointDetail
source§impl PartialEq<VpcEndpointDetail> for VpcEndpointDetail
impl PartialEq<VpcEndpointDetail> for VpcEndpointDetail
source§fn eq(&self, other: &VpcEndpointDetail) -> bool
fn eq(&self, other: &VpcEndpointDetail) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VpcEndpointDetail
Auto Trait Implementations§
impl RefUnwindSafe for VpcEndpointDetail
impl Send for VpcEndpointDetail
impl Sync for VpcEndpointDetail
impl Unpin for VpcEndpointDetail
impl UnwindSafe for VpcEndpointDetail
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