Enum rusoto_route53::CreateQueryLoggingConfigError[][src]

pub enum CreateQueryLoggingConfigError {
    ConcurrentModification(String),
    InsufficientCloudWatchLogsResourcePolicy(String),
    InvalidInput(String),
    NoSuchCloudWatchLogsLogGroup(String),
    NoSuchHostedZone(String),
    QueryLoggingConfigAlreadyExists(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateQueryLoggingConfig

Variants

Another user submitted a request to create, update, or delete the object at the same time that you did. Retry the request.

Amazon Route 53 doesn't have the permissions required to create log streams and send query logs to log streams. Possible causes include the following:

  • There is no resource policy that specifies the log group ARN in the value for Resource.

  • The resource policy that includes the log group ARN in the value for Resource doesn't have the necessary permissions.

  • The resource policy hasn't finished propagating yet.

The input is not valid.

There is no CloudWatch Logs log group with the specified ARN.

No hosted zone exists with the ID that you specified.

You can create only one query logging configuration for a hosted zone, and a query logging configuration already exists for this hosted zone.

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

Trait Implementations

impl Debug for CreateQueryLoggingConfigError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for CreateQueryLoggingConfigError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateQueryLoggingConfigError
[src]

Performs the conversion.

impl From<Error> for CreateQueryLoggingConfigError
[src]

Performs the conversion.

impl Display for CreateQueryLoggingConfigError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateQueryLoggingConfigError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations