interface RolesItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IdentityStore.CfnUser.RolesItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsidentitystore#CfnUser_RolesItemsProperty |
Java | software.amazon.awscdk.services.identitystore.CfnUser.RolesItemsProperty |
Python | aws_cdk.aws_identitystore.CfnUser.RolesItemsProperty |
TypeScript | aws-cdk-lib » aws_identitystore » CfnUser » RolesItemsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_identitystore as identitystore } from 'aws-cdk-lib';
const rolesItemsProperty: identitystore.CfnUser.RolesItemsProperty = {
primary: false,
type: 'type',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| primary? | boolean | IResolvable | Whether this is the primary role. |
| type? | string | The type of role. |
| value? | string | The role name. |
primary?
Type:
boolean | IResolvable
(optional)
Whether this is the primary role.
type?
Type:
string
(optional)
The type of role.
value?
Type:
string
(optional)
The role name.

.NET
Go
Java
Python
TypeScript