#[non_exhaustive]pub struct AwsOpenSearchServiceDomainVpcOptionsDetails {
pub security_group_ids: Option<Vec<String>>,
pub subnet_ids: Option<Vec<String>>,
}
Expand description
Contains information that OpenSearch Service derives based on the VPCOptions
for the domain.
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.security_group_ids: Option<Vec<String>>
The list of security group IDs that are associated with the VPC endpoints for the domain.
subnet_ids: Option<Vec<String>>
A list of subnet IDs that are associated with the VPC endpoints for the domain.
Implementations§
source§impl AwsOpenSearchServiceDomainVpcOptionsDetails
impl AwsOpenSearchServiceDomainVpcOptionsDetails
sourcepub fn security_group_ids(&self) -> &[String]
pub fn security_group_ids(&self) -> &[String]
The list of security group IDs that are associated with the VPC endpoints for the domain.
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 subnet_ids(&self) -> &[String]
pub fn subnet_ids(&self) -> &[String]
A list of subnet IDs that are associated with the VPC endpoints for the domain.
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()
.
source§impl AwsOpenSearchServiceDomainVpcOptionsDetails
impl AwsOpenSearchServiceDomainVpcOptionsDetails
sourcepub fn builder() -> AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
pub fn builder() -> AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
Creates a new builder-style object to manufacture AwsOpenSearchServiceDomainVpcOptionsDetails
.
Trait Implementations§
source§impl Clone for AwsOpenSearchServiceDomainVpcOptionsDetails
impl Clone for AwsOpenSearchServiceDomainVpcOptionsDetails
source§fn clone(&self) -> AwsOpenSearchServiceDomainVpcOptionsDetails
fn clone(&self) -> AwsOpenSearchServiceDomainVpcOptionsDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for AwsOpenSearchServiceDomainVpcOptionsDetails
impl PartialEq for AwsOpenSearchServiceDomainVpcOptionsDetails
source§fn eq(&self, other: &AwsOpenSearchServiceDomainVpcOptionsDetails) -> bool
fn eq(&self, other: &AwsOpenSearchServiceDomainVpcOptionsDetails) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsOpenSearchServiceDomainVpcOptionsDetails
Auto Trait Implementations§
impl Freeze for AwsOpenSearchServiceDomainVpcOptionsDetails
impl RefUnwindSafe for AwsOpenSearchServiceDomainVpcOptionsDetails
impl Send for AwsOpenSearchServiceDomainVpcOptionsDetails
impl Sync for AwsOpenSearchServiceDomainVpcOptionsDetails
impl Unpin for AwsOpenSearchServiceDomainVpcOptionsDetails
impl UnwindSafe for AwsOpenSearchServiceDomainVpcOptionsDetails
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