interface CfnIdentityProviderConfigMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins.CfnIdentityProviderConfigMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseks/mixins#CfnIdentityProviderConfigMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.eks.mixins.CfnIdentityProviderConfigMixinProps |
Python | aws_cdk.mixins_preview.aws_eks.mixins.CfnIdentityProviderConfigMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_eks » mixins » CfnIdentityProviderConfigMixinProps |
Properties for CfnIdentityProviderConfigPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as eks_mixins } from '@aws-cdk/mixins-preview/aws-eks';
const cfnIdentityProviderConfigMixinProps: eks_mixins.CfnIdentityProviderConfigMixinProps = {
clusterName: 'clusterName',
identityProviderConfigName: 'identityProviderConfigName',
oidc: {
clientId: 'clientId',
groupsClaim: 'groupsClaim',
groupsPrefix: 'groupsPrefix',
issuerUrl: 'issuerUrl',
requiredClaims: [{
key: 'key',
value: 'value',
}],
usernameClaim: 'usernameClaim',
usernamePrefix: 'usernamePrefix',
},
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The name of your cluster. |
| identity | string | The name of the configuration. |
| oidc? | IResolvable | Oidc | An object representing an OpenID Connect (OIDC) identity provider configuration. |
| tags? | Cfn[] | Metadata that assists with categorization and organization. |
| type? | string | The type of the identity provider configuration. |
clusterName?
Type:
string
(optional)
The name of your cluster.
identityProviderConfigName?
Type:
string
(optional)
The name of the configuration.
oidc?
Type:
IResolvable | Oidc
(optional)
An object representing an OpenID Connect (OIDC) identity provider configuration.
tags?
Type:
Cfn[]
(optional)
Metadata that assists with categorization and organization.
Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or AWS resources.
type?
Type:
string
(optional)
The type of the identity provider configuration.
The only type available is oidc .

.NET
Go
Java
Python
TypeScript