Enum rusoto_codestar::CreateProjectError[][src]

pub enum CreateProjectError {
    ConcurrentModification(String),
    InvalidServiceRole(String),
    LimitExceeded(String),
    ProjectAlreadyExists(String),
    ProjectConfiguration(String),
    ProjectCreationFailed(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateProject

Variants

Another modification is being made. That modification must complete before you can make your change.

The service role is not valid.

A resource limit has been exceeded.

An AWS CodeStar project with the same ID already exists in this region for the AWS account. AWS CodeStar project IDs must be unique within a region for the AWS account.

Project configuration information is required but not specified.

The project creation request was valid, but a nonspecific exception or error occurred during project creation. The project could not be created in AWS CodeStar.

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

Trait Implementations

impl Debug for CreateProjectError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for CreateProjectError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateProjectError
[src]

Performs the conversion.

impl From<Error> for CreateProjectError
[src]

Performs the conversion.

impl Display for CreateProjectError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateProjectError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations