Class DecodeAuthorizationMessageResult
- java.lang.Object
-
- com.amazonaws.services.securitytoken.model.DecodeAuthorizationMessageResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DecodeAuthorizationMessageResult extends Object implements Serializable, Cloneable
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 Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DecodeAuthorizationMessageResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DecodeAuthorizationMessageResult
clone()
boolean
equals(Object obj)
String
getDecodedMessage()
An XML document that contains the decoded message.int
hashCode()
void
setDecodedMessage(String decodedMessage)
An XML document that contains the decoded message.String
toString()
Returns a string representation of this object; useful for testing and debugging.DecodeAuthorizationMessageResult
withDecodedMessage(String decodedMessage)
An XML document that contains the decoded message.
-
-
-
Method Detail
-
setDecodedMessage
public void setDecodedMessage(String decodedMessage)
An XML document that contains the decoded message.
- Parameters:
decodedMessage
- An XML document that contains the decoded message.
-
getDecodedMessage
public String getDecodedMessage()
An XML document that contains the decoded message.
- Returns:
- An XML document that contains the decoded message.
-
withDecodedMessage
public DecodeAuthorizationMessageResult withDecodedMessage(String decodedMessage)
An XML document that contains the decoded message.
- Parameters:
decodedMessage
- An XML document that contains the decoded message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DecodeAuthorizationMessageResult clone()
-
-