Interface CfnSdiSourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSdiSourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:04.637Z")
@Stability(Stable)
public interface CfnSdiSourceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSdiSource
.
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.medialive.*; CfnSdiSourceProps cfnSdiSourceProps = CfnSdiSourceProps.builder() .name("name") .type("type") // the properties below are optional .mode("mode") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSdiSourceProps
static final class
An implementation forCfnSdiSourceProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the SdiSource.- See Also:
-
getType
The interface mode of the SdiSource.- See Also:
-
getMode
The current state of the SdiSource.- See Also:
-
getTags
A collection of key-value pairs.- See Also:
-
builder
- Returns:
- a
CfnSdiSourceProps.Builder
ofCfnSdiSourceProps
-