interface AddressesItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IdentityStore.CfnUser.AddressesItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsidentitystore#CfnUser_AddressesItemsProperty |
Java | software.amazon.awscdk.services.identitystore.CfnUser.AddressesItemsProperty |
Python | aws_cdk.aws_identitystore.CfnUser.AddressesItemsProperty |
TypeScript | aws-cdk-lib » aws_identitystore » CfnUser » AddressesItemsProperty |
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 addressesItemsProperty: identitystore.CfnUser.AddressesItemsProperty = {
country: 'country',
formatted: 'formatted',
locality: 'locality',
postalCode: 'postalCode',
primary: false,
region: 'region',
streetAddress: 'streetAddress',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| country? | string | The country of the address. |
| formatted? | string | A formatted version of the address for display. |
| locality? | string | A string of the address locality. |
| postal | string | The postal code of the address. |
| primary? | boolean | IResolvable | Whether this is the primary address. |
| region? | string | The region of the address. |
| street | string | The street of the address. |
| type? | string | The type of address. |
country?
Type:
string
(optional)
The country of the address.
formatted?
Type:
string
(optional)
A formatted version of the address for display.
locality?
Type:
string
(optional)
A string of the address locality.
postalCode?
Type:
string
(optional)
The postal code of the address.
primary?
Type:
boolean | IResolvable
(optional)
Whether this is the primary address.
region?
Type:
string
(optional)
The region of the address.
streetAddress?
Type:
string
(optional)
The street of the address.
type?
Type:
string
(optional)
The type of address.

.NET
Go
Java
Python
TypeScript