interface MediaItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnWorkspace.MediaItemProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnWorkspace_MediaItemProperty |
Java | software.amazon.awscdk.services.connect.CfnWorkspace.MediaItemProperty |
Python | aws_cdk.aws_connect.CfnWorkspace.MediaItemProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnWorkspace » MediaItemProperty |
Contains information about a media asset used in a workspace.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const mediaItemProperty: connect.CfnWorkspace.MediaItemProperty = {
type: 'type',
// the properties below are optional
source: 'source',
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | The type of media. |
| source? | string | The source URL or data for the media asset. |
type
Type:
string
The type of media.
Valid values are: IMAGE_LOGO_FAVICON and IMAGE_LOGO_HORIZONTAL .
source?
Type:
string
(optional)
The source URL or data for the media asset.

.NET
Go
Java
Python
TypeScript