#[non_exhaustive]pub enum StartLoggingError {
CloudTrailArnInvalidException(CloudTrailArnInvalidException),
ConflictException(ConflictException),
InsufficientDependencyServiceAccessPermissionException(InsufficientDependencyServiceAccessPermissionException),
InvalidHomeRegionException(InvalidHomeRegionException),
InvalidTrailNameException(InvalidTrailNameException),
NoManagementAccountSlrExistsException(NoManagementAccountSlrExistsException),
NotOrganizationMasterAccountException(NotOrganizationMasterAccountException),
OperationNotPermittedException(OperationNotPermittedException),
ThrottlingException(ThrottlingException),
TrailNotFoundException(TrailNotFoundException),
UnsupportedOperationException(UnsupportedOperationException),
Unhandled(Unhandled),
}Expand description
Error type for the StartLoggingError operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
CloudTrailArnInvalidException(CloudTrailArnInvalidException)
This exception is thrown when an operation is called with a trail ARN that is not valid. The following is the format of a trail ARN.
arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail
This exception is also thrown when you call AddTags or RemoveTags on a trail, event data store, or channel with a resource ARN that is not valid.
The following is the format of an event data store ARN: arn:aws:cloudtrail:us-east-2:123456789012:eventdatastore/EXAMPLE-f852-4e8f-8bd1-bcf6cEXAMPLE
The following is the format of a channel ARN: arn:aws:cloudtrail:us-east-2:123456789012:channel/01234567890
ConflictException(ConflictException)
This exception is thrown when the specified resource is not ready for an operation. This can occur when you try to run an operation on a resource before CloudTrail has time to fully load the resource, or because another operation is modifying the resource. If this exception occurs, wait a few minutes, and then try the operation again.
InsufficientDependencyServiceAccessPermissionException(InsufficientDependencyServiceAccessPermissionException)
This exception is thrown when the IAM identity that is used to create the organization resource lacks one or more required permissions for creating an organization resource in a required service.
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-_namespaceandmy--namespaceare not valid. -
Not be in IP address format (for example, 192.168.5.4)
NoManagementAccountSlrExistsException(NoManagementAccountSlrExistsException)
This exception is thrown when the management account does not have a service-linked role.
NotOrganizationMasterAccountException(NotOrganizationMasterAccountException)
This exception is thrown when the Amazon Web Services account making the request to create or update an organization trail or event data store is not the management account for an organization in Organizations. For more information, see Prepare For Creating a Trail For Your Organization or Create an event data store.
OperationNotPermittedException(OperationNotPermittedException)
This exception is thrown when the requested operation is not permitted.
ThrottlingException(ThrottlingException)
This exception is thrown when the request rate exceeds the limit.
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(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl StartLoggingError
impl StartLoggingError
sourcepub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
pub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
Creates the StartLoggingError::Unhandled variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the StartLoggingError::Unhandled variant from a ::aws_smithy_types::error::ErrorMetadata.
sourcepub fn meta(&self) -> &ErrorMetadata
pub fn meta(&self) -> &ErrorMetadata
Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
sourcepub fn is_cloud_trail_arn_invalid_exception(&self) -> bool
pub fn is_cloud_trail_arn_invalid_exception(&self) -> bool
Returns true if the error kind is StartLoggingError::CloudTrailArnInvalidException.
sourcepub fn is_conflict_exception(&self) -> bool
pub fn is_conflict_exception(&self) -> bool
Returns true if the error kind is StartLoggingError::ConflictException.
sourcepub fn is_insufficient_dependency_service_access_permission_exception(
&self
) -> bool
pub fn is_insufficient_dependency_service_access_permission_exception( &self ) -> bool
Returns true if the error kind is StartLoggingError::InsufficientDependencyServiceAccessPermissionException.
sourcepub fn is_invalid_home_region_exception(&self) -> bool
pub fn is_invalid_home_region_exception(&self) -> bool
Returns true if the error kind is StartLoggingError::InvalidHomeRegionException.
sourcepub fn is_invalid_trail_name_exception(&self) -> bool
pub fn is_invalid_trail_name_exception(&self) -> bool
Returns true if the error kind is StartLoggingError::InvalidTrailNameException.
sourcepub fn is_no_management_account_slr_exists_exception(&self) -> bool
pub fn is_no_management_account_slr_exists_exception(&self) -> bool
Returns true if the error kind is StartLoggingError::NoManagementAccountSlrExistsException.
sourcepub fn is_not_organization_master_account_exception(&self) -> bool
pub fn is_not_organization_master_account_exception(&self) -> bool
Returns true if the error kind is StartLoggingError::NotOrganizationMasterAccountException.
sourcepub fn is_operation_not_permitted_exception(&self) -> bool
pub fn is_operation_not_permitted_exception(&self) -> bool
Returns true if the error kind is StartLoggingError::OperationNotPermittedException.
sourcepub fn is_throttling_exception(&self) -> bool
pub fn is_throttling_exception(&self) -> bool
Returns true if the error kind is StartLoggingError::ThrottlingException.
sourcepub fn is_trail_not_found_exception(&self) -> bool
pub fn is_trail_not_found_exception(&self) -> bool
Returns true if the error kind is StartLoggingError::TrailNotFoundException.
sourcepub fn is_unsupported_operation_exception(&self) -> bool
pub fn is_unsupported_operation_exception(&self) -> bool
Returns true if the error kind is StartLoggingError::UnsupportedOperationException.
Trait Implementations§
source§impl CreateUnhandledError for StartLoggingError
impl CreateUnhandledError for StartLoggingError
source§fn create_unhandled_error(
source: Box<dyn Error + Send + Sync + 'static>,
meta: Option<ErrorMetadata>
) -> Self
fn create_unhandled_error( source: Box<dyn Error + Send + Sync + 'static>, meta: Option<ErrorMetadata> ) -> Self
source and error metadata.source§impl Debug for StartLoggingError
impl Debug for StartLoggingError
source§impl Display for StartLoggingError
impl Display for StartLoggingError
source§impl Error for StartLoggingError
impl Error for StartLoggingError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
source§impl From<StartLoggingError> for Error
impl From<StartLoggingError> for Error
source§fn from(err: StartLoggingError) -> Self
fn from(err: StartLoggingError) -> Self
source§impl ProvideErrorKind for StartLoggingError
impl ProvideErrorKind for StartLoggingError
source§impl ProvideErrorMetadata for StartLoggingError
impl ProvideErrorMetadata for StartLoggingError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for StartLoggingError
impl RequestId for StartLoggingError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.