interface MediaItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnWorkspacePropsMixin.MediaItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnWorkspacePropsMixin_MediaItemProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnWorkspacePropsMixin.MediaItemProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnWorkspacePropsMixin.MediaItemProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnWorkspacePropsMixin » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const mediaItemProperty: connect_mixins.CfnWorkspacePropsMixin.MediaItemProperty = {
source: 'source',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| source? | string | The source URL or data for the media asset. |
| type? | string | The type of media. |
source?
Type:
string
(optional)
The source URL or data for the media asset.
type?
Type:
string
(optional)
The type of media.
Valid values are: IMAGE_LOGO_FAVICON and IMAGE_LOGO_HORIZONTAL .

.NET
Go
Java
Python
TypeScript