Enum aws_sdk_wafv2::Error

source ·
#[non_exhaustive]
pub enum Error {
Show 20 variants WafAssociatedItemException(WafAssociatedItemException), WafConfigurationWarningException(WafConfigurationWarningException), WafDuplicateItemException(WafDuplicateItemException), WafExpiredManagedRuleGroupVersionException(WafExpiredManagedRuleGroupVersionException), WafInternalErrorException(WafInternalErrorException), WafInvalidOperationException(WafInvalidOperationException), WafInvalidParameterException(WafInvalidParameterException), WafInvalidPermissionPolicyException(WafInvalidPermissionPolicyException), WafInvalidResourceException(WafInvalidResourceException), WafLimitsExceededException(WafLimitsExceededException), WafLogDestinationPermissionIssueException(WafLogDestinationPermissionIssueException), WafNonexistentItemException(WafNonexistentItemException), WafOptimisticLockException(WafOptimisticLockException), WafServiceLinkedRoleErrorException(WafServiceLinkedRoleErrorException), WafSubscriptionNotFoundException(WafSubscriptionNotFoundException), WafTagOperationException(WafTagOperationException), WafTagOperationInternalErrorException(WafTagOperationInternalErrorException), WafUnavailableEntityException(WafUnavailableEntityException), WafUnsupportedAggregateKeyTypeException(WafUnsupportedAggregateKeyTypeException), Unhandled(Unhandled),
}
Expand description

All possible error types for this service.

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.
§

WafAssociatedItemException(WafAssociatedItemException)

WAF couldn’t perform the operation because your resource is being used by another resource or it’s associated with another resource.

§

WafConfigurationWarningException(WafConfigurationWarningException)

The operation failed because you are inspecting the web request body, headers, or cookies without specifying how to handle oversize components. Rules that inspect the body must either provide an OversizeHandling configuration or they must be preceded by a SizeConstraintStatement that blocks the body content from being too large. Rules that inspect the headers or cookies must provide an OversizeHandling configuration.

Provide the handling configuration and retry your operation.

Alternately, you can suppress this warning by adding the following tag to the resource that you provide to this operation: Tag (key:WAF:OversizeFieldsHandlingConstraintOptOut, value:true).

§

WafDuplicateItemException(WafDuplicateItemException)

WAF couldn’t perform the operation because the resource that you tried to save is a duplicate of an existing one.

§

WafExpiredManagedRuleGroupVersionException(WafExpiredManagedRuleGroupVersionException)

The operation failed because the specified version for the managed rule group has expired. You can retrieve the available versions for the managed rule group by calling ListAvailableManagedRuleGroupVersions.

§

WafInternalErrorException(WafInternalErrorException)

Your request is valid, but WAF couldn’t perform the operation because of a system problem. Retry your request.

§

WafInvalidOperationException(WafInvalidOperationException)

The operation isn't valid.

§

WafInvalidParameterException(WafInvalidParameterException)

The operation failed because WAF didn't recognize a parameter in the request. For example:

  • You specified a parameter name or value that isn't valid.

  • Your nested statement isn't valid. You might have tried to nest a statement that can’t be nested.

  • You tried to update a WebACL with a DefaultAction that isn't among the types available at DefaultAction.

  • Your request references an ARN that is malformed, or corresponds to a resource with which a web ACL can't be associated.

§

WafInvalidPermissionPolicyException(WafInvalidPermissionPolicyException)

The operation failed because the specified policy isn't in the proper format.

The policy specifications must conform to the following:

  • The policy must be composed using IAM Policy version 2012-10-17.

  • The policy must include specifications for Effect, Action, and Principal.

  • Effect must specify Allow.

  • Action must specify wafv2:CreateWebACL, wafv2:UpdateWebACL, and wafv2:PutFirewallManagerRuleGroups and may optionally specify wafv2:GetRuleGroup. WAF rejects any extra actions or wildcard actions in the policy.

  • The policy must not include a Resource parameter.

For more information, see IAM Policies.

§

WafInvalidResourceException(WafInvalidResourceException)

WAF couldn’t perform the operation because the resource that you requested isn’t valid. Check the resource, and try again.

§

WafLimitsExceededException(WafLimitsExceededException)

WAF couldn’t perform the operation because you exceeded your resource limit. For example, the maximum number of WebACL objects that you can create for an Amazon Web Services account. For more information, see WAF quotas in the WAF Developer Guide.

§

WafLogDestinationPermissionIssueException(WafLogDestinationPermissionIssueException)

The operation failed because you don't have the permissions that your logging configuration requires. For information, see Logging web ACL traffic information in the WAF Developer Guide.

§

WafNonexistentItemException(WafNonexistentItemException)

WAF couldn’t perform the operation because your resource doesn't exist. If you've just created a resource that you're using in this operation, you might just need to wait a few minutes. It can take from a few seconds to a number of minutes for changes to propagate.

§

WafOptimisticLockException(WafOptimisticLockException)

WAF couldn’t save your changes because you tried to update or delete a resource that has changed since you last retrieved it. Get the resource again, make any changes you need to make to the new copy, and retry your operation.

§

WafServiceLinkedRoleErrorException(WafServiceLinkedRoleErrorException)

WAF is not able to access the service linked role. This can be caused by a previous PutLoggingConfiguration request, which can lock the service linked role for about 20 seconds. Please try your request again. The service linked role can also be locked by a previous DeleteServiceLinkedRole request, which can lock the role for 15 minutes or more. If you recently made a call to DeleteServiceLinkedRole, wait at least 15 minutes and try the request again. If you receive this same exception again, you will have to wait additional time until the role is unlocked.

§

WafSubscriptionNotFoundException(WafSubscriptionNotFoundException)

You tried to use a managed rule group that's available by subscription, but you aren't subscribed to it yet.

§

WafTagOperationException(WafTagOperationException)

An error occurred during the tagging operation. Retry your request.

§

WafTagOperationInternalErrorException(WafTagOperationInternalErrorException)

WAF couldn’t perform your tagging operation because of an internal error. Retry your request.

§

WafUnavailableEntityException(WafUnavailableEntityException)

WAF couldn’t retrieve a resource that you specified for this operation. If you've just created a resource that you're using in this operation, you might just need to wait a few minutes. It can take from a few seconds to a number of minutes for changes to propagate. Verify the resources that you are specifying in your request parameters and then retry the operation.

§

WafUnsupportedAggregateKeyTypeException(WafUnsupportedAggregateKeyTypeException)

The rule that you've named doesn't aggregate solely on the IP address or solely on the forwarded IP address. This call is only available for rate-based rules with an AggregateKeyType setting of IP or FORWARDED_IP.

§

Unhandled(Unhandled)

👎Deprecated: Matching Unhandled directly is not forwards compatible. Instead, match using a variable wildcard pattern and check .code():    err if err.code() == Some("SpecificExceptionCode") => { /* handle the error */ } See ProvideErrorMetadata for what information is available for the error.

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

Trait Implementations§

source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl From<AssociateWebACLError> for Error

source§

fn from(err: AssociateWebACLError) -> Self

Converts to this type from the input type.
source§

impl From<BuildError> for Error

source§

fn from(value: BuildError) -> Self

Converts to this type from the input type.
source§

impl From<CheckCapacityError> for Error

source§

fn from(err: CheckCapacityError) -> Self

Converts to this type from the input type.
source§

impl From<CreateAPIKeyError> for Error

source§

fn from(err: CreateAPIKeyError) -> Self

Converts to this type from the input type.
source§

impl From<CreateIPSetError> for Error

source§

fn from(err: CreateIPSetError) -> Self

Converts to this type from the input type.
source§

impl From<CreateRegexPatternSetError> for Error

source§

fn from(err: CreateRegexPatternSetError) -> Self

Converts to this type from the input type.
source§

impl From<CreateRuleGroupError> for Error

source§

fn from(err: CreateRuleGroupError) -> Self

Converts to this type from the input type.
source§

impl From<CreateWebACLError> for Error

source§

fn from(err: CreateWebACLError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteAPIKeyError> for Error

source§

fn from(err: DeleteAPIKeyError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteFirewallManagerRuleGroupsError> for Error

source§

fn from(err: DeleteFirewallManagerRuleGroupsError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteIPSetError> for Error

source§

fn from(err: DeleteIPSetError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteLoggingConfigurationError> for Error

source§

fn from(err: DeleteLoggingConfigurationError) -> Self

Converts to this type from the input type.
source§

impl From<DeletePermissionPolicyError> for Error

source§

fn from(err: DeletePermissionPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteRegexPatternSetError> for Error

source§

fn from(err: DeleteRegexPatternSetError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteRuleGroupError> for Error

source§

fn from(err: DeleteRuleGroupError) -> Self

Converts to this type from the input type.
source§

impl From<DeleteWebACLError> for Error

source§

fn from(err: DeleteWebACLError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeAllManagedProductsError> for Error

source§

fn from(err: DescribeAllManagedProductsError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeManagedProductsByVendorError> for Error

source§

fn from(err: DescribeManagedProductsByVendorError) -> Self

Converts to this type from the input type.
source§

impl From<DescribeManagedRuleGroupError> for Error

source§

fn from(err: DescribeManagedRuleGroupError) -> Self

Converts to this type from the input type.
source§

impl From<DisassociateWebACLError> for Error

source§

fn from(err: DisassociateWebACLError) -> Self

Converts to this type from the input type.
source§

impl From<GenerateMobileSdkReleaseUrlError> for Error

source§

fn from(err: GenerateMobileSdkReleaseUrlError) -> Self

Converts to this type from the input type.
source§

impl From<GetDecryptedAPIKeyError> for Error

source§

fn from(err: GetDecryptedAPIKeyError) -> Self

Converts to this type from the input type.
source§

impl From<GetIPSetError> for Error

source§

fn from(err: GetIPSetError) -> Self

Converts to this type from the input type.
source§

impl From<GetLoggingConfigurationError> for Error

source§

fn from(err: GetLoggingConfigurationError) -> Self

Converts to this type from the input type.
source§

impl From<GetManagedRuleSetError> for Error

source§

fn from(err: GetManagedRuleSetError) -> Self

Converts to this type from the input type.
source§

impl From<GetMobileSdkReleaseError> for Error

source§

fn from(err: GetMobileSdkReleaseError) -> Self

Converts to this type from the input type.
source§

impl From<GetPermissionPolicyError> for Error

source§

fn from(err: GetPermissionPolicyError) -> Self

Converts to this type from the input type.
source§

impl From<GetRateBasedStatementManagedKeysError> for Error

source§

fn from(err: GetRateBasedStatementManagedKeysError) -> Self

Converts to this type from the input type.
source§

impl From<GetRegexPatternSetError> for Error

source§

fn from(err: GetRegexPatternSetError) -> Self

Converts to this type from the input type.
source§

impl From<GetRuleGroupError> for Error

source§

fn from(err: GetRuleGroupError) -> Self

Converts to this type from the input type.
source§

impl From<GetSampledRequestsError> for Error

source§

fn from(err: GetSampledRequestsError) -> Self

Converts to this type from the input type.
source§

impl From<GetWebACLError> for Error

source§

fn from(err: GetWebACLError) -> Self

Converts to this type from the input type.
source§

impl From<GetWebACLForResourceError> for Error

source§

fn from(err: GetWebACLForResourceError) -> Self

Converts to this type from the input type.
source§

impl From<ListAPIKeysError> for Error

source§

fn from(err: ListAPIKeysError) -> Self

Converts to this type from the input type.
source§

impl From<ListAvailableManagedRuleGroupVersionsError> for Error

source§

fn from(err: ListAvailableManagedRuleGroupVersionsError) -> Self

Converts to this type from the input type.
source§

impl From<ListAvailableManagedRuleGroupsError> for Error

source§

fn from(err: ListAvailableManagedRuleGroupsError) -> Self

Converts to this type from the input type.
source§

impl From<ListIPSetsError> for Error

source§

fn from(err: ListIPSetsError) -> Self

Converts to this type from the input type.
source§

impl From<ListLoggingConfigurationsError> for Error

source§

fn from(err: ListLoggingConfigurationsError) -> Self

Converts to this type from the input type.
source§

impl From<ListManagedRuleSetsError> for Error

source§

fn from(err: ListManagedRuleSetsError) -> Self

Converts to this type from the input type.
source§

impl From<ListMobileSdkReleasesError> for Error

source§

fn from(err: ListMobileSdkReleasesError) -> Self

Converts to this type from the input type.
source§

impl From<ListRegexPatternSetsError> for Error

source§

fn from(err: ListRegexPatternSetsError) -> Self

Converts to this type from the input type.
source§

impl From<ListResourcesForWebACLError> for Error

source§

fn from(err: ListResourcesForWebACLError) -> Self

Converts to this type from the input type.
source§

impl From<ListRuleGroupsError> for Error

source§

fn from(err: ListRuleGroupsError) -> Self

Converts to this type from the input type.
source§

impl From<ListTagsForResourceError> for Error

source§

fn from(err: ListTagsForResourceError) -> Self

Converts to this type from the input type.
source§

impl From<ListWebACLsError> for Error

source§

fn from(err: ListWebACLsError) -> Self

Converts to this type from the input type.
source§

impl From<PutLoggingConfigurationError> for Error

source§

fn from(err: PutLoggingConfigurationError) -> Self

Converts to this type from the input type.
source§

impl From<PutManagedRuleSetVersionsError> for Error

source§

fn from(err: PutManagedRuleSetVersionsError) -> Self

Converts to this type from the input type.
source§

impl From<PutPermissionPolicyError> for Error

source§

fn from(err: PutPermissionPolicyError) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<AssociateWebACLError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<AssociateWebACLError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CheckCapacityError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CheckCapacityError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateAPIKeyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateAPIKeyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateIPSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateIPSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateRegexPatternSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateRegexPatternSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateRuleGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateRuleGroupError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<CreateWebACLError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<CreateWebACLError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteAPIKeyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteAPIKeyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteFirewallManagerRuleGroupsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteFirewallManagerRuleGroupsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteIPSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteIPSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteLoggingConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteLoggingConfigurationError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeletePermissionPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeletePermissionPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteRegexPatternSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteRegexPatternSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteRuleGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteRuleGroupError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DeleteWebACLError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DeleteWebACLError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeAllManagedProductsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeAllManagedProductsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeManagedProductsByVendorError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeManagedProductsByVendorError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DescribeManagedRuleGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DescribeManagedRuleGroupError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<DisassociateWebACLError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<DisassociateWebACLError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GenerateMobileSdkReleaseUrlError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GenerateMobileSdkReleaseUrlError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetDecryptedAPIKeyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetDecryptedAPIKeyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetIPSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetIPSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetLoggingConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetLoggingConfigurationError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetManagedRuleSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetManagedRuleSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetMobileSdkReleaseError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetMobileSdkReleaseError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetPermissionPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetPermissionPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetRateBasedStatementManagedKeysError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetRateBasedStatementManagedKeysError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetRegexPatternSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetRegexPatternSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetRuleGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetRuleGroupError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetSampledRequestsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetSampledRequestsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetWebACLError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetWebACLError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<GetWebACLForResourceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<GetWebACLForResourceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListAPIKeysError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListAPIKeysError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListAvailableManagedRuleGroupVersionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListAvailableManagedRuleGroupVersionsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListAvailableManagedRuleGroupsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListAvailableManagedRuleGroupsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListIPSetsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListIPSetsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListLoggingConfigurationsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListLoggingConfigurationsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListManagedRuleSetsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListManagedRuleSetsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListMobileSdkReleasesError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListMobileSdkReleasesError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListRegexPatternSetsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListRegexPatternSetsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListResourcesForWebACLError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListResourcesForWebACLError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListRuleGroupsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListRuleGroupsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListTagsForResourceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListTagsForResourceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<ListWebACLsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<ListWebACLsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<PutLoggingConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<PutLoggingConfigurationError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<PutManagedRuleSetVersionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<PutManagedRuleSetVersionsError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<PutPermissionPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<PutPermissionPolicyError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<TagResourceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<TagResourceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UntagResourceError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UntagResourceError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateIPSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateIPSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateManagedRuleSetVersionExpiryDateError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateManagedRuleSetVersionExpiryDateError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateRegexPatternSetError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateRegexPatternSetError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateRuleGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateRuleGroupError, R>) -> Self

Converts to this type from the input type.
source§

impl<R> From<SdkError<UpdateWebACLError, R>> for Error
where R: Send + Sync + Debug + 'static,

source§

fn from(err: SdkError<UpdateWebACLError, R>) -> Self

Converts to this type from the input type.
source§

impl From<TagResourceError> for Error

source§

fn from(err: TagResourceError) -> Self

Converts to this type from the input type.
source§

impl From<UntagResourceError> for Error

source§

fn from(err: UntagResourceError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateIPSetError> for Error

source§

fn from(err: UpdateIPSetError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateManagedRuleSetVersionExpiryDateError> for Error

source§

fn from(err: UpdateManagedRuleSetVersionExpiryDateError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateRegexPatternSetError> for Error

source§

fn from(err: UpdateRegexPatternSetError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateRuleGroupError> for Error

source§

fn from(err: UpdateRuleGroupError) -> Self

Converts to this type from the input type.
source§

impl From<UpdateWebACLError> for Error

source§

fn from(err: UpdateWebACLError) -> Self

Converts to this type from the input type.
source§

impl ProvideErrorMetadata for Error

source§

fn meta(&self) -> &ErrorMetadata

Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
source§

fn code(&self) -> Option<&str>

Returns the error code if it’s available.
source§

fn message(&self) -> Option<&str>

Returns the error message, if there is one.
source§

impl RequestId for Error

source§

fn request_id(&self) -> Option<&str>

Returns the request ID, or None if the service could not be reached.

Auto Trait Implementations§

§

impl Freeze for Error

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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