All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awscdk.services.ivs.alpha.Preset Maven / Gradle / Ivy

There is a newer version: 2.167.1-alpha.0
Show newest version
package software.amazon.awscdk.services.ivs.alpha;

/**
 * (experimental) An optional transcode preset for the channel.
 * 

* This is selectable only for ADVANCED_HD and ADVANCED_SD channel types. *

* Example: *

*

 * Channel myChannel = Channel.Builder.create(this, "myChannel")
 *         .type(ChannelType.ADVANCED_HD)
 *         .preset(Preset.CONSTRAINED_BANDWIDTH_DELIVERY)
 *         .build();
 * 
*

* @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-channel.html */ @javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-24T10:56:42.152Z") @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.ivs.alpha.$Module.class, fqn = "@aws-cdk/aws-ivs-alpha.Preset") public enum Preset { /** * (experimental) Use a lower bitrate than STANDARD for each quality level. *

* Use it if you have low download bandwidth and/or simple video content (e.g., talking heads). */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) CONSTRAINED_BANDWIDTH_DELIVERY, /** * (experimental) Use a higher bitrate for each quality level. *

* Use it if you have high download bandwidth and/or complex video content (e.g., flashes and quick scene changes). */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) HIGHER_BANDWIDTH_DELIVERY, }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy