interface RolesItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IdentityStore.CfnUserPropsMixin.RolesItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsidentitystore#CfnUserPropsMixin_RolesItemsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.identitystore.CfnUserPropsMixin.RolesItemsProperty |
Python | aws_cdk.cfn_property_mixins.aws_identitystore.CfnUserPropsMixin.RolesItemsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_identitystore » CfnUserPropsMixin » 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/cfn-property-mixins';
const rolesItemsProperty: identitystore.CfnUserPropsMixin.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