@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.771Z") @Stability(value=Stable) public interface CfnFlowOutputProps 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.*;
CfnFlowOutputProps cfnFlowOutputProps = CfnFlowOutputProps.builder()
.flowArn("flowArn")
.protocol("protocol")
// the properties below are optional
.cidrAllowList(List.of("cidrAllowList"))
.description("description")
.destination("destination")
.encryption(EncryptionProperty.builder()
.roleArn("roleArn")
.secretArn("secretArn")
// the properties below are optional
.algorithm("algorithm")
.keyType("keyType")
.build())
.maxLatency(123)
.minLatency(123)
.name("name")
.port(123)
.remoteId("remoteId")
.smoothingLatency(123)
.streamId("streamId")
.vpcInterfaceAttachment(VpcInterfaceAttachmentProperty.builder()
.vpcInterfaceName("vpcInterfaceName")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFlowOutputProps.Builder
A builder for
CfnFlowOutputProps |
static class |
CfnFlowOutputProps.Jsii$Proxy
An implementation for
CfnFlowOutputProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnFlowOutputProps.Builder |
builder() |
default List<String> |
getCidrAllowList()
The range of IP addresses that are allowed to initiate output requests to this flow.
|
default String |
getDescription()
A description of the output.
|
default String |
getDestination()
The IP address where you want to send the output.
|
default Object |
getEncryption()
The encryption credentials that you want to use for the output.
|
String |
getFlowArn()
The Amazon Resource Name (ARN) of the flow.
|
default Number |
getMaxLatency()
The maximum latency in milliseconds for Zixi-based streams.
|
default Number |
getMinLatency()
The minimum latency in milliseconds for SRT-based streams.
|
default String |
getName()
The name of the VPC interface.
|
default Number |
getPort()
The port to use when MediaConnect distributes content to the output.
|
String |
getProtocol()
The protocol to use for the output.
|
default String |
getRemoteId()
The identifier that is assigned to the Zixi receiver.
|
default Number |
getSmoothingLatency()
The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
|
default String |
getStreamId()
The stream ID that you want to use for the transport.
|
default Object |
getVpcInterfaceAttachment()
The VPC interface that you want to send your output to.
|
@Stability(value=Stable) @NotNull String getFlowArn()
@Stability(value=Stable) @NotNull String getProtocol()
@Stability(value=Stable) @Nullable default List<String> getCidrAllowList()
Format the IP addresses as a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
@Stability(value=Stable) @Nullable default String getDescription()
This description is not visible outside of the current AWS account even if the account grants entitlements to other accounts.
@Stability(value=Stable) @Nullable default String getDestination()
@Stability(value=Stable) @Nullable default Object getEncryption()
@Stability(value=Stable) @Nullable default Number getMaxLatency()
@Stability(value=Stable) @Nullable default Number getMinLatency()
In streams that use the SRT protocol, this value that you set on your MediaConnect source or output represents the minimal potential latency of that connection. The latency of the stream is set to the highest number between the sender’s minimum latency and the receiver’s minimum latency.
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Number getPort()
@Stability(value=Stable) @Nullable default String getRemoteId()
This parameter applies only to outputs that use Zixi pull.
@Stability(value=Stable) @Nullable default Number getSmoothingLatency()
@Stability(value=Stable) @Nullable default String getStreamId()
This parameter applies only to Zixi-based streams.
@Stability(value=Stable) @Nullable default Object getVpcInterfaceAttachment()
@Stability(value=Stable) static CfnFlowOutputProps.Builder builder()
CfnFlowOutputProps.Builder of CfnFlowOutputPropsCopyright © 2022. All rights reserved.