Interface CfnLiveSourceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLiveSourceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:22.824Z")
@Stability(Stable)
public interface CfnLiveSourceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnLiveSourcePropsMixin.
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.mediatailor.*;
CfnLiveSourceMixinProps cfnLiveSourceMixinProps = CfnLiveSourceMixinProps.builder()
.httpPackageConfigurations(List.of(HttpPackageConfigurationProperty.builder()
.path("path")
.sourceGroup("sourceGroup")
.type("type")
.build()))
.liveSourceName("liveSourceName")
.sourceLocationName("sourceLocationName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLiveSourceMixinPropsstatic final classAn implementation forCfnLiveSourceMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHttpPackageConfigurations
The HTTP package configurations for the live source.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnLiveSourcePropsMixin.HttpPackageConfigurationProperty>- See Also:
-
getLiveSourceName
The name that's used to refer to a live source.- See Also:
-
getSourceLocationName
The name of the source location.- See Also:
-
getTags
The tags assigned to the live source.Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see Tagging AWS Elemental MediaTailor Resources .
- See Also:
-
builder
- Returns:
- a
CfnLiveSourceMixinProps.BuilderofCfnLiveSourceMixinProps
-