Class CreateSAMLProviderRequest
- java.lang.Object
-
- com.amazonaws.AmazonWebServiceRequest
-
- com.amazonaws.services.identitymanagement.model.CreateSAMLProviderRequest
-
- All Implemented Interfaces:
ReadLimitInfo,Serializable,Cloneable
public class CreateSAMLProviderRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.amazonaws.AmazonWebServiceRequest
NOOP
-
-
Constructor Summary
Constructors Constructor Description CreateSAMLProviderRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateSAMLProviderRequestclone()Creates a shallow clone of this request.booleanequals(Object obj)StringgetName()The name of the provider to create.StringgetSAMLMetadataDocument()An XML document generated by an identity provider (IdP) that supports SAML 2.0.inthashCode()voidsetName(String name)The name of the provider to create.voidsetSAMLMetadataDocument(String sAMLMetadataDocument)An XML document generated by an identity provider (IdP) that supports SAML 2.0.StringtoString()Returns a string representation of this object; useful for testing and debugging.CreateSAMLProviderRequestwithName(String name)The name of the provider to create.CreateSAMLProviderRequestwithSAMLMetadataDocument(String sAMLMetadataDocument)An XML document generated by an identity provider (IdP) that supports SAML 2.0.-
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyBaseTo, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
-
-
-
-
Method Detail
-
setSAMLMetadataDocument
public void setSAMLMetadataDocument(String sAMLMetadataDocument)
An XML document generated by an identity provider (IdP) that supports SAML 2.0. The document includes the issuer's name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that are received from the IdP. You must generate the metadata document using the identity management software that is used as your organization's IdP.
For more information, see About SAML 2.0-based Federation in the IAM User Guide
- Parameters:
sAMLMetadataDocument- An XML document generated by an identity provider (IdP) that supports SAML 2.0. The document includes the issuer's name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that are received from the IdP. You must generate the metadata document using the identity management software that is used as your organization's IdP.For more information, see About SAML 2.0-based Federation in the IAM User Guide
-
getSAMLMetadataDocument
public String getSAMLMetadataDocument()
An XML document generated by an identity provider (IdP) that supports SAML 2.0. The document includes the issuer's name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that are received from the IdP. You must generate the metadata document using the identity management software that is used as your organization's IdP.
For more information, see About SAML 2.0-based Federation in the IAM User Guide
- Returns:
- An XML document generated by an identity provider (IdP) that
supports SAML 2.0. The document includes the issuer's name,
expiration information, and keys that can be used to validate the
SAML authentication response (assertions) that are received from
the IdP. You must generate the metadata document using the
identity management software that is used as your organization's
IdP.
For more information, see About SAML 2.0-based Federation in the IAM User Guide
-
withSAMLMetadataDocument
public CreateSAMLProviderRequest withSAMLMetadataDocument(String sAMLMetadataDocument)
An XML document generated by an identity provider (IdP) that supports SAML 2.0. The document includes the issuer's name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that are received from the IdP. You must generate the metadata document using the identity management software that is used as your organization's IdP.
For more information, see About SAML 2.0-based Federation in the IAM User Guide
- Parameters:
sAMLMetadataDocument- An XML document generated by an identity provider (IdP) that supports SAML 2.0. The document includes the issuer's name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that are received from the IdP. You must generate the metadata document using the identity management software that is used as your organization's IdP.For more information, see About SAML 2.0-based Federation in the IAM User Guide
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setName
public void setName(String name)
The name of the provider to create.
The regex pattern for this parameter is a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-
- Parameters:
name- The name of the provider to create.The regex pattern for this parameter is a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-
-
getName
public String getName()
The name of the provider to create.
The regex pattern for this parameter is a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-
- Returns:
- The name of the provider to create.
The regex pattern for this parameter is a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-
-
withName
public CreateSAMLProviderRequest withName(String name)
The name of the provider to create.
The regex pattern for this parameter is a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-
- Parameters:
name- The name of the provider to create.The regex pattern for this parameter is a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-
- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public CreateSAMLProviderRequest clone()
Description copied from class:AmazonWebServiceRequestCreates a shallow clone of this request. Explicitly does not clone the deep structure of the request object.- Overrides:
clonein classAmazonWebServiceRequest- See Also:
Object.clone()
-
-