[][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: One of the subnets associated with the cluster could not be found.

  • SecurityGroupNotFound: One of the security groups associated with the cluster could not be found.

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

  • IpNotAvailable: A subnet associated with the cluster does not have any free IP addresses.

  • AccessDenied: You do not have permissions to perform the specified operation.

  • OperationNotPermitted: The service role associated with the cluster does not have the required access permissions for Amazon EKS.

  • VpcIdNotFound: The VPC associated with the cluster could not be found.

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 Default for ErrorDetail[src]

impl PartialEq<ErrorDetail> for ErrorDetail[src]

impl Clone for ErrorDetail[src]

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

Performs copy-assignment from source. Read more

impl Debug for ErrorDetail[src]

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

Auto Trait Implementations

impl Send for ErrorDetail

impl Sync for ErrorDetail

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self