Class SAMLEndpoint
- Namespace
- Amazon.Runtime.CredentialManagement
- Assembly
- AWSSDK.Core.dll
Representation of a SAML Endpoint.
public class SAMLEndpoint
- Inheritance
-
SAMLEndpoint
- Inherited Members
Constructors
SAMLEndpoint(string, Uri)
Construct a SAMLEndpoint using the default SAMLAuthenticationType - Kerberos.
public SAMLEndpoint(string name, Uri endpointUri)
Parameters
name
stringThe name of the endpoint.
endpointUri
UriThe URI of the endpoint.
SAMLEndpoint(string, Uri, SAMLAuthenticationType)
Construct a SAMLEndpoint.
public SAMLEndpoint(string name, Uri endpointUri, SAMLAuthenticationType authenticationType)
Parameters
name
stringThe name of the endpoint.
endpointUri
UriThe URI of the endpoint.
authenticationType
SAMLAuthenticationTypeThe authentication type of the endpoint.
Properties
AuthenticationType
The authentication type associated with the SAML endpoint.
public SAMLAuthenticationType AuthenticationType { get; }
Property Value
EndpointUri
The URI of the SAML endnpoint.
public Uri EndpointUri { get; }
Property Value
- Uri
Name
The name given to this SAMLEndpoint.
public string Name { get; }