@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:36.975Z") @Stability(value=Stable) public interface CfnFlowSourceProps extends software.amazon.jsii.JsiiSerializable
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.mediaconnect.*;
CfnFlowSourceProps cfnFlowSourceProps = CfnFlowSourceProps.builder()
.description("description")
.name("name")
// the properties below are optional
.decryption(EncryptionProperty.builder()
.algorithm("algorithm")
.roleArn("roleArn")
// the properties below are optional
.constantInitializationVector("constantInitializationVector")
.deviceId("deviceId")
.keyType("keyType")
.region("region")
.resourceId("resourceId")
.secretArn("secretArn")
.url("url")
.build())
.entitlementArn("entitlementArn")
.flowArn("flowArn")
.ingestPort(123)
.maxBitrate(123)
.maxLatency(123)
.protocol("protocol")
.streamId("streamId")
.vpcInterfaceName("vpcInterfaceName")
.whitelistCidr("whitelistCidr")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFlowSourceProps.Builder
A builder for
CfnFlowSourceProps |
static class |
CfnFlowSourceProps.Jsii$Proxy
An implementation for
CfnFlowSourceProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnFlowSourceProps.Builder |
builder() |
default Object |
getDecryption()
The type of encryption that is used on the content ingested from the source.
|
String |
getDescription()
A description of the source.
|
default String |
getEntitlementArn()
The ARN of the entitlement that allows you to subscribe to the flow.
|
default String |
getFlowArn()
The Amazon Resource Name (ARN) of the flow.
|
default Number |
getIngestPort()
The port that the flow listens on for incoming content.
|
default Number |
getMaxBitrate()
The maximum bitrate for RIST, RTP, and RTP-FEC streams.
|
default Number |
getMaxLatency()
The maximum latency in milliseconds.
|
String |
getName()
The name of the source.
|
default String |
getProtocol()
The protocol that the source uses to deliver the content to MediaConnect.
|
default String |
getStreamId()
The stream ID that you want to use for the transport.
|
default String |
getVpcInterfaceName()
The name of the VPC interface that you want to send your output to.
|
default String |
getWhitelistCidr()
The range of IP addresses that are allowed to contribute content to your source.
|
@Stability(value=Stable) @NotNull String getDescription()
This description is not visible outside of the current AWS account.
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default Object getDecryption()
@Stability(value=Stable) @Nullable default String getEntitlementArn()
The entitlement is set by the content originator, and the ARN is generated as part of the originator's flow.
@Stability(value=Stable) @Nullable default String getFlowArn()
@Stability(value=Stable) @Nullable default Number getIngestPort()
If the protocol of the source is Zixi, the port must be set to 2088.
@Stability(value=Stable) @Nullable default Number getMaxBitrate()
@Stability(value=Stable) @Nullable default Number getMaxLatency()
This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
@Stability(value=Stable) @Nullable default String getProtocol()
@Stability(value=Stable) @Nullable default String getStreamId()
This parameter applies only to Zixi-based streams.
@Stability(value=Stable) @Nullable default String getVpcInterfaceName()
@Stability(value=Stable) @Nullable default String getWhitelistCidr()
Format the IP addresses as a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
@Stability(value=Stable) static CfnFlowSourceProps.Builder builder()
CfnFlowSourceProps.Builder of CfnFlowSourcePropsCopyright © 2022. All rights reserved.