Enum rusoto_elb::CreateLoadBalancerError[][src]

pub enum CreateLoadBalancerError {
    CertificateNotFound(String),
    DuplicateAccessPointName(String),
    DuplicateTagKeys(String),
    InvalidConfigurationRequest(String),
    InvalidScheme(String),
    InvalidSecurityGroup(String),
    InvalidSubnet(String),
    OperationNotPermitted(String),
    SubnetNotFound(String),
    TooManyAccessPoints(String),
    TooManyTags(String),
    UnsupportedProtocol(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateLoadBalancer

Variants

The specified ARN does not refer to a valid SSL certificate in AWS Identity and Access Management (IAM) or AWS Certificate Manager (ACM). Note that if you recently uploaded the certificate to IAM, this error might indicate that the certificate is not fully available yet.

The specified load balancer name already exists for this account.

A tag key was specified more than once.

The requested configuration change is not valid.

The specified value for the schema is not valid. You can only specify a scheme for load balancers in a VPC.

One or more of the specified security groups do not exist.

The specified VPC has no associated Internet gateway.

This operation is not allowed.

One or more of the specified subnets do not exist.

The quota for the number of load balancers has been reached.

The quota for the number of tags that can be assigned to a load balancer has been reached.

The specified protocol or signature version is not supported.

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 CreateLoadBalancerError
[src]

Trait Implementations

impl Debug for CreateLoadBalancerError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for CreateLoadBalancerError
[src]

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

This method tests for !=.

impl From<XmlParseError> for CreateLoadBalancerError
[src]

Performs the conversion.

impl From<CredentialsError> for CreateLoadBalancerError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateLoadBalancerError
[src]

Performs the conversion.

impl From<Error> for CreateLoadBalancerError
[src]

Performs the conversion.

impl Display for CreateLoadBalancerError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateLoadBalancerError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations