Enum rusoto_efs::CreateMountTargetError[][src]

pub enum CreateMountTargetError {
    BadRequest(String),
    FileSystemNotFound(String),
    IncorrectFileSystemLifeCycleState(String),
    InternalServerError(String),
    IpAddressInUse(String),
    MountTargetConflict(String),
    NetworkInterfaceLimitExceeded(String),
    NoFreeAddressesInSubnet(String),
    SecurityGroupLimitExceeded(String),
    SecurityGroupNotFound(String),
    SubnetNotFound(String),
    UnsupportedAvailabilityZone(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateMountTarget

Variants

Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.

Returned if the specified FileSystemId does not exist in the requester's AWS account.

Returned if the file system's life cycle state is not "created".

Returned if an error occurred on the server side.

Returned if the request specified an IpAddress that is already in use in the subnet.

Returned if the mount target would violate one of the specified restrictions based on the file system's existing mount targets.

The calling account has reached the ENI limit for the specific AWS region. Client should try to delete some ENIs or get its account limit raised. For more information, see Amazon VPC Limits in the Amazon Virtual Private Cloud User Guide (see the Network interfaces per VPC entry in the table).

Returned if IpAddress was not specified in the request and there are no free IP addresses in the subnet.

Returned if the size of SecurityGroups specified in the request is greater than five.

Returned if one of the specified security groups does not exist in the subnet's VPC.

Returned if there is no subnet with ID SubnetId provided in the request.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl CreateMountTargetError
[src]

Trait Implementations

impl Debug for CreateMountTargetError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for CreateMountTargetError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<Error> for CreateMountTargetError
[src]

Performs the conversion.

impl From<CredentialsError> for CreateMountTargetError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateMountTargetError
[src]

Performs the conversion.

impl From<Error> for CreateMountTargetError
[src]

Performs the conversion.

impl Display for CreateMountTargetError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateMountTargetError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations