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
impl StructuralPartialEq for NodegroupResourcesBuilder
Auto Trait Implementations§
impl Freeze for NodegroupResourcesBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.