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

.NET
Go
Java
Python
TypeScript