#[non_exhaustive]
pub enum StartLoggingErrorKind {
    InsufficientDependencyServiceAccessPermissionException(InsufficientDependencyServiceAccessPermissionException),
    InvalidHomeRegionException(InvalidHomeRegionException),
    InvalidTrailNameException(InvalidTrailNameException),
    NotOrganizationMasterAccountException(NotOrganizationMasterAccountException),
    OperationNotPermittedException(OperationNotPermittedException),
    TrailNotFoundException(TrailNotFoundException),
    UnsupportedOperationException(UnsupportedOperationException),
    Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description

Types of errors that can occur for the StartLogging operation.

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

InsufficientDependencyServiceAccessPermissionException(InsufficientDependencyServiceAccessPermissionException)

This exception is thrown when the IAM user or role that is used to create the organization trail is lacking one or more required permissions for creating an organization trail in a required service. For more information, see Prepare For Creating a Trail For Your Organization.

InvalidHomeRegionException(InvalidHomeRegionException)

This exception is thrown when an operation is called on a trail from a region other than the region in which the trail was created.

InvalidTrailNameException(InvalidTrailNameException)

This exception is thrown when the provided trail name is not valid. Trail names must meet the following requirements:

  • Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-)

  • Start with a letter or number, and end with a letter or number

  • Be between 3 and 128 characters

  • Have no adjacent periods, underscores or dashes. Names like my-_namespace and my--namespace are not valid.

  • Not be in IP address format (for example, 192.168.5.4)

NotOrganizationMasterAccountException(NotOrganizationMasterAccountException)

This exception is thrown when the Amazon Web Services account making the request to create or update an organization trail is not the management account for an organization in Organizations. For more information, see Prepare For Creating a Trail For Your Organization.

OperationNotPermittedException(OperationNotPermittedException)

This exception is thrown when the requested operation is not permitted.

TrailNotFoundException(TrailNotFoundException)

This exception is thrown when the trail with the given name is not found.

UnsupportedOperationException(UnsupportedOperationException)

This exception is thrown when the requested operation is not supported.

Unhandled(Box<dyn Error + Send + Sync + 'static>)

An unexpected error, e.g. invalid JSON returned by the service or an unknown error code

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more