Struct aws_sdk_securityhub::types::builders::AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
source · #[non_exhaustive]pub struct AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder { /* private fields */ }
Expand description
A builder for AwsOpenSearchServiceDomainVpcOptionsDetails
.
Implementations§
source§impl AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
impl AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
sourcepub fn security_group_ids(self, input: impl Into<String>) -> Self
pub fn security_group_ids(self, input: impl Into<String>) -> Self
Appends an item to security_group_ids
.
To override the contents of this collection use set_security_group_ids
.
The list of security group IDs that are associated with the VPC endpoints for the domain.
sourcepub fn set_security_group_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_security_group_ids(self, input: Option<Vec<String>>) -> Self
The list of security group IDs that are associated with the VPC endpoints for the domain.
sourcepub fn get_security_group_ids(&self) -> &Option<Vec<String>>
pub fn get_security_group_ids(&self) -> &Option<Vec<String>>
The list of security group IDs that are associated with the VPC endpoints for the domain.
sourcepub fn subnet_ids(self, input: impl Into<String>) -> Self
pub fn subnet_ids(self, input: impl Into<String>) -> Self
Appends an item to subnet_ids
.
To override the contents of this collection use set_subnet_ids
.
A list of subnet IDs that are associated with the VPC endpoints for the domain.
sourcepub fn set_subnet_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_subnet_ids(self, input: Option<Vec<String>>) -> Self
A list of subnet IDs that are associated with the VPC endpoints for the domain.
sourcepub fn get_subnet_ids(&self) -> &Option<Vec<String>>
pub fn get_subnet_ids(&self) -> &Option<Vec<String>>
A list of subnet IDs that are associated with the VPC endpoints for the domain.
sourcepub fn build(self) -> AwsOpenSearchServiceDomainVpcOptionsDetails
pub fn build(self) -> AwsOpenSearchServiceDomainVpcOptionsDetails
Consumes the builder and constructs a AwsOpenSearchServiceDomainVpcOptionsDetails
.
Trait Implementations§
source§impl Clone for AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
impl Clone for AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
source§fn clone(&self) -> AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
fn clone(&self) -> AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
impl Default for AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
source§fn default() -> AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
fn default() -> AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
source§impl PartialEq for AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
impl PartialEq for AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
source§fn eq(&self, other: &AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder) -> bool
fn eq(&self, other: &AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
Auto Trait Implementations§
impl Freeze for AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
impl RefUnwindSafe for AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
impl Send for AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
impl Sync for AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
impl Unpin for AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
impl UnwindSafe for AwsOpenSearchServiceDomainVpcOptionsDetailsBuilder
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