pub struct DecodeAuthorizationMessageFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DecodeAuthorizationMessage
.
Decodes additional information about the authorization status of a request from an encoded message returned in response to an Amazon Web Services request.
For example, if a user is not authorized to perform an operation that he or she has requested, the request returns a Client.UnauthorizedOperation
response (an HTTP 403 response). Some Amazon Web Services operations additionally return an encoded message that can provide details about this authorization failure.
Only certain Amazon Web Services operations return an encoded authorization message. The documentation for an individual operation indicates whether that operation returns an encoded message in addition to returning an HTTP code.
The message is encoded because the details of the authorization status can contain privileged information that the user who requested the operation should not see. To decode an authorization status message, a user must be granted permissions through an IAM policy to request the DecodeAuthorizationMessage
(sts:DecodeAuthorizationMessage
) action.
The decoded message includes the following type of information:
-
Whether the request was denied due to an explicit deny or due to the absence of an explicit allow. For more information, see Determining Whether a Request is Allowed or Denied in the IAM User Guide.
-
The principal who made the request.
-
The requested action.
-
The requested resource.
-
The values of condition keys in the context of the user's request.
Implementations§
Source§impl DecodeAuthorizationMessageFluentBuilder
impl DecodeAuthorizationMessageFluentBuilder
Sourcepub fn as_input(&self) -> &DecodeAuthorizationMessageInputBuilder
pub fn as_input(&self) -> &DecodeAuthorizationMessageInputBuilder
Access the DecodeAuthorizationMessage as a reference.
Sourcepub async fn send(
self,
) -> Result<DecodeAuthorizationMessageOutput, SdkError<DecodeAuthorizationMessageError, HttpResponse>>
pub async fn send( self, ) -> Result<DecodeAuthorizationMessageOutput, SdkError<DecodeAuthorizationMessageError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
Sourcepub fn customize(
self,
) -> CustomizableOperation<DecodeAuthorizationMessageOutput, DecodeAuthorizationMessageError, Self>
pub fn customize( self, ) -> CustomizableOperation<DecodeAuthorizationMessageOutput, DecodeAuthorizationMessageError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
Sourcepub fn encoded_message(self, input: impl Into<String>) -> Self
pub fn encoded_message(self, input: impl Into<String>) -> Self
The encoded message that was returned with the response.
Sourcepub fn set_encoded_message(self, input: Option<String>) -> Self
pub fn set_encoded_message(self, input: Option<String>) -> Self
The encoded message that was returned with the response.
Sourcepub fn get_encoded_message(&self) -> &Option<String>
pub fn get_encoded_message(&self) -> &Option<String>
The encoded message that was returned with the response.
Trait Implementations§
Source§impl Clone for DecodeAuthorizationMessageFluentBuilder
impl Clone for DecodeAuthorizationMessageFluentBuilder
Source§fn clone(&self) -> DecodeAuthorizationMessageFluentBuilder
fn clone(&self) -> DecodeAuthorizationMessageFluentBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for DecodeAuthorizationMessageFluentBuilder
impl !RefUnwindSafe for DecodeAuthorizationMessageFluentBuilder
impl Send for DecodeAuthorizationMessageFluentBuilder
impl Sync for DecodeAuthorizationMessageFluentBuilder
impl Unpin for DecodeAuthorizationMessageFluentBuilder
impl !UnwindSafe for DecodeAuthorizationMessageFluentBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)