Interface CfnIngestConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIngestConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:09.869Z")
@Stability(Stable)
public interface CfnIngestConfigurationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnIngestConfiguration.
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.ivs.*;
CfnIngestConfigurationProps cfnIngestConfigurationProps = CfnIngestConfigurationProps.builder()
.ingestProtocol("ingestProtocol")
.insecureIngest(false)
.name("name")
.stageArn("stageArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.userId("userId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIngestConfigurationPropsstatic final classAn implementation forCfnIngestConfigurationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringIngest Protocol.default ObjectWhether ingest configuration allows insecure ingest.default StringgetName()IngestConfiguration.default StringStage ARN.getTags()A list of key-value pairs that contain metadata for the asset model.default StringUser defined indentifier for participant associated with IngestConfiguration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIngestProtocol
Ingest Protocol.Default: - "RTMPS"
- See Also:
-
getInsecureIngest
Whether ingest configuration allows insecure ingest.Default: - false
- See Also:
-
getName
IngestConfiguration.Default: - "-"
- See Also:
-
getStageArn
Stage ARN.A value other than an empty string indicates that stage is linked to IngestConfiguration. Default: "" (recording is disabled).
Default: - ""
- See Also:
-
getTags
A list of key-value pairs that contain metadata for the asset model.- See Also:
-
getUserId
User defined indentifier for participant associated with IngestConfiguration.- See Also:
-
builder
-