Interface CfnClientVpnEndpoint.IClientAuthenticationRequestProperty
Describes the authentication method to be used by a Client VPN endpoint.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IClientAuthenticationRequestProperty
Syntax (vb)
Public Interface IClientAuthenticationRequestProperty
Remarks
For more information, see Authentication in the AWS Client VPN Administrator Guide .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var clientAuthenticationRequestProperty = new ClientAuthenticationRequestProperty {
Type = "type",
// the properties below are optional
ActiveDirectory = new DirectoryServiceAuthenticationRequestProperty {
DirectoryId = "directoryId"
},
FederatedAuthentication = new FederatedAuthenticationRequestProperty {
SamlProviderArn = "samlProviderArn",
// the properties below are optional
SelfServiceSamlProviderArn = "selfServiceSamlProviderArn"
},
MutualAuthentication = new CertificateAuthenticationRequestProperty {
ClientRootCertificateChainArn = "clientRootCertificateChainArn"
}
};
Synopsis
Properties
Active |
Information about the Active Directory to be used, if applicable. |
Federated |
Information about the IAM SAML identity provider, if applicable. |
Mutual |
Information about the authentication certificates to be used, if applicable. |
Type | The type of client authentication to be used. |
Properties
ActiveDirectory
Information about the Active Directory to be used, if applicable.
virtual object ActiveDirectory { get; }
Property Value
System.
Remarks
You must provide this information if Type is directory-service-authentication
.
FederatedAuthentication
Information about the IAM SAML identity provider, if applicable.
virtual object FederatedAuthentication { get; }
Property Value
System.
Remarks
MutualAuthentication
Information about the authentication certificates to be used, if applicable.
virtual object MutualAuthentication { get; }
Property Value
System.
Remarks
You must provide this information if Type is certificate-authentication
.
Type
The type of client authentication to be used.
string Type { get; }
Property Value
System.