#[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 ==
.