interface BumperProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaTailor.CfnPlaybackConfiguration.BumperProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnPlaybackConfiguration_BumperProperty |
Java | software.amazon.awscdk.services.mediatailor.CfnPlaybackConfiguration.BumperProperty |
Python | aws_cdk.aws_mediatailor.CfnPlaybackConfiguration.BumperProperty |
TypeScript | aws-cdk-lib » aws_mediatailor » CfnPlaybackConfiguration » BumperProperty |
The configuration for bumpers.
Bumpers are short audio or video clips that play at the start or before the end of an ad break. To learn more about bumpers, see Bumpers .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediatailor as mediatailor } from 'aws-cdk-lib';
const bumperProperty: mediatailor.CfnPlaybackConfiguration.BumperProperty = {
endUrl: 'endUrl',
startUrl: 'startUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| end | string | The URL for the end bumper asset. |
| start | string | The URL for the start bumper asset. |
endUrl?
Type:
string
(optional)
The URL for the end bumper asset.
startUrl?
Type:
string
(optional)
The URL for the start bumper asset.

.NET
Go
Java
Python
TypeScript