#[non_exhaustive]pub struct UpdateVpcEndpointDetail {
pub id: Option<String>,
pub name: Option<String>,
pub status: Option<VpcEndpointStatus>,
pub subnet_ids: Option<Vec<String>>,
pub security_group_ids: Option<Vec<String>>,
pub last_modified_date: Option<i64>,
}
Expand description
Update details for an OpenSearch Serverless-managed interface endpoint.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: Option<String>
The unique identifier of the endpoint.
name: Option<String>
The name of the endpoint.
status: Option<VpcEndpointStatus>
The current status of the endpoint update process.
subnet_ids: Option<Vec<String>>
The ID of the subnets from which you access OpenSearch Serverless.
security_group_ids: Option<Vec<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.
last_modified_date: Option<i64>
The timestamp of when the endpoint was last modified.
Implementations§
source§impl UpdateVpcEndpointDetail
impl UpdateVpcEndpointDetail
sourcepub fn status(&self) -> Option<&VpcEndpointStatus>
pub fn status(&self) -> Option<&VpcEndpointStatus>
The current status of the endpoint update process.
sourcepub fn subnet_ids(&self) -> &[String]
pub fn subnet_ids(&self) -> &[String]
The ID of the subnets from which you access OpenSearch Serverless.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .subnet_ids.is_none()
.
sourcepub fn security_group_ids(&self) -> &[String]
pub fn security_group_ids(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .security_group_ids.is_none()
.
sourcepub fn last_modified_date(&self) -> Option<i64>
pub fn last_modified_date(&self) -> Option<i64>
The timestamp of when the endpoint was last modified.
source§impl UpdateVpcEndpointDetail
impl UpdateVpcEndpointDetail
sourcepub fn builder() -> UpdateVpcEndpointDetailBuilder
pub fn builder() -> UpdateVpcEndpointDetailBuilder
Creates a new builder-style object to manufacture UpdateVpcEndpointDetail
.
Trait Implementations§
source§impl Clone for UpdateVpcEndpointDetail
impl Clone for UpdateVpcEndpointDetail
source§fn clone(&self) -> UpdateVpcEndpointDetail
fn clone(&self) -> UpdateVpcEndpointDetail
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateVpcEndpointDetail
impl Debug for UpdateVpcEndpointDetail
source§impl PartialEq for UpdateVpcEndpointDetail
impl PartialEq for UpdateVpcEndpointDetail
source§fn eq(&self, other: &UpdateVpcEndpointDetail) -> bool
fn eq(&self, other: &UpdateVpcEndpointDetail) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateVpcEndpointDetail
Auto Trait Implementations§
impl Freeze for UpdateVpcEndpointDetail
impl RefUnwindSafe for UpdateVpcEndpointDetail
impl Send for UpdateVpcEndpointDetail
impl Sync for UpdateVpcEndpointDetail
impl Unpin for UpdateVpcEndpointDetail
impl UnwindSafe for UpdateVpcEndpointDetail
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more