interface SsoIdentityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins.CfnCapabilityPropsMixin.SsoIdentityProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseks/mixins#CfnCapabilityPropsMixin_SsoIdentityProperty |
Java | software.amazon.awscdk.mixins.preview.services.eks.mixins.CfnCapabilityPropsMixin.SsoIdentityProperty |
Python | aws_cdk.mixins_preview.aws_eks.mixins.CfnCapabilityPropsMixin.SsoIdentityProperty |
TypeScript | @aws-cdk/mixins-preview » aws_eks » mixins » CfnCapabilityPropsMixin » SsoIdentityProperty |
An IAM Identity CenterIAM;
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 { mixins as eks_mixins } from '@aws-cdk/mixins-preview/aws-eks';
const ssoIdentityProperty: eks_mixins.CfnCapabilityPropsMixin.SsoIdentityProperty = {
id: 'id',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| id? | string | The unique identifier of the IAM Identity CenterIAM; |
| type? | string | The type of identity. |
id?
Type:
string
(optional)
The unique identifier of the IAM Identity CenterIAM;
Identity Center user or group.
type?
Type:
string
(optional)
The type of identity.
Valid values are SSO_USER or SSO_GROUP .

.NET
Go
Java
Python
TypeScript