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

com.amazonaws.services.ivs.model.ThumbnailConfiguration Maven / Gradle / Ivy

/*
 * Copyright 2017-2022 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.ivs.model;

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

/**
 * 

* An object representing a configuration of thumbnails for recorded video. *

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

* Thumbnail recording mode. Default: INTERVAL. *

*/ private String recordingMode; /** *

* The targeted thumbnail-generation interval in seconds. This is configurable (and required) only if * recordingMode is INTERVAL. Default: 60. *

*

* Important: Setting a value for targetIntervalSeconds does not guarantee that thumbnails are * generated at the specified interval. For thumbnails to be generated at the targetIntervalSeconds * interval, the IDR/Keyframe value for the input video must be less than the * targetIntervalSeconds value. See Amazon IVS Streaming * Configuration for information on setting IDR/Keyframe to the recommended value in video-encoder * settings. *

*/ private Long targetIntervalSeconds; /** *

* Thumbnail recording mode. Default: INTERVAL. *

* * @param recordingMode * Thumbnail recording mode. Default: INTERVAL. * @see RecordingMode */ public void setRecordingMode(String recordingMode) { this.recordingMode = recordingMode; } /** *

* Thumbnail recording mode. Default: INTERVAL. *

* * @return Thumbnail recording mode. Default: INTERVAL. * @see RecordingMode */ public String getRecordingMode() { return this.recordingMode; } /** *

* Thumbnail recording mode. Default: INTERVAL. *

* * @param recordingMode * Thumbnail recording mode. Default: INTERVAL. * @return Returns a reference to this object so that method calls can be chained together. * @see RecordingMode */ public ThumbnailConfiguration withRecordingMode(String recordingMode) { setRecordingMode(recordingMode); return this; } /** *

* Thumbnail recording mode. Default: INTERVAL. *

* * @param recordingMode * Thumbnail recording mode. Default: INTERVAL. * @return Returns a reference to this object so that method calls can be chained together. * @see RecordingMode */ public ThumbnailConfiguration withRecordingMode(RecordingMode recordingMode) { this.recordingMode = recordingMode.toString(); return this; } /** *

* The targeted thumbnail-generation interval in seconds. This is configurable (and required) only if * recordingMode is INTERVAL. Default: 60. *

*

* Important: Setting a value for targetIntervalSeconds does not guarantee that thumbnails are * generated at the specified interval. For thumbnails to be generated at the targetIntervalSeconds * interval, the IDR/Keyframe value for the input video must be less than the * targetIntervalSeconds value. See Amazon IVS Streaming * Configuration for information on setting IDR/Keyframe to the recommended value in video-encoder * settings. *

* * @param targetIntervalSeconds * The targeted thumbnail-generation interval in seconds. This is configurable (and required) only if * recordingMode is INTERVAL. Default: 60.

*

* Important: Setting a value for targetIntervalSeconds does not guarantee that * thumbnails are generated at the specified interval. For thumbnails to be generated at the * targetIntervalSeconds interval, the IDR/Keyframe value for the input video must * be less than the targetIntervalSeconds value. See Amazon IVS Streaming * Configuration for information on setting IDR/Keyframe to the recommended value in * video-encoder settings. */ public void setTargetIntervalSeconds(Long targetIntervalSeconds) { this.targetIntervalSeconds = targetIntervalSeconds; } /** *

* The targeted thumbnail-generation interval in seconds. This is configurable (and required) only if * recordingMode is INTERVAL. Default: 60. *

*

* Important: Setting a value for targetIntervalSeconds does not guarantee that thumbnails are * generated at the specified interval. For thumbnails to be generated at the targetIntervalSeconds * interval, the IDR/Keyframe value for the input video must be less than the * targetIntervalSeconds value. See Amazon IVS Streaming * Configuration for information on setting IDR/Keyframe to the recommended value in video-encoder * settings. *

* * @return The targeted thumbnail-generation interval in seconds. This is configurable (and required) only if * recordingMode is INTERVAL. Default: 60.

*

* Important: Setting a value for targetIntervalSeconds does not guarantee that * thumbnails are generated at the specified interval. For thumbnails to be generated at the * targetIntervalSeconds interval, the IDR/Keyframe value for the input video must * be less than the targetIntervalSeconds value. See Amazon IVS Streaming * Configuration for information on setting IDR/Keyframe to the recommended value in * video-encoder settings. */ public Long getTargetIntervalSeconds() { return this.targetIntervalSeconds; } /** *

* The targeted thumbnail-generation interval in seconds. This is configurable (and required) only if * recordingMode is INTERVAL. Default: 60. *

*

* Important: Setting a value for targetIntervalSeconds does not guarantee that thumbnails are * generated at the specified interval. For thumbnails to be generated at the targetIntervalSeconds * interval, the IDR/Keyframe value for the input video must be less than the * targetIntervalSeconds value. See Amazon IVS Streaming * Configuration for information on setting IDR/Keyframe to the recommended value in video-encoder * settings. *

* * @param targetIntervalSeconds * The targeted thumbnail-generation interval in seconds. This is configurable (and required) only if * recordingMode is INTERVAL. Default: 60.

*

* Important: Setting a value for targetIntervalSeconds does not guarantee that * thumbnails are generated at the specified interval. For thumbnails to be generated at the * targetIntervalSeconds interval, the IDR/Keyframe value for the input video must * be less than the targetIntervalSeconds value. See Amazon IVS Streaming * Configuration for information on setting IDR/Keyframe to the recommended value in * video-encoder settings. * @return Returns a reference to this object so that method calls can be chained together. */ public ThumbnailConfiguration withTargetIntervalSeconds(Long targetIntervalSeconds) { setTargetIntervalSeconds(targetIntervalSeconds); 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 (getRecordingMode() != null) sb.append("RecordingMode: ").append(getRecordingMode()).append(","); if (getTargetIntervalSeconds() != null) sb.append("TargetIntervalSeconds: ").append(getTargetIntervalSeconds()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ThumbnailConfiguration == false) return false; ThumbnailConfiguration other = (ThumbnailConfiguration) obj; if (other.getRecordingMode() == null ^ this.getRecordingMode() == null) return false; if (other.getRecordingMode() != null && other.getRecordingMode().equals(this.getRecordingMode()) == false) return false; if (other.getTargetIntervalSeconds() == null ^ this.getTargetIntervalSeconds() == null) return false; if (other.getTargetIntervalSeconds() != null && other.getTargetIntervalSeconds().equals(this.getTargetIntervalSeconds()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRecordingMode() == null) ? 0 : getRecordingMode().hashCode()); hashCode = prime * hashCode + ((getTargetIntervalSeconds() == null) ? 0 : getTargetIntervalSeconds().hashCode()); return hashCode; } @Override public ThumbnailConfiguration clone() { try { return (ThumbnailConfiguration) 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.ivs.model.transform.ThumbnailConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy