interface PhotosItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IdentityStore.CfnUser.PhotosItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsidentitystore#CfnUser_PhotosItemsProperty |
Java | software.amazon.awscdk.services.identitystore.CfnUser.PhotosItemsProperty |
Python | aws_cdk.aws_identitystore.CfnUser.PhotosItemsProperty |
TypeScript | aws-cdk-lib » aws_identitystore » CfnUser » PhotosItemsProperty |
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 photosItemsProperty: identitystore.CfnUser.PhotosItemsProperty = {
value: 'value',
// the properties below are optional
display: 'display',
primary: false,
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The photo data or URL. |
| display? | string | A display name for the photo. |
| primary? | boolean | IResolvable | Whether this is the primary photo. |
| type? | string | The type of photo. |
value
Type:
string
The photo data or URL.
display?
Type:
string
(optional)
A display name for the photo.
primary?
Type:
boolean | IResolvable
(optional)
Whether this is the primary photo.
type?
Type:
string
(optional)
The type of photo.

.NET
Go
Java
Python
TypeScript