Interface CfnEncoderConfigurationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEncoderConfigurationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.549Z")
@Stability(Stable)
public interface CfnEncoderConfigurationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnEncoderConfigurationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ivs.*;
CfnEncoderConfigurationMixinProps cfnEncoderConfigurationMixinProps = CfnEncoderConfigurationMixinProps.builder()
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.video(VideoProperty.builder()
.bitrate(123)
.framerate(123)
.height(123)
.width(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEncoderConfigurationMixinPropsstatic final classAn implementation forCfnEncoderConfigurationMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
Encoder cnfiguration name.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
getVideo
Video configuration.Default: video resolution 1280x720, bitrate 2500 kbps, 30 fps. See the Video property type for more information.
Returns union: either
IResolvableorCfnEncoderConfigurationPropsMixin.VideoProperty- See Also:
-
builder
-