[][src]Struct rusoto_eks::Cluster

pub struct Cluster {
    pub arn: Option<String>,
    pub certificate_authority: Option<Certificate>,
    pub client_request_token: Option<String>,
    pub created_at: Option<f64>,
    pub encryption_config: Option<Vec<EncryptionConfig>>,
    pub endpoint: Option<String>,
    pub identity: Option<Identity>,
    pub logging: Option<Logging>,
    pub name: Option<String>,
    pub platform_version: Option<String>,
    pub resources_vpc_config: Option<VpcConfigResponse>,
    pub role_arn: Option<String>,
    pub status: Option<String>,
    pub tags: Option<HashMap<String, String>>,
    pub version: Option<String>,
}

An object representing an Amazon EKS cluster.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the cluster.

certificate_authority: Option<Certificate>

The certificate-authority-data for your cluster.

client_request_token: Option<String>

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

created_at: Option<f64>

The Unix epoch timestamp in seconds for when the cluster was created.

encryption_config: Option<Vec<EncryptionConfig>>

The encryption configuration for the cluster.

endpoint: Option<String>

The endpoint for your Kubernetes API server.

identity: Option<Identity>

The identity provider information for the cluster.

logging: Option<Logging>

The logging configuration for your cluster.

name: Option<String>

The name of the cluster.

platform_version: Option<String>

The platform version of your Amazon EKS cluster. For more information, see Platform Versions in the Amazon EKS User Guide .

resources_vpc_config: Option<VpcConfigResponse>

The VPC configuration used by the cluster control plane. Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see Cluster VPC Considerations and Cluster Security Group Considerations in the Amazon EKS User Guide.

role_arn: Option<String>

The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf.

status: Option<String>

The current status of the cluster.

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.

version: Option<String>

The Kubernetes server version for the cluster.

Trait Implementations

impl Clone for Cluster[src]

impl Debug for Cluster[src]

impl Default for Cluster[src]

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

impl PartialEq<Cluster> for Cluster[src]

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