[][src]Struct rusoto_eks::ErrorDetail

pub struct ErrorDetail {
    pub error_code: Option<String>,
    pub error_message: Option<String>,
    pub resource_ids: Option<Vec<String>>,
}

An object representing an error when an asynchronous operation fails.

Fields

error_code: Option<String>

A brief description of the error.

  • SubnetNotFound: We couldn't find one of the subnets associated with the cluster.

  • SecurityGroupNotFound: We couldn't find one of the security groups associated with the cluster.

  • EniLimitReached: You have reached the elastic network interface limit for your account.

  • IpNotAvailable: A subnet associated with the cluster doesn't have any free IP addresses.

  • AccessDenied: You don't have permissions to perform the specified operation.

  • OperationNotPermitted: The service role associated with the cluster doesn't have the required access permissions for Amazon EKS.

  • VpcIdNotFound: We couldn't find the VPC associated with the cluster.

error_message: Option<String>

A more complete description of the error.

resource_ids: Option<Vec<String>>

An optional field that contains the resource IDs associated with the error.

Trait Implementations

impl Clone for ErrorDetail[src]

impl Debug for ErrorDetail[src]

impl Default for ErrorDetail[src]

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

impl PartialEq<ErrorDetail> for ErrorDetail[src]

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