#[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 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 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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for RecommendationJobVpcConfigBuilder
impl Default for RecommendationJobVpcConfigBuilder
source§fn default() -> RecommendationJobVpcConfigBuilder
fn default() -> RecommendationJobVpcConfigBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<RecommendationJobVpcConfigBuilder> for RecommendationJobVpcConfigBuilder
impl PartialEq<RecommendationJobVpcConfigBuilder> for RecommendationJobVpcConfigBuilder
source§fn eq(&self, other: &RecommendationJobVpcConfigBuilder) -> bool
fn eq(&self, other: &RecommendationJobVpcConfigBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RecommendationJobVpcConfigBuilder
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more