interface ImageMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnUserSettingsPropsMixin.ImageMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnUserSettingsPropsMixin_ImageMetadataProperty |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnUserSettingsPropsMixin.ImageMetadataProperty |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnUserSettingsPropsMixin.ImageMetadataProperty |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnUserSettingsPropsMixin » ImageMetadataProperty |
Metadata information about an uploaded image file.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as workspacesweb_mixins } from '@aws-cdk/mixins-preview/aws-workspacesweb';
const imageMetadataProperty: workspacesweb_mixins.CfnUserSettingsPropsMixin.ImageMetadataProperty = {
fileExtension: 'fileExtension',
lastUploadTimestamp: 'lastUploadTimestamp',
mimeType: 'mimeType',
};
Properties
| Name | Type | Description |
|---|---|---|
| file | string | The file extension of the image. |
| last | string | The timestamp when the image was last uploaded. |
| mime | string | The MIME type of the image. |
fileExtension?
Type:
string
(optional)
The file extension of the image.
lastUploadTimestamp?
Type:
string
(optional)
The timestamp when the image was last uploaded.
mimeType?
Type:
string
(optional)
The MIME type of the image.

.NET
Go
Java
Python
TypeScript