Class CfnSdiSource

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, ITaggableV2, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.109.0 (build c221850)", date="2025-03-14T03:25:01.357Z") @Stability(Stable) public class CfnSdiSource extends CfnResource implements IInspectable, ITaggableV2
Definition of AWS::MediaLive::SdiSource Resource Type.

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.*;
 CfnSdiSource cfnSdiSource = CfnSdiSource.Builder.create(this, "MyCfnSdiSource")
         .name("name")
         .type("type")
         // the properties below are optional
         .mode("mode")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnSdiSource

      protected CfnSdiSource(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnSdiSource

      protected CfnSdiSource(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnSdiSource

      @Stability(Stable) public CfnSdiSource(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnSdiSourceProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The unique arn of the SdiSource.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      The unique identifier of the SdiSource.
    • getAttrInputs

      @Stability(Stable) @NotNull public List<String> getAttrInputs()
      The list of inputs currently using this SDI source.
    • getAttrState

      @Stability(Stable) @NotNull public String getAttrState()
      The current state of the SdiSource.
    • getCdkTagManager

      @Stability(Stable) @NotNull public TagManager getCdkTagManager()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getCdkTagManager in interface ITaggableV2
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getName

      @Stability(Stable) @NotNull public String getName()
      The name of the SdiSource.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      The name of the SdiSource.
    • getType

      @Stability(Stable) @NotNull public String getType()
      The interface mode of the SdiSource.
    • setType

      @Stability(Stable) public void setType(@NotNull String value)
      The interface mode of the SdiSource.
    • getMode

      @Stability(Stable) @Nullable public String getMode()
      The current state of the SdiSource.
    • setMode

      @Stability(Stable) public void setMode(@Nullable String value)
      The current state of the SdiSource.
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
      A collection of key-value pairs.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)
      A collection of key-value pairs.