Struct aws_sdk_eks::types::builders::NodegroupResourcesBuilder
source · #[non_exhaustive]pub struct NodegroupResourcesBuilder { /* private fields */ }
Expand description
A builder for NodegroupResources
.
Implementations§
source§impl NodegroupResourcesBuilder
impl NodegroupResourcesBuilder
sourcepub fn auto_scaling_groups(self, input: AutoScalingGroup) -> Self
pub fn auto_scaling_groups(self, input: AutoScalingGroup) -> Self
Appends an item to auto_scaling_groups
.
To override the contents of this collection use set_auto_scaling_groups
.
The Auto Scaling groups associated with the node group.
sourcepub fn set_auto_scaling_groups(
self,
input: Option<Vec<AutoScalingGroup>>
) -> Self
pub fn set_auto_scaling_groups( self, input: Option<Vec<AutoScalingGroup>> ) -> Self
The Auto Scaling groups associated with the node group.
sourcepub fn get_auto_scaling_groups(&self) -> &Option<Vec<AutoScalingGroup>>
pub fn get_auto_scaling_groups(&self) -> &Option<Vec<AutoScalingGroup>>
The Auto Scaling groups associated with the node group.
sourcepub fn remote_access_security_group(self, input: impl Into<String>) -> Self
pub fn remote_access_security_group(self, input: impl Into<String>) -> Self
The remote access security group associated with the node group. This security group controls SSH access to the nodes.
sourcepub fn set_remote_access_security_group(self, input: Option<String>) -> Self
pub fn set_remote_access_security_group(self, input: Option<String>) -> Self
The remote access security group associated with the node group. This security group controls SSH access to the nodes.
sourcepub fn get_remote_access_security_group(&self) -> &Option<String>
pub fn get_remote_access_security_group(&self) -> &Option<String>
The remote access security group associated with the node group. This security group controls SSH access to the nodes.
sourcepub fn build(self) -> NodegroupResources
pub fn build(self) -> NodegroupResources
Consumes the builder and constructs a NodegroupResources
.
Trait Implementations§
source§impl Clone for NodegroupResourcesBuilder
impl Clone for NodegroupResourcesBuilder
source§fn clone(&self) -> NodegroupResourcesBuilder
fn clone(&self) -> NodegroupResourcesBuilder
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 Debug for NodegroupResourcesBuilder
impl Debug for NodegroupResourcesBuilder
source§impl Default for NodegroupResourcesBuilder
impl Default for NodegroupResourcesBuilder
source§fn default() -> NodegroupResourcesBuilder
fn default() -> NodegroupResourcesBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for NodegroupResourcesBuilder
impl PartialEq for NodegroupResourcesBuilder
source§fn eq(&self, other: &NodegroupResourcesBuilder) -> bool
fn eq(&self, other: &NodegroupResourcesBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for NodegroupResourcesBuilder
Auto Trait Implementations§
impl RefUnwindSafe for NodegroupResourcesBuilder
impl Send for NodegroupResourcesBuilder
impl Sync for NodegroupResourcesBuilder
impl Unpin for NodegroupResourcesBuilder
impl UnwindSafe for NodegroupResourcesBuilder
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