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

com.amazonaws.services.elastictranscoder.model.Thumbnails Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Elastic Transcoder module holds the client classes that are used for communicating with Amazon Elastic Transcoder Service

There is a newer version: 1.12.778
Show newest version
/*
 * Copyright 2019-2024 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: *

*
    *
  • *

    * Fit: Elastic Transcoder scales thumbnails so they match the value that you specified in thumbnail * MaxWidth or MaxHeight settings without exceeding the other value. *

    *
  • *
  • *

    * Fill: Elastic Transcoder scales thumbnails so they match the value that you specified in thumbnail * MaxWidth or MaxHeight settings and matches or exceeds the other value. Elastic * Transcoder centers the image in thumbnails and then crops in the dimension (if any) that exceeds the maximum * value. *

    *
  • *
  • *

    * Stretch: Elastic Transcoder stretches thumbnails to match the values that you specified for * thumbnail MaxWidth and MaxHeight settings. If the relative proportions of the input * video and thumbnails are different, the thumbnails will be distorted. *

    *
  • *
  • *

    * Keep: Elastic Transcoder does not scale thumbnails. If either dimension of the input video exceeds * the values that you specified for thumbnail MaxWidth and MaxHeight settings, Elastic * Transcoder crops the thumbnails. *

    *
  • *
  • *

    * ShrinkToFit: Elastic Transcoder scales thumbnails down so that their dimensions match the values * that you specified for at least one of thumbnail MaxWidth and MaxHeight without * exceeding either value. If you specify this option, Elastic Transcoder does not scale thumbnails up. *

    *
  • *
  • *

    * ShrinkToFill: Elastic Transcoder scales thumbnails down so that their dimensions match the values * that you specified for at least one of MaxWidth and MaxHeight without dropping below * either value. If you specify this option, Elastic Transcoder does not scale thumbnails up. *

    *
  • *
*/ 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: *

*
    *
  • *

    * Fit: Elastic Transcoder scales thumbnails so they match the value that you specified in thumbnail * MaxWidth or MaxHeight settings without exceeding the other value. *

    *
  • *
  • *

    * Fill: Elastic Transcoder scales thumbnails so they match the value that you specified in thumbnail * MaxWidth or MaxHeight settings and matches or exceeds the other value. Elastic * Transcoder centers the image in thumbnails and then crops in the dimension (if any) that exceeds the maximum * value. *

    *
  • *
  • *

    * Stretch: Elastic Transcoder stretches thumbnails to match the values that you specified for * thumbnail MaxWidth and MaxHeight settings. If the relative proportions of the input * video and thumbnails are different, the thumbnails will be distorted. *

    *
  • *
  • *

    * Keep: Elastic Transcoder does not scale thumbnails. If either dimension of the input video exceeds * the values that you specified for thumbnail MaxWidth and MaxHeight settings, Elastic * Transcoder crops the thumbnails. *

    *
  • *
  • *

    * ShrinkToFit: Elastic Transcoder scales thumbnails down so that their dimensions match the values * that you specified for at least one of thumbnail MaxWidth and MaxHeight without * exceeding either value. If you specify this option, Elastic Transcoder does not scale thumbnails up. *

    *
  • *
  • *

    * ShrinkToFill: Elastic Transcoder scales thumbnails down so that their dimensions match the values * that you specified for at least one of MaxWidth and MaxHeight without dropping below * either value. If you specify this option, Elastic Transcoder does not scale thumbnails up. *

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

*
    *
  • *

    * Fit: Elastic Transcoder scales thumbnails so they match the value that you specified in * thumbnail MaxWidth or MaxHeight settings without exceeding the other value. *

    *
  • *
  • *

    * Fill: Elastic Transcoder scales thumbnails so they match the value that you specified in * thumbnail MaxWidth or MaxHeight settings and matches or exceeds the other value. * Elastic Transcoder centers the image in thumbnails and then crops in the dimension (if any) that exceeds * the maximum value. *

    *
  • *
  • *

    * Stretch: Elastic Transcoder stretches thumbnails to match the values that you specified for * thumbnail MaxWidth and MaxHeight settings. If the relative proportions of the * input video and thumbnails are different, the thumbnails will be distorted. *

    *
  • *
  • *

    * Keep: Elastic Transcoder does not scale thumbnails. If either dimension of the input video * exceeds the values that you specified for thumbnail MaxWidth and MaxHeight * settings, Elastic Transcoder crops the thumbnails. *

    *
  • *
  • *

    * ShrinkToFit: Elastic Transcoder scales thumbnails down so that their dimensions match the * values that you specified for at least one of thumbnail MaxWidth and MaxHeight * without exceeding either value. If you specify this option, Elastic Transcoder does not scale thumbnails * up. *

    *
  • *
  • *

    * ShrinkToFill: Elastic Transcoder scales thumbnails down so that their dimensions match the * values that you specified for at least one of MaxWidth and MaxHeight without * dropping below either value. If you specify this option, Elastic Transcoder does not scale thumbnails up. *

    *
  • */ public void setSizingPolicy(String sizingPolicy) { this.sizingPolicy = sizingPolicy; } /** *

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

    *
      *
    • *

      * Fit: Elastic Transcoder scales thumbnails so they match the value that you specified in thumbnail * MaxWidth or MaxHeight settings without exceeding the other value. *

      *
    • *
    • *

      * Fill: Elastic Transcoder scales thumbnails so they match the value that you specified in thumbnail * MaxWidth or MaxHeight settings and matches or exceeds the other value. Elastic * Transcoder centers the image in thumbnails and then crops in the dimension (if any) that exceeds the maximum * value. *

      *
    • *
    • *

      * Stretch: Elastic Transcoder stretches thumbnails to match the values that you specified for * thumbnail MaxWidth and MaxHeight settings. If the relative proportions of the input * video and thumbnails are different, the thumbnails will be distorted. *

      *
    • *
    • *

      * Keep: Elastic Transcoder does not scale thumbnails. If either dimension of the input video exceeds * the values that you specified for thumbnail MaxWidth and MaxHeight settings, Elastic * Transcoder crops the thumbnails. *

      *
    • *
    • *

      * ShrinkToFit: Elastic Transcoder scales thumbnails down so that their dimensions match the values * that you specified for at least one of thumbnail MaxWidth and MaxHeight without * exceeding either value. If you specify this option, Elastic Transcoder does not scale thumbnails up. *

      *
    • *
    • *

      * ShrinkToFill: Elastic Transcoder scales thumbnails down so that their dimensions match the values * that you specified for at least one of MaxWidth and MaxHeight without dropping below * either value. If you specify this option, Elastic Transcoder does not scale thumbnails up. *

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

    *
      *
    • *

      * Fit: Elastic Transcoder scales thumbnails so they match the value that you specified in * thumbnail MaxWidth or MaxHeight settings without exceeding the other value. *

      *
    • *
    • *

      * Fill: Elastic Transcoder scales thumbnails so they match the value that you specified in * thumbnail MaxWidth or MaxHeight settings and matches or exceeds the other * value. Elastic Transcoder centers the image in thumbnails and then crops in the dimension (if any) that * exceeds the maximum value. *

      *
    • *
    • *

      * Stretch: Elastic Transcoder stretches thumbnails to match the values that you specified for * thumbnail MaxWidth and MaxHeight settings. If the relative proportions of the * input video and thumbnails are different, the thumbnails will be distorted. *

      *
    • *
    • *

      * Keep: Elastic Transcoder does not scale thumbnails. If either dimension of the input video * exceeds the values that you specified for thumbnail MaxWidth and MaxHeight * settings, Elastic Transcoder crops the thumbnails. *

      *
    • *
    • *

      * ShrinkToFit: Elastic Transcoder scales thumbnails down so that their dimensions match the * values that you specified for at least one of thumbnail MaxWidth and MaxHeight * without exceeding either value. If you specify this option, Elastic Transcoder does not scale thumbnails * up. *

      *
    • *
    • *

      * ShrinkToFill: Elastic Transcoder scales thumbnails down so that their dimensions match the * values that you specified for at least one of MaxWidth and MaxHeight without * dropping below either value. If you specify this option, Elastic Transcoder does not scale thumbnails up. *

      *
    • */ public String getSizingPolicy() { return this.sizingPolicy; } /** *

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

      *
        *
      • *

        * Fit: Elastic Transcoder scales thumbnails so they match the value that you specified in thumbnail * MaxWidth or MaxHeight settings without exceeding the other value. *

        *
      • *
      • *

        * Fill: Elastic Transcoder scales thumbnails so they match the value that you specified in thumbnail * MaxWidth or MaxHeight settings and matches or exceeds the other value. Elastic * Transcoder centers the image in thumbnails and then crops in the dimension (if any) that exceeds the maximum * value. *

        *
      • *
      • *

        * Stretch: Elastic Transcoder stretches thumbnails to match the values that you specified for * thumbnail MaxWidth and MaxHeight settings. If the relative proportions of the input * video and thumbnails are different, the thumbnails will be distorted. *

        *
      • *
      • *

        * Keep: Elastic Transcoder does not scale thumbnails. If either dimension of the input video exceeds * the values that you specified for thumbnail MaxWidth and MaxHeight settings, Elastic * Transcoder crops the thumbnails. *

        *
      • *
      • *

        * ShrinkToFit: Elastic Transcoder scales thumbnails down so that their dimensions match the values * that you specified for at least one of thumbnail MaxWidth and MaxHeight without * exceeding either value. If you specify this option, Elastic Transcoder does not scale thumbnails up. *

        *
      • *
      • *

        * ShrinkToFill: Elastic Transcoder scales thumbnails down so that their dimensions match the values * that you specified for at least one of MaxWidth and MaxHeight without dropping below * either value. If you specify this option, Elastic Transcoder does not scale thumbnails up. *

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

      *
        *
      • *

        * Fit: Elastic Transcoder scales thumbnails so they match the value that you specified in * thumbnail MaxWidth or MaxHeight settings without exceeding the other value. *

        *
      • *
      • *

        * Fill: Elastic Transcoder scales thumbnails so they match the value that you specified in * thumbnail MaxWidth or MaxHeight settings and matches or exceeds the other value. * Elastic Transcoder centers the image in thumbnails and then crops in the dimension (if any) that exceeds * the maximum value. *

        *
      • *
      • *

        * Stretch: Elastic Transcoder stretches thumbnails to match the values that you specified for * thumbnail MaxWidth and MaxHeight settings. If the relative proportions of the * input video and thumbnails are different, the thumbnails will be distorted. *

        *
      • *
      • *

        * Keep: Elastic Transcoder does not scale thumbnails. If either dimension of the input video * exceeds the values that you specified for thumbnail MaxWidth and MaxHeight * settings, Elastic Transcoder crops the thumbnails. *

        *
      • *
      • *

        * ShrinkToFit: Elastic Transcoder scales thumbnails down so that their dimensions match the * values that you specified for at least one of thumbnail MaxWidth and MaxHeight * without exceeding either value. If you specify this option, Elastic Transcoder does not scale thumbnails * up. *

        *
      • *
      • *

        * ShrinkToFill: Elastic Transcoder scales thumbnails down so that their dimensions match the * values that you specified for at least one of MaxWidth and MaxHeight without * dropping below either value. If you specify this option, Elastic Transcoder does not scale thumbnails up. *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ public Thumbnails withSizingPolicy(String sizingPolicy) { setSizingPolicy(sizingPolicy); return this; } /** *

        * 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. *

        * * @param paddingPolicy * 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. */ public void setPaddingPolicy(String paddingPolicy) { this.paddingPolicy = paddingPolicy; } /** *

        * 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. *

        * * @return 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. */ public String getPaddingPolicy() { return this.paddingPolicy; } /** *

        * 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. *

        * * @param paddingPolicy * 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. * @return Returns a reference to this object so that method calls can be chained together. */ public Thumbnails withPaddingPolicy(String paddingPolicy) { setPaddingPolicy(paddingPolicy); 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 (getFormat() != null) sb.append("Format: ").append(getFormat()).append(","); if (getInterval() != null) sb.append("Interval: ").append(getInterval()).append(","); if (getResolution() != null) sb.append("Resolution: ").append(getResolution()).append(","); if (getAspectRatio() != null) sb.append("AspectRatio: ").append(getAspectRatio()).append(","); if (getMaxWidth() != null) sb.append("MaxWidth: ").append(getMaxWidth()).append(","); if (getMaxHeight() != null) sb.append("MaxHeight: ").append(getMaxHeight()).append(","); if (getSizingPolicy() != null) sb.append("SizingPolicy: ").append(getSizingPolicy()).append(","); if (getPaddingPolicy() != null) sb.append("PaddingPolicy: ").append(getPaddingPolicy()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Thumbnails == false) return false; Thumbnails other = (Thumbnails) obj; if (other.getFormat() == null ^ this.getFormat() == null) return false; if (other.getFormat() != null && other.getFormat().equals(this.getFormat()) == false) return false; if (other.getInterval() == null ^ this.getInterval() == null) return false; if (other.getInterval() != null && other.getInterval().equals(this.getInterval()) == false) return false; if (other.getResolution() == null ^ this.getResolution() == null) return false; if (other.getResolution() != null && other.getResolution().equals(this.getResolution()) == false) return false; if (other.getAspectRatio() == null ^ this.getAspectRatio() == null) return false; if (other.getAspectRatio() != null && other.getAspectRatio().equals(this.getAspectRatio()) == false) return false; if (other.getMaxWidth() == null ^ this.getMaxWidth() == null) return false; if (other.getMaxWidth() != null && other.getMaxWidth().equals(this.getMaxWidth()) == false) return false; if (other.getMaxHeight() == null ^ this.getMaxHeight() == null) return false; if (other.getMaxHeight() != null && other.getMaxHeight().equals(this.getMaxHeight()) == false) return false; if (other.getSizingPolicy() == null ^ this.getSizingPolicy() == null) return false; if (other.getSizingPolicy() != null && other.getSizingPolicy().equals(this.getSizingPolicy()) == false) return false; if (other.getPaddingPolicy() == null ^ this.getPaddingPolicy() == null) return false; if (other.getPaddingPolicy() != null && other.getPaddingPolicy().equals(this.getPaddingPolicy()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getFormat() == null) ? 0 : getFormat().hashCode()); hashCode = prime * hashCode + ((getInterval() == null) ? 0 : getInterval().hashCode()); hashCode = prime * hashCode + ((getResolution() == null) ? 0 : getResolution().hashCode()); hashCode = prime * hashCode + ((getAspectRatio() == null) ? 0 : getAspectRatio().hashCode()); hashCode = prime * hashCode + ((getMaxWidth() == null) ? 0 : getMaxWidth().hashCode()); hashCode = prime * hashCode + ((getMaxHeight() == null) ? 0 : getMaxHeight().hashCode()); hashCode = prime * hashCode + ((getSizingPolicy() == null) ? 0 : getSizingPolicy().hashCode()); hashCode = prime * hashCode + ((getPaddingPolicy() == null) ? 0 : getPaddingPolicy().hashCode()); return hashCode; } @Override public Thumbnails clone() { try { return (Thumbnails) 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.elastictranscoder.model.transform.ThumbnailsMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy