Interface CfnLiveSourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLiveSourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:34.268Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnLiveSourceProps
static final class
An implementation forCfnLiveSourceProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnLiveSourceProps.Builder
builder()
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.- 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.Builder
ofCfnLiveSourceProps
-