interface EmailsItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IdentityStore.CfnUser.EmailsItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsidentitystore#CfnUser_EmailsItemsProperty |
Java | software.amazon.awscdk.services.identitystore.CfnUser.EmailsItemsProperty |
Python | aws_cdk.aws_identitystore.CfnUser.EmailsItemsProperty |
TypeScript | aws-cdk-lib » aws_identitystore » CfnUser » EmailsItemsProperty |
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 emailsItemsProperty: identitystore.CfnUser.EmailsItemsProperty = {
primary: false,
type: 'type',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| primary? | boolean | IResolvable | Whether this is the primary email address. |
| type? | string | The type of email address. |
| value? | string | The email address. |
primary?
Type:
boolean | IResolvable
(optional)
Whether this is the primary email address.
type?
Type:
string
(optional)
The type of email address.
value?
Type:
string
(optional)
The email address.

.NET
Go
Java
Python
TypeScript