Interface CfnIngestConfigurationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIngestConfigurationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.551Z")
@Stability(Stable)
public interface CfnIngestConfigurationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnIngestConfigurationPropsMixin.
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.ivs.*;
CfnIngestConfigurationMixinProps cfnIngestConfigurationMixinProps = CfnIngestConfigurationMixinProps.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 forCfnIngestConfigurationMixinPropsstatic final classAn implementation forCfnIngestConfigurationMixinProps -
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
-