Interface CfnEncoderConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEncoderConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:25:01.059Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEncoderConfigurationProps
static final class
An 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.
- See Also:
-
builder
-