#[non_exhaustive]pub struct RecommendationJobVpcConfigBuilder { /* private fields */ }
Expand description
A builder for RecommendationJobVpcConfig
.
Implementations§
source§impl RecommendationJobVpcConfigBuilder
impl RecommendationJobVpcConfigBuilder
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 VPC security group IDs. IDs have the form of sg-xxxxxxxx
. Specify the security groups for the VPC that is specified in the Subnets
field.
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 VPC security group IDs. IDs have the form of sg-xxxxxxxx
. Specify the security groups for the VPC that is specified in the Subnets
field.
sourcepub fn get_security_group_ids(&self) -> &Option<Vec<String>>
pub fn get_security_group_ids(&self) -> &Option<Vec<String>>
The VPC security group IDs. IDs have the form of sg-xxxxxxxx
. Specify the security groups for the VPC that is specified in the Subnets
field.
sourcepub fn subnets(self, input: impl Into<String>) -> Self
pub fn subnets(self, input: impl Into<String>) -> Self
Appends an item to subnets
.
To override the contents of this collection use set_subnets
.
The ID of the subnets in the VPC to which you want to connect your model.
sourcepub fn set_subnets(self, input: Option<Vec<String>>) -> Self
pub fn set_subnets(self, input: Option<Vec<String>>) -> Self
The ID of the subnets in the VPC to which you want to connect your model.
sourcepub fn get_subnets(&self) -> &Option<Vec<String>>
pub fn get_subnets(&self) -> &Option<Vec<String>>
The ID of the subnets in the VPC to which you want to connect your model.
sourcepub fn build(self) -> RecommendationJobVpcConfig
pub fn build(self) -> RecommendationJobVpcConfig
Consumes the builder and constructs a RecommendationJobVpcConfig
.
Trait Implementations§
source§impl Clone for RecommendationJobVpcConfigBuilder
impl Clone for RecommendationJobVpcConfigBuilder
source§fn clone(&self) -> RecommendationJobVpcConfigBuilder
fn clone(&self) -> RecommendationJobVpcConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for RecommendationJobVpcConfigBuilder
impl Default for RecommendationJobVpcConfigBuilder
source§fn default() -> RecommendationJobVpcConfigBuilder
fn default() -> RecommendationJobVpcConfigBuilder
source§impl PartialEq for RecommendationJobVpcConfigBuilder
impl PartialEq for RecommendationJobVpcConfigBuilder
source§fn eq(&self, other: &RecommendationJobVpcConfigBuilder) -> bool
fn eq(&self, other: &RecommendationJobVpcConfigBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RecommendationJobVpcConfigBuilder
Auto Trait Implementations§
impl Freeze for RecommendationJobVpcConfigBuilder
impl RefUnwindSafe for RecommendationJobVpcConfigBuilder
impl Send for RecommendationJobVpcConfigBuilder
impl Sync for RecommendationJobVpcConfigBuilder
impl Unpin for RecommendationJobVpcConfigBuilder
impl UnwindSafe for RecommendationJobVpcConfigBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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