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

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

Go to download

The Amazon Web Services SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

The newest version!
/*
 * Copyright 2010-2014 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;

/**
 * 

* Watermarks can be in .png or .jpg format. If you want to display a * watermark that is not rectangular, use the .png format, which supports * transparency. *

*/ public class JobWatermark implements Serializable { /** * The ID of the watermark settings that Elastic Transcoder uses to add * watermarks to the video during transcoding. The settings are in the * preset specified by Preset for the current output. In that preset, the * value of Watermarks Id tells Elastic Transcoder which settings to use. *

* Constraints:
* Length: 1 - 40
*/ private String presetWatermarkId; /** * The name of the .png or .jpg file that you want to use for the * watermark. To determine which Amazon S3 bucket contains the specified * file, Elastic Transcoder checks the pipeline specified by * Pipeline; the Input Bucket object in that * pipeline identifies the bucket.

If the file name includes a * prefix, for example, logos/128x64.png, include the prefix in * the key. If the file isn't in the specified bucket, Elastic Transcoder * returns an error. *

* Constraints:
* Length: 1 - 255
* Pattern: (^.{1,}.jpg$)|(^.{1,}.jpeg$)|(^.{1,}.png$)
*/ private String inputKey; /** * The ID of the watermark settings that Elastic Transcoder uses to add * watermarks to the video during transcoding. The settings are in the * preset specified by Preset for the current output. In that preset, the * value of Watermarks Id tells Elastic Transcoder which settings to use. *

* Constraints:
* Length: 1 - 40
* * @return The ID of the watermark settings that Elastic Transcoder uses to add * watermarks to the video during transcoding. The settings are in the * preset specified by Preset for the current output. In that preset, the * value of Watermarks Id tells Elastic Transcoder which settings to use. */ public String getPresetWatermarkId() { return presetWatermarkId; } /** * The ID of the watermark settings that Elastic Transcoder uses to add * watermarks to the video during transcoding. The settings are in the * preset specified by Preset for the current output. In that preset, the * value of Watermarks Id tells Elastic Transcoder which settings to use. *

* Constraints:
* Length: 1 - 40
* * @param presetWatermarkId The ID of the watermark settings that Elastic Transcoder uses to add * watermarks to the video during transcoding. The settings are in the * preset specified by Preset for the current output. In that preset, the * value of Watermarks Id tells Elastic Transcoder which settings to use. */ public void setPresetWatermarkId(String presetWatermarkId) { this.presetWatermarkId = presetWatermarkId; } /** * The ID of the watermark settings that Elastic Transcoder uses to add * watermarks to the video during transcoding. The settings are in the * preset specified by Preset for the current output. In that preset, the * value of Watermarks Id tells Elastic Transcoder which settings to use. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 40
* * @param presetWatermarkId The ID of the watermark settings that Elastic Transcoder uses to add * watermarks to the video during transcoding. The settings are in the * preset specified by Preset for the current output. In that preset, the * value of Watermarks Id tells Elastic Transcoder which settings to use. * * @return A reference to this updated object so that method calls can be chained * together. */ public JobWatermark withPresetWatermarkId(String presetWatermarkId) { this.presetWatermarkId = presetWatermarkId; return this; } /** * The name of the .png or .jpg file that you want to use for the * watermark. To determine which Amazon S3 bucket contains the specified * file, Elastic Transcoder checks the pipeline specified by * Pipeline; the Input Bucket object in that * pipeline identifies the bucket.

If the file name includes a * prefix, for example, logos/128x64.png, include the prefix in * the key. If the file isn't in the specified bucket, Elastic Transcoder * returns an error. *

* Constraints:
* Length: 1 - 255
* Pattern: (^.{1,}.jpg$)|(^.{1,}.jpeg$)|(^.{1,}.png$)
* * @return The name of the .png or .jpg file that you want to use for the * watermark. To determine which Amazon S3 bucket contains the specified * file, Elastic Transcoder checks the pipeline specified by * Pipeline; the Input Bucket object in that * pipeline identifies the bucket.

If the file name includes a * prefix, for example, logos/128x64.png, include the prefix in * the key. If the file isn't in the specified bucket, Elastic Transcoder * returns an error. */ public String getInputKey() { return inputKey; } /** * The name of the .png or .jpg file that you want to use for the * watermark. To determine which Amazon S3 bucket contains the specified * file, Elastic Transcoder checks the pipeline specified by * Pipeline; the Input Bucket object in that * pipeline identifies the bucket.

If the file name includes a * prefix, for example, logos/128x64.png, include the prefix in * the key. If the file isn't in the specified bucket, Elastic Transcoder * returns an error. *

* Constraints:
* Length: 1 - 255
* Pattern: (^.{1,}.jpg$)|(^.{1,}.jpeg$)|(^.{1,}.png$)
* * @param inputKey The name of the .png or .jpg file that you want to use for the * watermark. To determine which Amazon S3 bucket contains the specified * file, Elastic Transcoder checks the pipeline specified by * Pipeline; the Input Bucket object in that * pipeline identifies the bucket.

If the file name includes a * prefix, for example, logos/128x64.png, include the prefix in * the key. If the file isn't in the specified bucket, Elastic Transcoder * returns an error. */ public void setInputKey(String inputKey) { this.inputKey = inputKey; } /** * The name of the .png or .jpg file that you want to use for the * watermark. To determine which Amazon S3 bucket contains the specified * file, Elastic Transcoder checks the pipeline specified by * Pipeline; the Input Bucket object in that * pipeline identifies the bucket.

If the file name includes a * prefix, for example, logos/128x64.png, include the prefix in * the key. If the file isn't in the specified bucket, Elastic Transcoder * returns an error. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 255
* Pattern: (^.{1,}.jpg$)|(^.{1,}.jpeg$)|(^.{1,}.png$)
* * @param inputKey The name of the .png or .jpg file that you want to use for the * watermark. To determine which Amazon S3 bucket contains the specified * file, Elastic Transcoder checks the pipeline specified by * Pipeline; the Input Bucket object in that * pipeline identifies the bucket.

If the file name includes a * prefix, for example, logos/128x64.png, include the prefix in * the key. If the file isn't in the specified bucket, Elastic Transcoder * returns an error. * * @return A reference to this updated object so that method calls can be chained * together. */ public JobWatermark withInputKey(String inputKey) { this.inputKey = inputKey; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getPresetWatermarkId() != null) sb.append("PresetWatermarkId: " + getPresetWatermarkId() + ","); if (getInputKey() != null) sb.append("InputKey: " + getInputKey() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPresetWatermarkId() == null) ? 0 : getPresetWatermarkId().hashCode()); hashCode = prime * hashCode + ((getInputKey() == null) ? 0 : getInputKey().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof JobWatermark == false) return false; JobWatermark other = (JobWatermark)obj; if (other.getPresetWatermarkId() == null ^ this.getPresetWatermarkId() == null) return false; if (other.getPresetWatermarkId() != null && other.getPresetWatermarkId().equals(this.getPresetWatermarkId()) == false) return false; if (other.getInputKey() == null ^ this.getInputKey() == null) return false; if (other.getInputKey() != null && other.getInputKey().equals(this.getInputKey()) == false) return false; return true; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy