Interface CfnVodSourceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVodSourceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-27T13:12:17.150Z")
@Stability(Stable)
public interface CfnVodSourceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnVodSourcePropsMixin.
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.*;
CfnVodSourceMixinProps cfnVodSourceMixinProps = CfnVodSourceMixinProps.builder()
.httpPackageConfigurations(List.of(HttpPackageConfigurationProperty.builder()
.path("path")
.sourceGroup("sourceGroup")
.type("type")
.build()))
.sourceLocationName("sourceLocationName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.vodSourceName("vodSourceName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVodSourceMixinPropsstatic final classAn implementation forCfnVodSourceMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHttpPackageConfigurations
The HTTP package configurations for the VOD source.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnVodSourcePropsMixin.HttpPackageConfigurationProperty>- See Also:
-
getSourceLocationName
The name of the source location that the VOD source is associated with.- See Also:
-
getTags
The tags assigned to the VOD 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:
-
getVodSourceName
The name of the VOD source.- See Also:
-
builder
- Returns:
- a
CfnVodSourceMixinProps.BuilderofCfnVodSourceMixinProps
-