[][src]Struct rusoto_eks::Addon

pub struct Addon {
    pub addon_arn: Option<String>,
    pub addon_name: Option<String>,
    pub addon_version: Option<String>,
    pub cluster_name: Option<String>,
    pub created_at: Option<f64>,
    pub health: Option<AddonHealth>,
    pub modified_at: Option<f64>,
    pub service_account_role_arn: Option<String>,
    pub status: Option<String>,
    pub tags: Option<HashMap<String, String>>,
}

An Amazon EKS add-on.

Fields

addon_arn: Option<String>

The Amazon Resource Name (ARN) of the add-on.

addon_name: Option<String>

The name of the add-on.

addon_version: Option<String>

The version of the add-on.

cluster_name: Option<String>

The name of the cluster.

created_at: Option<f64>

The date and time that the add-on was created.

health: Option<AddonHealth>

An object that represents the health of the add-on.

modified_at: Option<f64>

The date and time that the add-on was last modified.

service_account_role_arn: Option<String>

The Amazon Resource Name (ARN) of the IAM role that is bound to the Kubernetes service account used by the add-on.

status: Option<String>

The status of the add-on.

tags: Option<HashMap<String, String>>

The metadata that you apply to the cluster to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Cluster tags do not propagate to any other resources associated with the cluster.

Trait Implementations

impl Clone for Addon[src]

impl Debug for Addon[src]

impl Default for Addon[src]

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

impl PartialEq<Addon> for Addon[src]

impl StructuralPartialEq for Addon[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, 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.