Class ListSAMLProvidersResult
- java.lang.Object
-
- com.amazonaws.services.identitymanagement.model.ListSAMLProvidersResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ListSAMLProvidersResult extends Object implements Serializable, Cloneable
Contains the response to a successful ListSAMLProviders request.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListSAMLProvidersResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListSAMLProvidersResult
clone()
boolean
equals(Object obj)
List<SAMLProviderListEntry>
getSAMLProviderList()
The list of SAML provider resource objects defined in IAM for this AWS account.int
hashCode()
void
setSAMLProviderList(Collection<SAMLProviderListEntry> sAMLProviderList)
The list of SAML provider resource objects defined in IAM for this AWS account.String
toString()
Returns a string representation of this object; useful for testing and debugging.ListSAMLProvidersResult
withSAMLProviderList(SAMLProviderListEntry... sAMLProviderList)
The list of SAML provider resource objects defined in IAM for this AWS account.ListSAMLProvidersResult
withSAMLProviderList(Collection<SAMLProviderListEntry> sAMLProviderList)
The list of SAML provider resource objects defined in IAM for this AWS account.
-
-
-
Method Detail
-
getSAMLProviderList
public List<SAMLProviderListEntry> getSAMLProviderList()
The list of SAML provider resource objects defined in IAM for this AWS account.
- Returns:
- The list of SAML provider resource objects defined in IAM for this AWS account.
-
setSAMLProviderList
public void setSAMLProviderList(Collection<SAMLProviderListEntry> sAMLProviderList)
The list of SAML provider resource objects defined in IAM for this AWS account.
- Parameters:
sAMLProviderList
- The list of SAML provider resource objects defined in IAM for this AWS account.
-
withSAMLProviderList
public ListSAMLProvidersResult withSAMLProviderList(SAMLProviderListEntry... sAMLProviderList)
The list of SAML provider resource objects defined in IAM for this AWS account.
NOTE: This method appends the values to the existing list (if any). Use
setSAMLProviderList(java.util.Collection)
orwithSAMLProviderList(java.util.Collection)
if you want to override the existing values.- Parameters:
sAMLProviderList
- The list of SAML provider resource objects defined in IAM for this AWS account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withSAMLProviderList
public ListSAMLProvidersResult withSAMLProviderList(Collection<SAMLProviderListEntry> sAMLProviderList)
The list of SAML provider resource objects defined in IAM for this AWS account.
- Parameters:
sAMLProviderList
- The list of SAML provider resource objects defined in IAM for this AWS account.- 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 ListSAMLProvidersResult clone()
-
-