interface FederatedAuthenticationRequestProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.EC2.CfnClientVpnEndpoint.FederatedAuthenticationRequestProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnClientVpnEndpoint_FederatedAuthenticationRequestProperty | 
  Java | software.amazon.awscdk.services.ec2.CfnClientVpnEndpoint.FederatedAuthenticationRequestProperty | 
  Python | aws_cdk.aws_ec2.CfnClientVpnEndpoint.FederatedAuthenticationRequestProperty | 
  TypeScript  | aws-cdk-lib » 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 { aws_ec2 as ec2 } from 'aws-cdk-lib';
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.

 .NET
 Go
 Java
 Python
 TypeScript