Class GetSAMLProviderResult
- java.lang.Object
-
- com.amazonaws.services.identitymanagement.model.GetSAMLProviderResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class GetSAMLProviderResult extends Object implements Serializable, Cloneable
Contains the response to a successful GetSAMLProvider request.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GetSAMLProviderResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetSAMLProviderResult
clone()
boolean
equals(Object obj)
Date
getCreateDate()
The date and time when the SAML provider was created.String
getSAMLMetadataDocument()
The XML metadata document that includes information about an identity provider.Date
getValidUntil()
The expiration date and time for the SAML provider.int
hashCode()
void
setCreateDate(Date createDate)
The date and time when the SAML provider was created.void
setSAMLMetadataDocument(String sAMLMetadataDocument)
The XML metadata document that includes information about an identity provider.void
setValidUntil(Date validUntil)
The expiration date and time for the SAML provider.String
toString()
Returns a string representation of this object; useful for testing and debugging.GetSAMLProviderResult
withCreateDate(Date createDate)
The date and time when the SAML provider was created.GetSAMLProviderResult
withSAMLMetadataDocument(String sAMLMetadataDocument)
The XML metadata document that includes information about an identity provider.GetSAMLProviderResult
withValidUntil(Date validUntil)
The expiration date and time for the SAML provider.
-
-
-
Method Detail
-
setSAMLMetadataDocument
public void setSAMLMetadataDocument(String sAMLMetadataDocument)
The XML metadata document that includes information about an identity provider.
- Parameters:
sAMLMetadataDocument
- The XML metadata document that includes information about an identity provider.
-
getSAMLMetadataDocument
public String getSAMLMetadataDocument()
The XML metadata document that includes information about an identity provider.
- Returns:
- The XML metadata document that includes information about an identity provider.
-
withSAMLMetadataDocument
public GetSAMLProviderResult withSAMLMetadataDocument(String sAMLMetadataDocument)
The XML metadata document that includes information about an identity provider.
- Parameters:
sAMLMetadataDocument
- The XML metadata document that includes information about an identity provider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setCreateDate
public void setCreateDate(Date createDate)
The date and time when the SAML provider was created.
- Parameters:
createDate
- The date and time when the SAML provider was created.
-
getCreateDate
public Date getCreateDate()
The date and time when the SAML provider was created.
- Returns:
- The date and time when the SAML provider was created.
-
withCreateDate
public GetSAMLProviderResult withCreateDate(Date createDate)
The date and time when the SAML provider was created.
- Parameters:
createDate
- The date and time when the SAML provider was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setValidUntil
public void setValidUntil(Date validUntil)
The expiration date and time for the SAML provider.
- Parameters:
validUntil
- The expiration date and time for the SAML provider.
-
getValidUntil
public Date getValidUntil()
The expiration date and time for the SAML provider.
- Returns:
- The expiration date and time for the SAML provider.
-
withValidUntil
public GetSAMLProviderResult withValidUntil(Date validUntil)
The expiration date and time for the SAML provider.
- Parameters:
validUntil
- The expiration date and time for the SAML provider.- 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 GetSAMLProviderResult clone()
-
-