interface ImageMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpacesWeb.CfnUserSettings.ImageMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspacesweb#CfnUserSettings_ImageMetadataProperty |
Java | software.amazon.awscdk.services.workspacesweb.CfnUserSettings.ImageMetadataProperty |
Python | aws_cdk.aws_workspacesweb.CfnUserSettings.ImageMetadataProperty |
TypeScript | aws-cdk-lib » aws_workspacesweb » CfnUserSettings » 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 { aws_workspacesweb as workspacesweb } from 'aws-cdk-lib';
const imageMetadataProperty: workspacesweb.CfnUserSettings.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
The file extension of the image.
lastUploadTimestamp
Type:
string
The timestamp when the image was last uploaded.
mimeType
Type:
string
The MIME type of the image.

.NET
Go
Java
Python
TypeScript