interface SsoIdentityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.CfnCapability.SsoIdentityProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCapability_SsoIdentityProperty |
Java | software.amazon.awscdk.services.eks.CfnCapability.SsoIdentityProperty |
Python | aws_cdk.aws_eks.CfnCapability.SsoIdentityProperty |
TypeScript | aws-cdk-lib » aws_eks » CfnCapability » SsoIdentityProperty |
An IAM Identity Center identity (user or group) that can be assigned permissions in a capability.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks as eks } from 'aws-cdk-lib';
const ssoIdentityProperty: eks.CfnCapability.SsoIdentityProperty = {
id: 'id',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the IAM Identity Center user or group. |
| type | string | The type of identity. |
id
Type:
string
The unique identifier of the IAM Identity Center user or group.
type
Type:
string
The type of identity.
Valid values are SSO_USER or SSO_GROUP.

.NET
Go
Java
Python
TypeScript