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

software.amazon.awssdk.services.ivs.model.ThumbnailConfiguration Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Ivs module holds the client classes that are used for communicating with Ivs.

There is a newer version: 2.29.39
Show newest version
/*
 * Copyright 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 software.amazon.awssdk.services.ivs.model;

import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

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

*/ @Generated("software.amazon.awssdk:codegen") public final class ThumbnailConfiguration implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField RECORDING_MODE_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("recordingMode").getter(getter(ThumbnailConfiguration::recordingModeAsString)) .setter(setter(Builder::recordingMode)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("recordingMode").build()).build(); private static final SdkField TARGET_INTERVAL_SECONDS_FIELD = SdkField. builder(MarshallingType.LONG) .memberName("targetIntervalSeconds").getter(getter(ThumbnailConfiguration::targetIntervalSeconds)) .setter(setter(Builder::targetIntervalSeconds)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("targetIntervalSeconds").build()) .build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(RECORDING_MODE_FIELD, TARGET_INTERVAL_SECONDS_FIELD)); private static final long serialVersionUID = 1L; private final String recordingMode; private final Long targetIntervalSeconds; private ThumbnailConfiguration(BuilderImpl builder) { this.recordingMode = builder.recordingMode; this.targetIntervalSeconds = builder.targetIntervalSeconds; } /** *

* Thumbnail recording mode. Default: INTERVAL. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #recordingMode} * will return {@link RecordingMode#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #recordingModeAsString}. *

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

* Thumbnail recording mode. Default: INTERVAL. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #recordingMode} * will return {@link RecordingMode#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #recordingModeAsString}. *

* * @return Thumbnail recording mode. Default: INTERVAL. * @see RecordingMode */ public final String recordingModeAsString() { return 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. *

* * @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 final Long targetIntervalSeconds() { return targetIntervalSeconds; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(recordingModeAsString()); hashCode = 31 * hashCode + Objects.hashCode(targetIntervalSeconds()); return hashCode; } @Override public final boolean equals(Object obj) { return equalsBySdkFields(obj); } @Override public final boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof ThumbnailConfiguration)) { return false; } ThumbnailConfiguration other = (ThumbnailConfiguration) obj; return Objects.equals(recordingModeAsString(), other.recordingModeAsString()) && Objects.equals(targetIntervalSeconds(), other.targetIntervalSeconds()); } /** * 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. */ @Override public final String toString() { return ToString.builder("ThumbnailConfiguration").add("RecordingMode", recordingModeAsString()) .add("TargetIntervalSeconds", targetIntervalSeconds()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "recordingMode": return Optional.ofNullable(clazz.cast(recordingModeAsString())); case "targetIntervalSeconds": return Optional.ofNullable(clazz.cast(targetIntervalSeconds())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((ThumbnailConfiguration) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* Thumbnail recording mode. Default: INTERVAL. *

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

* Thumbnail recording mode. Default: INTERVAL. *

* * @param recordingMode * Thumbnail recording mode. Default: INTERVAL. * @see RecordingMode * @return Returns a reference to this object so that method calls can be chained together. * @see RecordingMode */ Builder recordingMode(RecordingMode 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. *

* * @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. */ Builder targetIntervalSeconds(Long targetIntervalSeconds); } static final class BuilderImpl implements Builder { private String recordingMode; private Long targetIntervalSeconds; private BuilderImpl() { } private BuilderImpl(ThumbnailConfiguration model) { recordingMode(model.recordingMode); targetIntervalSeconds(model.targetIntervalSeconds); } public final String getRecordingMode() { return recordingMode; } public final void setRecordingMode(String recordingMode) { this.recordingMode = recordingMode; } @Override public final Builder recordingMode(String recordingMode) { this.recordingMode = recordingMode; return this; } @Override public final Builder recordingMode(RecordingMode recordingMode) { this.recordingMode(recordingMode == null ? null : recordingMode.toString()); return this; } public final Long getTargetIntervalSeconds() { return targetIntervalSeconds; } public final void setTargetIntervalSeconds(Long targetIntervalSeconds) { this.targetIntervalSeconds = targetIntervalSeconds; } @Override public final Builder targetIntervalSeconds(Long targetIntervalSeconds) { this.targetIntervalSeconds = targetIntervalSeconds; return this; } @Override public ThumbnailConfiguration build() { return new ThumbnailConfiguration(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy