Enum rusoto_elb::SetLoadBalancerListenerSSLCertificateError[][src]

pub enum SetLoadBalancerListenerSSLCertificateError {
    AccessPointNotFound(String),
    CertificateNotFound(String),
    InvalidConfigurationRequest(String),
    ListenerNotFound(String),
    UnsupportedProtocol(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by SetLoadBalancerListenerSSLCertificate

Variants

The specified load balancer does not exist.

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 requested configuration change is not valid.

The load balancer does not have a listener configured at the specified port.

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

Trait Implementations

impl Debug for SetLoadBalancerListenerSSLCertificateError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for SetLoadBalancerListenerSSLCertificateError
[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 SetLoadBalancerListenerSSLCertificateError
[src]

Performs the conversion.

impl From<CredentialsError> for SetLoadBalancerListenerSSLCertificateError
[src]

Performs the conversion.

impl From<HttpDispatchError> for SetLoadBalancerListenerSSLCertificateError
[src]

impl From<Error> for SetLoadBalancerListenerSSLCertificateError
[src]

Performs the conversion.

impl Display for SetLoadBalancerListenerSSLCertificateError
[src]

Formats the value using the given formatter. Read more

impl Error for SetLoadBalancerListenerSSLCertificateError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations