Enum rusoto_codecommit::TestRepositoryTriggersError [] [src]

pub enum TestRepositoryTriggersError {
    EncryptionIntegrityChecksFailed(String),
    EncryptionKeyAccessDenied(String),
    EncryptionKeyDisabled(String),
    EncryptionKeyNotFound(String),
    EncryptionKeyUnavailable(String),
    InvalidRepositoryName(String),
    InvalidRepositoryTriggerBranchName(String),
    InvalidRepositoryTriggerCustomData(String),
    InvalidRepositoryTriggerDestinationArn(String),
    InvalidRepositoryTriggerEvents(String),
    InvalidRepositoryTriggerName(String),
    InvalidRepositoryTriggerRegion(String),
    MaximumBranchesExceeded(String),
    MaximumRepositoryTriggersExceeded(String),
    RepositoryDoesNotExist(String),
    RepositoryNameRequired(String),
    RepositoryTriggerBranchNameListRequired(String),
    RepositoryTriggerDestinationArnRequired(String),
    RepositoryTriggerEventsListRequired(String),
    RepositoryTriggerNameRequired(String),
    RepositoryTriggersListRequired(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by TestRepositoryTriggers

Variants

An encryption integrity check failed.

An encryption key could not be accessed.

The encryption key is disabled.

No encryption key was found.

The encryption key is not available.

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

One or more branch names specified for the trigger is not valid.

The custom data provided for the trigger is not valid.

The Amazon Resource Name (ARN) for the trigger is not valid for the specified destination. The most common reason for this error is that the ARN does not meet the requirements for the service type.

One or more events specified for the trigger is not valid. Check to make sure that all events specified match the requirements for allowed events.

The name of the trigger is not valid.

The region for the trigger target does not match the region for the repository. Triggers must be created in the same region as the target for the trigger.

The number of branches for the trigger was exceeded.

The number of triggers allowed for the repository was exceeded.

The specified repository does not exist.

A repository name is required but was not specified.

At least one branch name is required but was not specified in the trigger configuration.

A destination ARN for the target service for the trigger is required but was not specified.

At least one event for the trigger is required but was not specified.

A name for the trigger is required but was not specified.

The list of triggers for the repository is required but was not specified.

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

Trait Implementations

impl Debug for TestRepositoryTriggersError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for TestRepositoryTriggersError
[src]

[src]

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

[src]

This method tests for !=.

impl From<Error> for TestRepositoryTriggersError
[src]

[src]

Performs the conversion.

impl From<CredentialsError> for TestRepositoryTriggersError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for TestRepositoryTriggersError
[src]

[src]

Performs the conversion.

impl From<Error> for TestRepositoryTriggersError
[src]

[src]

Performs the conversion.

impl Display for TestRepositoryTriggersError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for TestRepositoryTriggersError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

Auto Trait Implementations