Interface CfnEncoderConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEncoderConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:54.245Z")
@Stability(Stable)
public interface CfnEncoderConfigurationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnEncoderConfiguration.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ivs.*;
CfnEncoderConfigurationProps cfnEncoderConfigurationProps = CfnEncoderConfigurationProps.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 forCfnEncoderConfigurationPropsstatic final classAn implementation forCfnEncoderConfigurationProps -
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
IResolvableorCfnEncoderConfiguration.VideoProperty- See Also:
-
builder
-