amazonka-sts-1.4.4: Amazon Security Token Service SDK.

Copyright(c) 2013-2016 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.STS.DecodeAuthorizationMessage

Contents

Description

Decodes additional information about the authorization status of a request from an encoded message returned in response to an AWS request.

For example, if a user is not authorized to perform an action that he or she has requested, the request returns a UnauthorizedOperation response (an HTTP 403 response). Some AWS actions additionally return an encoded message that can provide details about this authorization failure.

Only certain AWS actions return an encoded authorization message. The documentation for an individual action indicates whether that action returns an encoded message in addition to returning an HTTP code.

The message is encoded because the details of the authorization status can constitute privileged information that the user who requested the action should not see. To decode an authorization status message, a user must be granted permissions via 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.

Synopsis

Creating a Request

decodeAuthorizationMessage Source #

Creates a value of DecodeAuthorizationMessage with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data DecodeAuthorizationMessage Source #

See: decodeAuthorizationMessage smart constructor.

Instances

Eq DecodeAuthorizationMessage Source # 
Data DecodeAuthorizationMessage Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DecodeAuthorizationMessage -> c DecodeAuthorizationMessage #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DecodeAuthorizationMessage #

toConstr :: DecodeAuthorizationMessage -> Constr #

dataTypeOf :: DecodeAuthorizationMessage -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c DecodeAuthorizationMessage) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DecodeAuthorizationMessage) #

gmapT :: (forall b. Data b => b -> b) -> DecodeAuthorizationMessage -> DecodeAuthorizationMessage #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DecodeAuthorizationMessage -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DecodeAuthorizationMessage -> r #

gmapQ :: (forall d. Data d => d -> u) -> DecodeAuthorizationMessage -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> DecodeAuthorizationMessage -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> DecodeAuthorizationMessage -> m DecodeAuthorizationMessage #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DecodeAuthorizationMessage -> m DecodeAuthorizationMessage #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DecodeAuthorizationMessage -> m DecodeAuthorizationMessage #

Read DecodeAuthorizationMessage Source # 
Show DecodeAuthorizationMessage Source # 
Generic DecodeAuthorizationMessage Source # 
Hashable DecodeAuthorizationMessage Source # 
NFData DecodeAuthorizationMessage Source # 
AWSRequest DecodeAuthorizationMessage Source # 
ToPath DecodeAuthorizationMessage Source # 
ToHeaders DecodeAuthorizationMessage Source # 
ToQuery DecodeAuthorizationMessage Source # 
type Rep DecodeAuthorizationMessage Source # 
type Rep DecodeAuthorizationMessage = D1 (MetaData "DecodeAuthorizationMessage" "Network.AWS.STS.DecodeAuthorizationMessage" "amazonka-sts-1.4.4-6LedVt18Nu9LYxEc2oTJZY" True) (C1 (MetaCons "DecodeAuthorizationMessage'" PrefixI True) (S1 (MetaSel (Just Symbol "_damEncodedMessage") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Text)))
type Rs DecodeAuthorizationMessage Source # 

Request Lenses

damEncodedMessage :: Lens' DecodeAuthorizationMessage Text Source #

The encoded message that was returned with the response.

Destructuring the Response

decodeAuthorizationMessageResponse Source #

Creates a value of DecodeAuthorizationMessageResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data DecodeAuthorizationMessageResponse Source #

A document that contains additional information about the authorization status of a request from an encoded message that is returned in response to an AWS request.

See: decodeAuthorizationMessageResponse smart constructor.

Instances

Eq DecodeAuthorizationMessageResponse Source # 
Data DecodeAuthorizationMessageResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DecodeAuthorizationMessageResponse -> c DecodeAuthorizationMessageResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DecodeAuthorizationMessageResponse #

toConstr :: DecodeAuthorizationMessageResponse -> Constr #

dataTypeOf :: DecodeAuthorizationMessageResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c DecodeAuthorizationMessageResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DecodeAuthorizationMessageResponse) #

gmapT :: (forall b. Data b => b -> b) -> DecodeAuthorizationMessageResponse -> DecodeAuthorizationMessageResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DecodeAuthorizationMessageResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DecodeAuthorizationMessageResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> DecodeAuthorizationMessageResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> DecodeAuthorizationMessageResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> DecodeAuthorizationMessageResponse -> m DecodeAuthorizationMessageResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DecodeAuthorizationMessageResponse -> m DecodeAuthorizationMessageResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DecodeAuthorizationMessageResponse -> m DecodeAuthorizationMessageResponse #

Read DecodeAuthorizationMessageResponse Source # 
Show DecodeAuthorizationMessageResponse Source # 
Generic DecodeAuthorizationMessageResponse Source # 
NFData DecodeAuthorizationMessageResponse Source # 
type Rep DecodeAuthorizationMessageResponse Source # 
type Rep DecodeAuthorizationMessageResponse = D1 (MetaData "DecodeAuthorizationMessageResponse" "Network.AWS.STS.DecodeAuthorizationMessage" "amazonka-sts-1.4.4-6LedVt18Nu9LYxEc2oTJZY" False) (C1 (MetaCons "DecodeAuthorizationMessageResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_damrsDecodedMessage") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_damrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedUnpack) (Rec0 Int))))

Response Lenses

damrsDecodedMessage :: Lens' DecodeAuthorizationMessageResponse (Maybe Text) Source #

An XML document that contains the decoded message.