Interface CfnIngestConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIngestConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:43.702Z")
@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 StringType of ingest protocol that the user employs for broadcasting.default ObjectWhether the channel allows insecure RTMP ingest.default StringgetName()Ingest name.default StringARN of the stage with which the IngestConfiguration is associated.getTags()An array of key-value pairs to apply to this resource.default StringCustomer-assigned name to help identify the participant using the IngestConfiguration;Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIngestProtocol
Type of ingest protocol that the user employs for broadcasting.Default: - "RTMPS"
- See Also:
-
getInsecureIngest
Whether the channel allows insecure RTMP ingest.Default:
false.Returns union: either
BooleanorIResolvableDefault: - false
- See Also:
-
getName
Ingest name.Default: - "-"
- See Also:
-
getStageArn
ARN of the stage with which the IngestConfiguration is associated.Default: - ""
- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
getUserId
Customer-assigned name to help identify the participant using the IngestConfiguration;this can be used to link a participant to a user in the customer’s own systems. This can be any UTF-8 encoded text. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
- See Also:
-
builder
-