interface FederatedAuthenticationRequestProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.EC2.CfnClientVpnEndpoint.FederatedAuthenticationRequestProperty | 
|  Java | software.amazon.awscdk.services.ec2.CfnClientVpnEndpoint.FederatedAuthenticationRequestProperty | 
|  Python | aws_cdk.aws_ec2.CfnClientVpnEndpoint.FederatedAuthenticationRequestProperty | 
|  TypeScript | @aws-cdk/aws-ec2»CfnClientVpnEndpoint»FederatedAuthenticationRequestProperty | 
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 * as ec2 from '@aws-cdk/aws-ec2';
const federatedAuthenticationRequestProperty: ec2.CfnClientVpnEndpoint.FederatedAuthenticationRequestProperty = {
  samlProviderArn: 'samlProviderArn',
  // the properties below are optional
  selfServiceSamlProviderArn: 'selfServiceSamlProviderArn',
};
Properties
| Name | Type | Description | 
|---|---|---|
| saml | string | The Amazon Resource Name (ARN) of the IAM SAML identity provider. | 
| self | string | The Amazon Resource Name (ARN) of the IAM SAML identity provider for the self-service portal. | 
samlProviderArn
Type:
string
The Amazon Resource Name (ARN) of the IAM SAML identity provider.
selfServiceSamlProviderArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM SAML identity provider for the self-service portal.
