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

.NET
Go
Java
Python
TypeScript