Class SAMLProviderListEntry
- java.lang.Object
-
- com.amazonaws.services.identitymanagement.model.SAMLProviderListEntry
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class SAMLProviderListEntry extends Object implements Serializable, Cloneable
Contains the list of SAML providers for this account.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SAMLProviderListEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SAMLProviderListEntry
clone()
boolean
equals(Object obj)
String
getArn()
The Amazon Resource Name (ARN) of the SAML provider.Date
getCreateDate()
The date and time when the SAML provider was created.Date
getValidUntil()
The expiration date and time for the SAML provider.int
hashCode()
void
setArn(String arn)
The Amazon Resource Name (ARN) of the SAML provider.void
setCreateDate(Date createDate)
The date and time when the SAML provider was created.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.SAMLProviderListEntry
withArn(String arn)
The Amazon Resource Name (ARN) of the SAML provider.SAMLProviderListEntry
withCreateDate(Date createDate)
The date and time when the SAML provider was created.SAMLProviderListEntry
withValidUntil(Date validUntil)
The expiration date and time for the SAML provider.
-
-
-
Method Detail
-
setArn
public void setArn(String arn)
The Amazon Resource Name (ARN) of the SAML provider.
- Parameters:
arn
- The Amazon Resource Name (ARN) of the SAML provider.
-
getArn
public String getArn()
The Amazon Resource Name (ARN) of the SAML provider.
- Returns:
- The Amazon Resource Name (ARN) of the SAML provider.
-
withArn
public SAMLProviderListEntry withArn(String arn)
The Amazon Resource Name (ARN) of the SAML provider.
- Parameters:
arn
- The Amazon Resource Name (ARN) of the SAML provider.- 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 SAMLProviderListEntry 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.
-
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 SAMLProviderListEntry 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.
-
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 SAMLProviderListEntry clone()
-
-