All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.medialive.model.RtmpOutputSettings Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Elemental MediaLive module holds the client classes that are used for communicating with AWS Elemental MediaLive Service

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.medialive.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * Rtmp Output Settings
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class RtmpOutputSettings implements Serializable, Cloneable, StructuredPojo {

    /**
     * If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA). This will
     * cause rtmps outputs with self-signed certificates to fail.
     */
    private String certificateMode;
    /** Number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost. */
    private Integer connectionRetryInterval;
    /**
     * The RTMP endpoint excluding the stream name (eg. rtmp://host/appname). For connection to Akamai, a username and
     * password must be supplied. URI fields accept format identifiers.
     */
    private OutputLocationRef destination;
    /** Number of retry attempts. */
    private Integer numRetries;

    /**
     * If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA). This will
     * cause rtmps outputs with self-signed certificates to fail.
     * 
     * @param certificateMode
     *        If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA).
     *        This will cause rtmps outputs with self-signed certificates to fail.
     * @see RtmpOutputCertificateMode
     */

    public void setCertificateMode(String certificateMode) {
        this.certificateMode = certificateMode;
    }

    /**
     * If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA). This will
     * cause rtmps outputs with self-signed certificates to fail.
     * 
     * @return If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA).
     *         This will cause rtmps outputs with self-signed certificates to fail.
     * @see RtmpOutputCertificateMode
     */

    public String getCertificateMode() {
        return this.certificateMode;
    }

    /**
     * If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA). This will
     * cause rtmps outputs with self-signed certificates to fail.
     * 
     * @param certificateMode
     *        If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA).
     *        This will cause rtmps outputs with self-signed certificates to fail.
     * @return Returns a reference to this object so that method calls can be chained together.
     * @see RtmpOutputCertificateMode
     */

    public RtmpOutputSettings withCertificateMode(String certificateMode) {
        setCertificateMode(certificateMode);
        return this;
    }

    /**
     * If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA). This will
     * cause rtmps outputs with self-signed certificates to fail.
     * 
     * @param certificateMode
     *        If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA).
     *        This will cause rtmps outputs with self-signed certificates to fail.
     * @return Returns a reference to this object so that method calls can be chained together.
     * @see RtmpOutputCertificateMode
     */

    public RtmpOutputSettings withCertificateMode(RtmpOutputCertificateMode certificateMode) {
        this.certificateMode = certificateMode.toString();
        return this;
    }

    /**
     * Number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.
     * 
     * @param connectionRetryInterval
     *        Number of seconds to wait before retrying a connection to the Flash Media server if the connection is
     *        lost.
     */

    public void setConnectionRetryInterval(Integer connectionRetryInterval) {
        this.connectionRetryInterval = connectionRetryInterval;
    }

    /**
     * Number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.
     * 
     * @return Number of seconds to wait before retrying a connection to the Flash Media server if the connection is
     *         lost.
     */

    public Integer getConnectionRetryInterval() {
        return this.connectionRetryInterval;
    }

    /**
     * Number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.
     * 
     * @param connectionRetryInterval
     *        Number of seconds to wait before retrying a connection to the Flash Media server if the connection is
     *        lost.
     * @return Returns a reference to this object so that method calls can be chained together.
     */

    public RtmpOutputSettings withConnectionRetryInterval(Integer connectionRetryInterval) {
        setConnectionRetryInterval(connectionRetryInterval);
        return this;
    }

    /**
     * The RTMP endpoint excluding the stream name (eg. rtmp://host/appname). For connection to Akamai, a username and
     * password must be supplied. URI fields accept format identifiers.
     * 
     * @param destination
     *        The RTMP endpoint excluding the stream name (eg. rtmp://host/appname). For connection to Akamai, a
     *        username and password must be supplied. URI fields accept format identifiers.
     */

    public void setDestination(OutputLocationRef destination) {
        this.destination = destination;
    }

    /**
     * The RTMP endpoint excluding the stream name (eg. rtmp://host/appname). For connection to Akamai, a username and
     * password must be supplied. URI fields accept format identifiers.
     * 
     * @return The RTMP endpoint excluding the stream name (eg. rtmp://host/appname). For connection to Akamai, a
     *         username and password must be supplied. URI fields accept format identifiers.
     */

    public OutputLocationRef getDestination() {
        return this.destination;
    }

    /**
     * The RTMP endpoint excluding the stream name (eg. rtmp://host/appname). For connection to Akamai, a username and
     * password must be supplied. URI fields accept format identifiers.
     * 
     * @param destination
     *        The RTMP endpoint excluding the stream name (eg. rtmp://host/appname). For connection to Akamai, a
     *        username and password must be supplied. URI fields accept format identifiers.
     * @return Returns a reference to this object so that method calls can be chained together.
     */

    public RtmpOutputSettings withDestination(OutputLocationRef destination) {
        setDestination(destination);
        return this;
    }

    /**
     * Number of retry attempts.
     * 
     * @param numRetries
     *        Number of retry attempts.
     */

    public void setNumRetries(Integer numRetries) {
        this.numRetries = numRetries;
    }

    /**
     * Number of retry attempts.
     * 
     * @return Number of retry attempts.
     */

    public Integer getNumRetries() {
        return this.numRetries;
    }

    /**
     * Number of retry attempts.
     * 
     * @param numRetries
     *        Number of retry attempts.
     * @return Returns a reference to this object so that method calls can be chained together.
     */

    public RtmpOutputSettings withNumRetries(Integer numRetries) {
        setNumRetries(numRetries);
        return this;
    }

    /**
     * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
     * redacted from this string using a placeholder value.
     *
     * @return A string representation of this object.
     *
     * @see java.lang.Object#toString()
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("{");
        if (getCertificateMode() != null)
            sb.append("CertificateMode: ").append(getCertificateMode()).append(",");
        if (getConnectionRetryInterval() != null)
            sb.append("ConnectionRetryInterval: ").append(getConnectionRetryInterval()).append(",");
        if (getDestination() != null)
            sb.append("Destination: ").append(getDestination()).append(",");
        if (getNumRetries() != null)
            sb.append("NumRetries: ").append(getNumRetries());
        sb.append("}");
        return sb.toString();
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;

        if (obj instanceof RtmpOutputSettings == false)
            return false;
        RtmpOutputSettings other = (RtmpOutputSettings) obj;
        if (other.getCertificateMode() == null ^ this.getCertificateMode() == null)
            return false;
        if (other.getCertificateMode() != null && other.getCertificateMode().equals(this.getCertificateMode()) == false)
            return false;
        if (other.getConnectionRetryInterval() == null ^ this.getConnectionRetryInterval() == null)
            return false;
        if (other.getConnectionRetryInterval() != null && other.getConnectionRetryInterval().equals(this.getConnectionRetryInterval()) == false)
            return false;
        if (other.getDestination() == null ^ this.getDestination() == null)
            return false;
        if (other.getDestination() != null && other.getDestination().equals(this.getDestination()) == false)
            return false;
        if (other.getNumRetries() == null ^ this.getNumRetries() == null)
            return false;
        if (other.getNumRetries() != null && other.getNumRetries().equals(this.getNumRetries()) == false)
            return false;
        return true;
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int hashCode = 1;

        hashCode = prime * hashCode + ((getCertificateMode() == null) ? 0 : getCertificateMode().hashCode());
        hashCode = prime * hashCode + ((getConnectionRetryInterval() == null) ? 0 : getConnectionRetryInterval().hashCode());
        hashCode = prime * hashCode + ((getDestination() == null) ? 0 : getDestination().hashCode());
        hashCode = prime * hashCode + ((getNumRetries() == null) ? 0 : getNumRetries().hashCode());
        return hashCode;
    }

    @Override
    public RtmpOutputSettings clone() {
        try {
            return (RtmpOutputSettings) super.clone();
        } catch (CloneNotSupportedException e) {
            throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
        }
    }

    @com.amazonaws.annotation.SdkInternalApi
    @Override
    public void marshall(ProtocolMarshaller protocolMarshaller) {
        com.amazonaws.services.medialive.model.transform.RtmpOutputSettingsMarshaller.getInstance().marshall(this, protocolMarshaller);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy