[][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 endpoint: Option<String>,
    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 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.

endpoint: Option<String>

The endpoint for your Kubernetes API server.

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.

version: Option<String>

The Kubernetes server version for the cluster.

Trait Implementations

impl PartialEq<Cluster> for Cluster[src]

impl Default for Cluster[src]

impl Clone for Cluster[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Cluster[src]

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

Auto Trait Implementations

impl Send for Cluster

impl Unpin for Cluster

impl Sync for Cluster

impl UnwindSafe for Cluster

impl RefUnwindSafe for Cluster

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T