Interface CfnClientVpnEndpoint.FederatedAuthenticationRequestProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnClientVpnEndpoint.FederatedAuthenticationRequestProperty.Jsii$Proxy
Enclosing class:
CfnClientVpnEndpoint

@Stability(Stable) public static interface CfnClientVpnEndpoint.FederatedAuthenticationRequestProperty extends software.amazon.jsii.JsiiSerializable
The IAM SAML identity provider used for federated authentication.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ec2.*;
 FederatedAuthenticationRequestProperty federatedAuthenticationRequestProperty = FederatedAuthenticationRequestProperty.builder()
         .samlProviderArn("samlProviderArn")
         // the properties below are optional
         .selfServiceSamlProviderArn("selfServiceSamlProviderArn")
         .build();
 

See Also: