Enum rusoto_ssm::UpdateAssociationError[][src]

pub enum UpdateAssociationError {
    AssociationDoesNotExist(String),
    AssociationVersionLimitExceeded(String),
    InternalServerError(String),
    InvalidAssociationVersion(String),
    InvalidDocument(String),
    InvalidDocumentVersion(String),
    InvalidOutputLocation(String),
    InvalidParameters(String),
    InvalidSchedule(String),
    InvalidTarget(String),
    InvalidUpdate(String),
    TooManyUpdates(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by UpdateAssociation

Variants

The specified association does not exist.

You have reached the maximum number versions allowed for an association. Each association has a limit of 1,000 versions.

An error occurred on the server side.

The version you specified is not valid. Use ListAssociationVersions to view all versions of an association according to the association ID. Or, use the $LATEST parameter to view the latest version of the association.

The specified document does not exist.

The document version is not valid or does not exist.

The output location is not valid or does not exist.

You must specify values for all required parameters in the Systems Manager document. You can only supply values to parameters defined in the Systems Manager document.

The schedule is invalid. Verify your cron or rate expression and try again.

The target is not valid or does not exist. It might not be configured for EC2 Systems Manager or you might not have permission to perform the operation.

The update is not valid.

There are concurrent updates for a resource that supports one update at a time.

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

Trait Implementations

impl Debug for UpdateAssociationError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for UpdateAssociationError
[src]

Performs the conversion.

impl From<HttpDispatchError> for UpdateAssociationError
[src]

Performs the conversion.

impl From<Error> for UpdateAssociationError
[src]

Performs the conversion.

impl Display for UpdateAssociationError
[src]

Formats the value using the given formatter. Read more

impl Error for UpdateAssociationError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations