Interface CfnFlowOutputProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowOutputProps.Jsii$Proxy
CfnFlowOutput.
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.*;
Object automatic;
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)
.mediaStreamOutputConfigurations(List.of(MediaStreamOutputConfigurationProperty.builder()
.encodingName("encodingName")
.mediaStreamName("mediaStreamName")
// the properties below are optional
.destinationConfigurations(List.of(DestinationConfigurationProperty.builder()
.destinationIp("destinationIp")
.destinationPort(123)
.interface(InterfaceProperty.builder()
.name("name")
.build())
.build()))
.encodingParameters(EncodingParametersProperty.builder()
.compressionFactor(123)
// the properties below are optional
.encoderProfile("encoderProfile")
.build())
.build()))
.minLatency(123)
.name("name")
.ndiProgramName("ndiProgramName")
.ndiSpeedHqQuality(123)
.outputStatus("outputStatus")
.port(123)
.remoteId("remoteId")
.routerIntegrationState("routerIntegrationState")
.routerIntegrationTransitEncryption(FlowTransitEncryptionProperty.builder()
.encryptionKeyConfiguration(FlowTransitEncryptionKeyConfigurationProperty.builder()
.automatic(automatic)
.secretsManager(SecretsManagerEncryptionKeyConfigurationProperty.builder()
.roleArn("roleArn")
.secretArn("secretArn")
.build())
.build())
// the properties below are optional
.encryptionKeyType("encryptionKeyType")
.build())
.smoothingLatency(123)
.streamId("streamId")
.vpcInterfaceAttachment(VpcInterfaceAttachmentProperty.builder()
.vpcInterfaceName("vpcInterfaceName")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowOutputPropsstatic final classAn implementation forCfnFlowOutputProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnFlowOutputProps.Builderbuilder()The range of IP addresses that should be allowed to initiate output requests to this flow.default StringA description of the output.default StringThe IP address where you want to send the output.default ObjectThe type of key used for the encryption.The Amazon Resource Name (ARN) of the flow this output is attached to.default NumberThe maximum latency in milliseconds.default ObjectThe media streams that are associated with the output, and the parameters for those associations.default NumberThe minimum latency in milliseconds for SRT-based streams.default StringgetName()The name of the bridge's output.default StringA suffix for the names of the NDI sources that the flow creates.default NumberA quality setting for the NDI Speed HQ encoder.default StringAn indication of whether the output should transmit data or not.default NumbergetPort()The port to use when content is distributed to this output.The protocol to use for the output.default StringThe remote ID for the Zixi-pull stream.default Stringdefault ObjectThe configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.default NumberThe smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.default StringThe stream ID that you want to use for this transport.default ObjectThe name of the VPC interface attachment to use for this output.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFlowArn
The Amazon Resource Name (ARN) of the flow this output is attached to.- See Also:
-
getProtocol
The protocol to use for the output.AWS Elemental MediaConnect no longer supports the Fujitsu QoS protocol. This reference is maintained for legacy purposes only.
- See Also:
-
getCidrAllowList
The range of IP addresses that should be allowed to initiate output requests to this flow.These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
- See Also:
-
getDescription
A description of the output.This description appears only on the MediaConnect console and will not be seen by the end user.
- See Also:
-
getDestination
The IP address where you want to send the output.- See Also:
-
getEncryption
The type of key used for the encryption.If no
keyTypeis provided, the service will use the default setting (static-key). Allowable encryption types: static-key.Returns union: either
IResolvableorCfnFlowOutput.EncryptionProperty- See Also:
-
getMaxLatency
The maximum latency in milliseconds.This parameter applies only to RIST-based and Zixi-based streams.
- See Also:
-
getMediaStreamOutputConfigurations
The media streams that are associated with the output, and the parameters for those associations.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnFlowOutput.MediaStreamOutputConfigurationProperty>- See Also:
-
getMinLatency
The minimum latency in milliseconds for SRT-based streams.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.
- See Also:
-
getName
The name of the bridge's output.- See Also:
-
getNdiProgramName
A suffix for the names of the NDI sources that the flow creates.If a custom name isn't specified, MediaConnect uses the output name.
- See Also:
-
getNdiSpeedHqQuality
A quality setting for the NDI Speed HQ encoder.- See Also:
-
getOutputStatus
An indication of whether the output should transmit data or not.- See Also:
-
getPort
The port to use when content is distributed to this output.- See Also:
-
getRemoteId
The remote ID for the Zixi-pull stream.- See Also:
-
getRouterIntegrationState
- See Also:
-
getRouterIntegrationTransitEncryption
The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.Returns union: either
IResolvableorCfnFlowOutput.FlowTransitEncryptionProperty- See Also:
-
getSmoothingLatency
The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.- See Also:
-
getStreamId
The stream ID that you want to use for this transport.This parameter applies only to Zixi and SRT caller-based streams.
- See Also:
-
getVpcInterfaceAttachment
The name of the VPC interface attachment to use for this output.Returns union: either
IResolvableorCfnFlowOutput.VpcInterfaceAttachmentProperty- See Also:
-
builder
- Returns:
- a
CfnFlowOutputProps.BuilderofCfnFlowOutputProps
-