/* * 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.elastictranscoder.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* Thumbnails for videos. *

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

* The format of thumbnails, if any. Valid values are jpg and png. *

*

* You specify whether you want Elastic Transcoder to create thumbnails when you create a job. *

*/ private String format; /** *

* The approximate number of seconds between thumbnails. Specify an integer value. *

*/ private String interval; /** * *

* To better control resolution and aspect ratio of thumbnails, we recommend that you use the values * MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy instead * of Resolution and AspectRatio. The two groups of settings are mutually exclusive. Do * not use them together. *

*
*

* The width and height of thumbnail files in pixels. Specify a value in the format width x * height where both values are even integers. The values cannot exceed the width and height * that you specified in the Video:Resolution object. *

*/ private String resolution; /** * *

* To better control resolution and aspect ratio of thumbnails, we recommend that you use the values * MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy instead * of Resolution and AspectRatio. The two groups of settings are mutually exclusive. Do * not use them together. *

*
*

* The aspect ratio of thumbnails. Valid values include: *

*

* auto, 1:1, 4:3, 3:2, 16:9 *

*

* If you specify auto, Elastic Transcoder tries to preserve the aspect ratio of the video in the * output file. *

*/ private String aspectRatio; /** *

* The maximum width of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1920 (Full HD) as the * default value. If you specify a numeric value, enter an even integer between 32 and 4096. *

*/ private String maxWidth; /** *

* The maximum height of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1080 (Full HD) as the * default value. If you specify a numeric value, enter an even integer between 32 and 3072. *

*/ private String maxHeight; /** *

* Specify one of the following values to control scaling of thumbnails: *

* */ private String sizingPolicy; /** *

* When you set PaddingPolicy to Pad, Elastic Transcoder may add black bars to the top and * bottom and/or left and right sides of thumbnails to make the total size of the thumbnails match the values that * you specified for thumbnail MaxWidth and MaxHeight settings. *

*/ private String paddingPolicy; /** *

* The format of thumbnails, if any. Valid values are jpg and png. *

*

* You specify whether you want Elastic Transcoder to create thumbnails when you create a job. *

* * @param format * The format of thumbnails, if any. Valid values are jpg and png.

*

* You specify whether you want Elastic Transcoder to create thumbnails when you create a job. */ public void setFormat(String format) { this.format = format; } /** *

* The format of thumbnails, if any. Valid values are jpg and png. *

*

* You specify whether you want Elastic Transcoder to create thumbnails when you create a job. *

* * @return The format of thumbnails, if any. Valid values are jpg and png.

*

* You specify whether you want Elastic Transcoder to create thumbnails when you create a job. */ public String getFormat() { return this.format; } /** *

* The format of thumbnails, if any. Valid values are jpg and png. *

*

* You specify whether you want Elastic Transcoder to create thumbnails when you create a job. *

* * @param format * The format of thumbnails, if any. Valid values are jpg and png.

*

* You specify whether you want Elastic Transcoder to create thumbnails when you create a job. * @return Returns a reference to this object so that method calls can be chained together. */ public Thumbnails withFormat(String format) { setFormat(format); return this; } /** *

* The approximate number of seconds between thumbnails. Specify an integer value. *

* * @param interval * The approximate number of seconds between thumbnails. Specify an integer value. */ public void setInterval(String interval) { this.interval = interval; } /** *

* The approximate number of seconds between thumbnails. Specify an integer value. *

* * @return The approximate number of seconds between thumbnails. Specify an integer value. */ public String getInterval() { return this.interval; } /** *

* The approximate number of seconds between thumbnails. Specify an integer value. *

* * @param interval * The approximate number of seconds between thumbnails. Specify an integer value. * @return Returns a reference to this object so that method calls can be chained together. */ public Thumbnails withInterval(String interval) { setInterval(interval); return this; } /** * *

* To better control resolution and aspect ratio of thumbnails, we recommend that you use the values * MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy instead * of Resolution and AspectRatio. The two groups of settings are mutually exclusive. Do * not use them together. *

*
*

* The width and height of thumbnail files in pixels. Specify a value in the format width x * height where both values are even integers. The values cannot exceed the width and height * that you specified in the Video:Resolution object. *

* * @param resolution *

* To better control resolution and aspect ratio of thumbnails, we recommend that you use the values * MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy * instead of Resolution and AspectRatio. The two groups of settings are mutually * exclusive. Do not use them together. *

* *

* The width and height of thumbnail files in pixels. Specify a value in the format * width x height where both values are even integers. The values * cannot exceed the width and height that you specified in the Video:Resolution object. */ public void setResolution(String resolution) { this.resolution = resolution; } /** * *

* To better control resolution and aspect ratio of thumbnails, we recommend that you use the values * MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy instead * of Resolution and AspectRatio. The two groups of settings are mutually exclusive. Do * not use them together. *

* *

* The width and height of thumbnail files in pixels. Specify a value in the format width x * height where both values are even integers. The values cannot exceed the width and height * that you specified in the Video:Resolution object. *

* * @return

* To better control resolution and aspect ratio of thumbnails, we recommend that you use the values * MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy * instead of Resolution and AspectRatio. The two groups of settings are mutually * exclusive. Do not use them together. *

* *

* The width and height of thumbnail files in pixels. Specify a value in the format * width x height where both values are even integers. The * values cannot exceed the width and height that you specified in the Video:Resolution object. */ public String getResolution() { return this.resolution; } /** * *

* To better control resolution and aspect ratio of thumbnails, we recommend that you use the values * MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy instead * of Resolution and AspectRatio. The two groups of settings are mutually exclusive. Do * not use them together. *

* *

* The width and height of thumbnail files in pixels. Specify a value in the format width x * height where both values are even integers. The values cannot exceed the width and height * that you specified in the Video:Resolution object. *

* * @param resolution *

* To better control resolution and aspect ratio of thumbnails, we recommend that you use the values * MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy * instead of Resolution and AspectRatio. The two groups of settings are mutually * exclusive. Do not use them together. *

* *

* The width and height of thumbnail files in pixels. Specify a value in the format * width x height where both values are even integers. The values * cannot exceed the width and height that you specified in the Video:Resolution object. * @return Returns a reference to this object so that method calls can be chained together. */ public Thumbnails withResolution(String resolution) { setResolution(resolution); return this; } /** * *

* To better control resolution and aspect ratio of thumbnails, we recommend that you use the values * MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy instead * of Resolution and AspectRatio. The two groups of settings are mutually exclusive. Do * not use them together. *

* *

* The aspect ratio of thumbnails. Valid values include: *

*

* auto, 1:1, 4:3, 3:2, 16:9 *

*

* If you specify auto, Elastic Transcoder tries to preserve the aspect ratio of the video in the * output file. *

* * @param aspectRatio *

* To better control resolution and aspect ratio of thumbnails, we recommend that you use the values * MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy * instead of Resolution and AspectRatio. The two groups of settings are mutually * exclusive. Do not use them together. *

* *

* The aspect ratio of thumbnails. Valid values include: *

*

* auto, 1:1, 4:3, 3:2, 16:9 *

*

* If you specify auto, Elastic Transcoder tries to preserve the aspect ratio of the video in * the output file. */ public void setAspectRatio(String aspectRatio) { this.aspectRatio = aspectRatio; } /** * *

* To better control resolution and aspect ratio of thumbnails, we recommend that you use the values * MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy instead * of Resolution and AspectRatio. The two groups of settings are mutually exclusive. Do * not use them together. *

* *

* The aspect ratio of thumbnails. Valid values include: *

*

* auto, 1:1, 4:3, 3:2, 16:9 *

*

* If you specify auto, Elastic Transcoder tries to preserve the aspect ratio of the video in the * output file. *

* * @return

* To better control resolution and aspect ratio of thumbnails, we recommend that you use the values * MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy * instead of Resolution and AspectRatio. The two groups of settings are mutually * exclusive. Do not use them together. *

* *

* The aspect ratio of thumbnails. Valid values include: *

*

* auto, 1:1, 4:3, 3:2, 16:9 *

*

* If you specify auto, Elastic Transcoder tries to preserve the aspect ratio of the video in * the output file. */ public String getAspectRatio() { return this.aspectRatio; } /** * *

* To better control resolution and aspect ratio of thumbnails, we recommend that you use the values * MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy instead * of Resolution and AspectRatio. The two groups of settings are mutually exclusive. Do * not use them together. *

* *

* The aspect ratio of thumbnails. Valid values include: *

*

* auto, 1:1, 4:3, 3:2, 16:9 *

*

* If you specify auto, Elastic Transcoder tries to preserve the aspect ratio of the video in the * output file. *

* * @param aspectRatio *

* To better control resolution and aspect ratio of thumbnails, we recommend that you use the values * MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy * instead of Resolution and AspectRatio. The two groups of settings are mutually * exclusive. Do not use them together. *

* *

* The aspect ratio of thumbnails. Valid values include: *

*

* auto, 1:1, 4:3, 3:2, 16:9 *

*

* If you specify auto, Elastic Transcoder tries to preserve the aspect ratio of the video in * the output file. * @return Returns a reference to this object so that method calls can be chained together. */ public Thumbnails withAspectRatio(String aspectRatio) { setAspectRatio(aspectRatio); return this; } /** *

* The maximum width of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1920 (Full HD) as the * default value. If you specify a numeric value, enter an even integer between 32 and 4096. *

* * @param maxWidth * The maximum width of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1920 (Full HD) as * the default value. If you specify a numeric value, enter an even integer between 32 and 4096. */ public void setMaxWidth(String maxWidth) { this.maxWidth = maxWidth; } /** *

* The maximum width of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1920 (Full HD) as the * default value. If you specify a numeric value, enter an even integer between 32 and 4096. *

* * @return The maximum width of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1920 (Full HD) as * the default value. If you specify a numeric value, enter an even integer between 32 and 4096. */ public String getMaxWidth() { return this.maxWidth; } /** *

* The maximum width of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1920 (Full HD) as the * default value. If you specify a numeric value, enter an even integer between 32 and 4096. *

* * @param maxWidth * The maximum width of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1920 (Full HD) as * the default value. If you specify a numeric value, enter an even integer between 32 and 4096. * @return Returns a reference to this object so that method calls can be chained together. */ public Thumbnails withMaxWidth(String maxWidth) { setMaxWidth(maxWidth); return this; } /** *

* The maximum height of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1080 (Full HD) as the * default value. If you specify a numeric value, enter an even integer between 32 and 3072. *

* * @param maxHeight * The maximum height of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1080 (Full HD) as * the default value. If you specify a numeric value, enter an even integer between 32 and 3072. */ public void setMaxHeight(String maxHeight) { this.maxHeight = maxHeight; } /** *

* The maximum height of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1080 (Full HD) as the * default value. If you specify a numeric value, enter an even integer between 32 and 3072. *

* * @return The maximum height of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1080 (Full HD) * as the default value. If you specify a numeric value, enter an even integer between 32 and 3072. */ public String getMaxHeight() { return this.maxHeight; } /** *

* The maximum height of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1080 (Full HD) as the * default value. If you specify a numeric value, enter an even integer between 32 and 3072. *

* * @param maxHeight * The maximum height of thumbnails in pixels. If you specify auto, Elastic Transcoder uses 1080 (Full HD) as * the default value. If you specify a numeric value, enter an even integer between 32 and 3072. * @return Returns a reference to this object so that method calls can be chained together. */ public Thumbnails withMaxHeight(String maxHeight) { setMaxHeight(maxHeight); return this; } /** *

* Specify one of the following values to control scaling of thumbnails: *

* * * @param sizingPolicy * Specify one of the following values to control scaling of thumbnails:

*