[][src]Struct rusoto_eks::Nodegroup

pub struct Nodegroup {
    pub ami_type: Option<String>,
    pub cluster_name: Option<String>,
    pub created_at: Option<f64>,
    pub disk_size: Option<i64>,
    pub health: Option<NodegroupHealth>,
    pub instance_types: Option<Vec<String>>,
    pub labels: Option<HashMap<String, String>>,
    pub modified_at: Option<f64>,
    pub node_role: Option<String>,
    pub nodegroup_arn: Option<String>,
    pub nodegroup_name: Option<String>,
    pub release_version: Option<String>,
    pub remote_access: Option<RemoteAccessConfig>,
    pub resources: Option<NodegroupResources>,
    pub scaling_config: Option<NodegroupScalingConfig>,
    pub status: Option<String>,
    pub subnets: Option<Vec<String>>,
    pub tags: Option<HashMap<String, String>>,
    pub version: Option<String>,
}

An object representing an Amazon EKS managed node group.

Fields

ami_type: Option<String>

The AMI type associated with your node group. GPU instance types should use the AL2_x86_64_GPU AMI type, which uses the Amazon EKS-optimized Linux AMI with GPU support. Non-GPU instances should use the AL2_x86_64 AMI type, which uses the Amazon EKS-optimized Linux AMI.

cluster_name: Option<String>

The name of the cluster that the managed node group resides in.

created_at: Option<f64>

The Unix epoch timestamp in seconds for when the managed node group was created.

disk_size: Option<i64>

The root device disk size (in GiB) for your node group instances. The default disk size is 20 GiB.

health: Option<NodegroupHealth>

The health status of the node group. If there are issues with your node group's health, they are listed here.

instance_types: Option<Vec<String>>

The instance types associated with your node group.

labels: Option<HashMap<String, String>>

The Kubernetes labels applied to the nodes in the node group.

Only labels that are applied with the Amazon EKS API are shown here. There may be other Kubernetes labels applied to the nodes in this group.

modified_at: Option<f64>

The Unix epoch timestamp in seconds for when the managed node group was last modified.

node_role: Option<String>

The IAM role associated with your node group. The Amazon EKS worker node kubelet daemon makes calls to AWS APIs on your behalf. Worker nodes receive permissions for these API calls through an IAM instance profile and associated policies. Before you can launch worker nodes and register them into a cluster, you must create an IAM role for those worker nodes to use when they are launched. For more information, see Amazon EKS Worker Node IAM Role in the Amazon EKS User Guide .

nodegroup_arn: Option<String>

The Amazon Resource Name (ARN) associated with the managed node group.

nodegroup_name: Option<String>

The name associated with an Amazon EKS managed node group.

release_version: Option<String>

The AMI version of the managed node group. For more information, see Amazon EKS-Optimized Linux AMI Versions in the Amazon EKS User Guide.

remote_access: Option<RemoteAccessConfig>

The remote access (SSH) configuration that is associated with the node group.

resources: Option<NodegroupResources>

The resources associated with the node group, such as Auto Scaling groups and security groups for remote access.

scaling_config: Option<NodegroupScalingConfig>

The scaling configuration details for the Auto Scaling group that is associated with your node group.

status: Option<String>

The current status of the managed node group.

subnets: Option<Vec<String>>

The subnets allowed for the Auto Scaling group that is associated with your node group. These subnets must have the following tag: kubernetes.io/cluster/CLUSTER_NAME, where CLUSTER_NAME is replaced with the name of your cluster.

tags: Option<HashMap<String, String>>

The metadata applied to the node group to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Node group tags do not propagate to any other resources associated with the node group, such as the Amazon EC2 instances or subnets.

version: Option<String>

The Kubernetes version of the managed node group.

Trait Implementations

impl Clone for Nodegroup[src]

impl Debug for Nodegroup[src]

impl Default for Nodegroup[src]

impl<'de> Deserialize<'de> for Nodegroup[src]

impl PartialEq<Nodegroup> for Nodegroup[src]

impl StructuralPartialEq for Nodegroup[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.