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

com.amazonaws.services.mediapackagevod.model.CmafPackage Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.778
Show newest version
/*
 * Copyright 2016-2021 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.mediapackagevod.model;

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

/**
 * A CMAF packaging configuration.
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CmafPackage implements Serializable, Cloneable, StructuredPojo {

    private CmafEncryption encryption;
    /** A list of HLS manifest configurations. */
    private java.util.List hlsManifests;
    /**
     * Duration (in seconds) of each fragment. Actual fragments will be rounded to the nearest multiple of the source
     * fragment duration.
     */
    private Integer segmentDurationSeconds;

    /**
     * @param encryption
     */

    public void setEncryption(CmafEncryption encryption) {
        this.encryption = encryption;
    }

    /**
     * @return
     */

    public CmafEncryption getEncryption() {
        return this.encryption;
    }

    /**
     * @param encryption
     * @return Returns a reference to this object so that method calls can be chained together.
     */

    public CmafPackage withEncryption(CmafEncryption encryption) {
        setEncryption(encryption);
        return this;
    }

    /**
     * A list of HLS manifest configurations.
     * 
     * @return A list of HLS manifest configurations.
     */

    public java.util.List getHlsManifests() {
        return hlsManifests;
    }

    /**
     * A list of HLS manifest configurations.
     * 
     * @param hlsManifests
     *        A list of HLS manifest configurations.
     */

    public void setHlsManifests(java.util.Collection hlsManifests) {
        if (hlsManifests == null) {
            this.hlsManifests = null;
            return;
        }

        this.hlsManifests = new java.util.ArrayList(hlsManifests);
    }

    /**
     * A list of HLS manifest configurations.
     * 

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setHlsManifests(java.util.Collection)} or {@link #withHlsManifests(java.util.Collection)} if you want to * override the existing values. *

* * @param hlsManifests * A list of HLS manifest configurations. * @return Returns a reference to this object so that method calls can be chained together. */ public CmafPackage withHlsManifests(HlsManifest... hlsManifests) { if (this.hlsManifests == null) { setHlsManifests(new java.util.ArrayList(hlsManifests.length)); } for (HlsManifest ele : hlsManifests) { this.hlsManifests.add(ele); } return this; } /** * A list of HLS manifest configurations. * * @param hlsManifests * A list of HLS manifest configurations. * @return Returns a reference to this object so that method calls can be chained together. */ public CmafPackage withHlsManifests(java.util.Collection hlsManifests) { setHlsManifests(hlsManifests); return this; } /** * Duration (in seconds) of each fragment. Actual fragments will be rounded to the nearest multiple of the source * fragment duration. * * @param segmentDurationSeconds * Duration (in seconds) of each fragment. Actual fragments will be rounded to the nearest multiple of the * source fragment duration. */ public void setSegmentDurationSeconds(Integer segmentDurationSeconds) { this.segmentDurationSeconds = segmentDurationSeconds; } /** * Duration (in seconds) of each fragment. Actual fragments will be rounded to the nearest multiple of the source * fragment duration. * * @return Duration (in seconds) of each fragment. Actual fragments will be rounded to the nearest multiple of the * source fragment duration. */ public Integer getSegmentDurationSeconds() { return this.segmentDurationSeconds; } /** * Duration (in seconds) of each fragment. Actual fragments will be rounded to the nearest multiple of the source * fragment duration. * * @param segmentDurationSeconds * Duration (in seconds) of each fragment. Actual fragments will be rounded to the nearest multiple of the * source fragment duration. * @return Returns a reference to this object so that method calls can be chained together. */ public CmafPackage withSegmentDurationSeconds(Integer segmentDurationSeconds) { setSegmentDurationSeconds(segmentDurationSeconds); 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 (getEncryption() != null) sb.append("Encryption: ").append(getEncryption()).append(","); if (getHlsManifests() != null) sb.append("HlsManifests: ").append(getHlsManifests()).append(","); if (getSegmentDurationSeconds() != null) sb.append("SegmentDurationSeconds: ").append(getSegmentDurationSeconds()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CmafPackage == false) return false; CmafPackage other = (CmafPackage) obj; if (other.getEncryption() == null ^ this.getEncryption() == null) return false; if (other.getEncryption() != null && other.getEncryption().equals(this.getEncryption()) == false) return false; if (other.getHlsManifests() == null ^ this.getHlsManifests() == null) return false; if (other.getHlsManifests() != null && other.getHlsManifests().equals(this.getHlsManifests()) == false) return false; if (other.getSegmentDurationSeconds() == null ^ this.getSegmentDurationSeconds() == null) return false; if (other.getSegmentDurationSeconds() != null && other.getSegmentDurationSeconds().equals(this.getSegmentDurationSeconds()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getEncryption() == null) ? 0 : getEncryption().hashCode()); hashCode = prime * hashCode + ((getHlsManifests() == null) ? 0 : getHlsManifests().hashCode()); hashCode = prime * hashCode + ((getSegmentDurationSeconds() == null) ? 0 : getSegmentDurationSeconds().hashCode()); return hashCode; } @Override public CmafPackage clone() { try { return (CmafPackage) 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.mediapackagevod.model.transform.CmafPackageMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy