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