Interface CfnLiveSourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLiveSourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:13.742Z")
@Stability(Stable)
public interface CfnLiveSourceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnLiveSource.
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.mediatailor.*;
CfnLiveSourceProps cfnLiveSourceProps = CfnLiveSourceProps.builder()
.httpPackageConfigurations(List.of(HttpPackageConfigurationProperty.builder()
.path("path")
.sourceGroup("sourceGroup")
.type("type")
.build()))
.liveSourceName("liveSourceName")
.sourceLocationName("sourceLocationName")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLiveSourcePropsstatic final classAn implementation forCfnLiveSourceProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnLiveSourceProps.Builderbuilder()The HTTP package configurations for the live source.The name that's used to refer to a live source.The name of the source location.getTags()The tags assigned to the live source.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: '<'eitherIResolvableorCfnLiveSource.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
CfnLiveSourceProps.BuilderofCfnLiveSourceProps
-