Interface Output.Builder

All Superinterfaces:
Buildable, CopyableBuilder<Output.Builder,Output>, SdkBuilder<Output.Builder,Output>, SdkPojo
Enclosing class:
Output

public static interface Output.Builder extends SdkPojo, CopyableBuilder<Output.Builder,Output>
  • Method Details

    • dataTransferSubscriberFeePercent

      Output.Builder dataTransferSubscriberFeePercent(Integer dataTransferSubscriberFeePercent)
      Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
      Parameters:
      dataTransferSubscriberFeePercent - Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • description

      Output.Builder description(String description)
      A description of the output.
      Parameters:
      description - A description of the output.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • destination

      Output.Builder destination(String destination)
      The address where you want to send the output.
      Parameters:
      destination - The address where you want to send the output.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • encryption

      Output.Builder encryption(Encryption encryption)
      The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key).
      Parameters:
      encryption - The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key).
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • encryption

      default Output.Builder encryption(Consumer<Encryption.Builder> encryption)
      The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key). This is a convenience method that creates an instance of the Encryption.Builder avoiding the need to create one manually via Encryption.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to encryption(Encryption).

      Parameters:
      encryption - a consumer that will call methods on Encryption.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • entitlementArn

      Output.Builder entitlementArn(String entitlementArn)
      The ARN of the entitlement on the originator''s flow. This value is relevant only on entitled flows.
      Parameters:
      entitlementArn - The ARN of the entitlement on the originator''s flow. This value is relevant only on entitled flows.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • listenerAddress

      Output.Builder listenerAddress(String listenerAddress)
      The IP address that the receiver requires in order to establish a connection with the flow. For public networking, the ListenerAddress is represented by the elastic IP address of the flow. For private networking, the ListenerAddress is represented by the elastic network interface IP address of the VPC. This field applies only to outputs that use the Zixi pull or SRT listener protocol.
      Parameters:
      listenerAddress - The IP address that the receiver requires in order to establish a connection with the flow. For public networking, the ListenerAddress is represented by the elastic IP address of the flow. For private networking, the ListenerAddress is represented by the elastic network interface IP address of the VPC. This field applies only to outputs that use the Zixi pull or SRT listener protocol.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • mediaLiveInputArn

      Output.Builder mediaLiveInputArn(String mediaLiveInputArn)
      The input ARN of the AWS Elemental MediaLive channel. This parameter is relevant only for outputs that were added by creating a MediaLive input.
      Parameters:
      mediaLiveInputArn - The input ARN of the AWS Elemental MediaLive channel. This parameter is relevant only for outputs that were added by creating a MediaLive input.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • mediaStreamOutputConfigurations

      Output.Builder mediaStreamOutputConfigurations(Collection<MediaStreamOutputConfiguration> mediaStreamOutputConfigurations)
      The configuration for each media stream that is associated with the output.
      Parameters:
      mediaStreamOutputConfigurations - The configuration for each media stream that is associated with the output.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • mediaStreamOutputConfigurations

      Output.Builder mediaStreamOutputConfigurations(MediaStreamOutputConfiguration... mediaStreamOutputConfigurations)
      The configuration for each media stream that is associated with the output.
      Parameters:
      mediaStreamOutputConfigurations - The configuration for each media stream that is associated with the output.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • mediaStreamOutputConfigurations

      Output.Builder mediaStreamOutputConfigurations(Consumer<MediaStreamOutputConfiguration.Builder>... mediaStreamOutputConfigurations)
      The configuration for each media stream that is associated with the output. This is a convenience method that creates an instance of the MediaStreamOutputConfiguration.Builder avoiding the need to create one manually via MediaStreamOutputConfiguration.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to mediaStreamOutputConfigurations(List<MediaStreamOutputConfiguration>).

      Parameters:
      mediaStreamOutputConfigurations - a consumer that will call methods on MediaStreamOutputConfiguration.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • name

      Output.Builder name(String name)
      The name of the output. This value must be unique within the current flow.
      Parameters:
      name - The name of the output. This value must be unique within the current flow.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • outputArn

      Output.Builder outputArn(String outputArn)
      The ARN of the output.
      Parameters:
      outputArn - The ARN of the output.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • port

      Output.Builder port(Integer port)
      The port to use when content is distributed to this output.
      Parameters:
      port - The port to use when content is distributed to this output.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • transport

      Output.Builder transport(Transport transport)
      Attributes related to the transport stream that are used in the output.
      Parameters:
      transport - Attributes related to the transport stream that are used in the output.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • transport

      default Output.Builder transport(Consumer<Transport.Builder> transport)
      Attributes related to the transport stream that are used in the output. This is a convenience method that creates an instance of the Transport.Builder avoiding the need to create one manually via Transport.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to transport(Transport).

      Parameters:
      transport - a consumer that will call methods on Transport.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • vpcInterfaceAttachment

      Output.Builder vpcInterfaceAttachment(VpcInterfaceAttachment vpcInterfaceAttachment)
      The name of the VPC interface attachment to use for this output.
      Parameters:
      vpcInterfaceAttachment - The name of the VPC interface attachment to use for this output.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • vpcInterfaceAttachment

      default Output.Builder vpcInterfaceAttachment(Consumer<VpcInterfaceAttachment.Builder> vpcInterfaceAttachment)
      The name of the VPC interface attachment to use for this output. This is a convenience method that creates an instance of the VpcInterfaceAttachment.Builder avoiding the need to create one manually via VpcInterfaceAttachment.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to vpcInterfaceAttachment(VpcInterfaceAttachment).

      Parameters:
      vpcInterfaceAttachment - a consumer that will call methods on VpcInterfaceAttachment.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • bridgeArn

      Output.Builder bridgeArn(String bridgeArn)
      The ARN of the bridge that added this output.
      Parameters:
      bridgeArn - The ARN of the bridge that added this output.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • bridgePorts

      Output.Builder bridgePorts(Collection<Integer> bridgePorts)
      The bridge output ports currently in use.
      Parameters:
      bridgePorts - The bridge output ports currently in use.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • bridgePorts

      Output.Builder bridgePorts(Integer... bridgePorts)
      The bridge output ports currently in use.
      Parameters:
      bridgePorts - The bridge output ports currently in use.
      Returns:
      Returns a reference to this object so that method calls can be chained together.