interface IdentityProviderConfigReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EKS.IdentityProviderConfigReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awseks#IdentityProviderConfigReference |
Java | software.amazon.awscdk.interfaces.eks.IdentityProviderConfigReference |
Python | aws_cdk.interfaces.aws_eks.IdentityProviderConfigReference |
TypeScript | aws-cdk-lib » interfaces » aws_eks » IdentityProviderConfigReference |
A reference to a IdentityProviderConfig resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks as interfaces_aws_eks } from 'aws-cdk-lib/interfaces';
const identityProviderConfigReference: interfaces_aws_eks.IdentityProviderConfigReference = {
clusterName: 'clusterName',
identityProviderConfigArn: 'identityProviderConfigArn',
identityProviderConfigName: 'identityProviderConfigName',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The ClusterName of the IdentityProviderConfig resource. |
| identity | string | The ARN of the IdentityProviderConfig resource. |
| identity | string | The IdentityProviderConfigName of the IdentityProviderConfig resource. |
| type | string | The Type of the IdentityProviderConfig resource. |
clusterName
Type:
string
The ClusterName of the IdentityProviderConfig resource.
identityProviderConfigArn
Type:
string
The ARN of the IdentityProviderConfig resource.
identityProviderConfigName
Type:
string
The IdentityProviderConfigName of the IdentityProviderConfig resource.
type
Type:
string
The Type of the IdentityProviderConfig resource.

.NET
Go
Java
Python
TypeScript