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

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

Go to download

The AWS SDK for Java with support for OSGi. The AWS 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).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 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 com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* The TestRoleRequest structure. *

*/ public class TestRoleRequest extends AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The IAM Amazon Resource Name (ARN) for the role that you want Elastic * Transcoder to test. *

*/ private String role; /** *

* The Amazon S3 bucket that contains media files to be transcoded. The * action attempts to read from this bucket. *

*/ private String inputBucket; /** *

* The Amazon S3 bucket that Elastic Transcoder will write transcoded media * files to. The action attempts to read from this bucket. *

*/ private String outputBucket; /** *

* The ARNs of one or more Amazon Simple Notification Service (Amazon SNS) * topics that you want the action to send a test notification to. *

*/ private com.amazonaws.internal.SdkInternalList topics; /** *

* The IAM Amazon Resource Name (ARN) for the role that you want Elastic * Transcoder to test. *

* * @param role * The IAM Amazon Resource Name (ARN) for the role that you want * Elastic Transcoder to test. */ public void setRole(String role) { this.role = role; } /** *

* The IAM Amazon Resource Name (ARN) for the role that you want Elastic * Transcoder to test. *

* * @return The IAM Amazon Resource Name (ARN) for the role that you want * Elastic Transcoder to test. */ public String getRole() { return this.role; } /** *

* The IAM Amazon Resource Name (ARN) for the role that you want Elastic * Transcoder to test. *

* * @param role * The IAM Amazon Resource Name (ARN) for the role that you want * Elastic Transcoder to test. * @return Returns a reference to this object so that method calls can be * chained together. */ public TestRoleRequest withRole(String role) { setRole(role); return this; } /** *

* The Amazon S3 bucket that contains media files to be transcoded. The * action attempts to read from this bucket. *

* * @param inputBucket * The Amazon S3 bucket that contains media files to be transcoded. * The action attempts to read from this bucket. */ public void setInputBucket(String inputBucket) { this.inputBucket = inputBucket; } /** *

* The Amazon S3 bucket that contains media files to be transcoded. The * action attempts to read from this bucket. *

* * @return The Amazon S3 bucket that contains media files to be transcoded. * The action attempts to read from this bucket. */ public String getInputBucket() { return this.inputBucket; } /** *

* The Amazon S3 bucket that contains media files to be transcoded. The * action attempts to read from this bucket. *

* * @param inputBucket * The Amazon S3 bucket that contains media files to be transcoded. * The action attempts to read from this bucket. * @return Returns a reference to this object so that method calls can be * chained together. */ public TestRoleRequest withInputBucket(String inputBucket) { setInputBucket(inputBucket); return this; } /** *

* The Amazon S3 bucket that Elastic Transcoder will write transcoded media * files to. The action attempts to read from this bucket. *

* * @param outputBucket * The Amazon S3 bucket that Elastic Transcoder will write transcoded * media files to. The action attempts to read from this bucket. */ public void setOutputBucket(String outputBucket) { this.outputBucket = outputBucket; } /** *

* The Amazon S3 bucket that Elastic Transcoder will write transcoded media * files to. The action attempts to read from this bucket. *

* * @return The Amazon S3 bucket that Elastic Transcoder will write * transcoded media files to. The action attempts to read from this * bucket. */ public String getOutputBucket() { return this.outputBucket; } /** *

* The Amazon S3 bucket that Elastic Transcoder will write transcoded media * files to. The action attempts to read from this bucket. *

* * @param outputBucket * The Amazon S3 bucket that Elastic Transcoder will write transcoded * media files to. The action attempts to read from this bucket. * @return Returns a reference to this object so that method calls can be * chained together. */ public TestRoleRequest withOutputBucket(String outputBucket) { setOutputBucket(outputBucket); return this; } /** *

* The ARNs of one or more Amazon Simple Notification Service (Amazon SNS) * topics that you want the action to send a test notification to. *

* * @return The ARNs of one or more Amazon Simple Notification Service * (Amazon SNS) topics that you want the action to send a test * notification to. */ public java.util.List getTopics() { if (topics == null) { topics = new com.amazonaws.internal.SdkInternalList(); } return topics; } /** *

* The ARNs of one or more Amazon Simple Notification Service (Amazon SNS) * topics that you want the action to send a test notification to. *

* * @param topics * The ARNs of one or more Amazon Simple Notification Service (Amazon * SNS) topics that you want the action to send a test notification * to. */ public void setTopics(java.util.Collection topics) { if (topics == null) { this.topics = null; return; } this.topics = new com.amazonaws.internal.SdkInternalList(topics); } /** *

* The ARNs of one or more Amazon Simple Notification Service (Amazon SNS) * topics that you want the action to send a test notification to. *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setTopics(java.util.Collection)} or * {@link #withTopics(java.util.Collection)} if you want to override the * existing values. *

* * @param topics * The ARNs of one or more Amazon Simple Notification Service (Amazon * SNS) topics that you want the action to send a test notification * to. * @return Returns a reference to this object so that method calls can be * chained together. */ public TestRoleRequest withTopics(String... topics) { if (this.topics == null) { setTopics(new com.amazonaws.internal.SdkInternalList( topics.length)); } for (String ele : topics) { this.topics.add(ele); } return this; } /** *

* The ARNs of one or more Amazon Simple Notification Service (Amazon SNS) * topics that you want the action to send a test notification to. *

* * @param topics * The ARNs of one or more Amazon Simple Notification Service (Amazon * SNS) topics that you want the action to send a test notification * to. * @return Returns a reference to this object so that method calls can be * chained together. */ public TestRoleRequest withTopics(java.util.Collection topics) { setTopics(topics); 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 (getRole() != null) sb.append("Role: " + getRole() + ","); if (getInputBucket() != null) sb.append("InputBucket: " + getInputBucket() + ","); if (getOutputBucket() != null) sb.append("OutputBucket: " + getOutputBucket() + ","); if (getTopics() != null) sb.append("Topics: " + getTopics()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TestRoleRequest == false) return false; TestRoleRequest other = (TestRoleRequest) obj; if (other.getRole() == null ^ this.getRole() == null) return false; if (other.getRole() != null && other.getRole().equals(this.getRole()) == false) return false; if (other.getInputBucket() == null ^ this.getInputBucket() == null) return false; if (other.getInputBucket() != null && other.getInputBucket().equals(this.getInputBucket()) == false) return false; if (other.getOutputBucket() == null ^ this.getOutputBucket() == null) return false; if (other.getOutputBucket() != null && other.getOutputBucket().equals(this.getOutputBucket()) == false) return false; if (other.getTopics() == null ^ this.getTopics() == null) return false; if (other.getTopics() != null && other.getTopics().equals(this.getTopics()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRole() == null) ? 0 : getRole().hashCode()); hashCode = prime * hashCode + ((getInputBucket() == null) ? 0 : getInputBucket().hashCode()); hashCode = prime * hashCode + ((getOutputBucket() == null) ? 0 : getOutputBucket() .hashCode()); hashCode = prime * hashCode + ((getTopics() == null) ? 0 : getTopics().hashCode()); return hashCode; } @Override public TestRoleRequest clone() { return (TestRoleRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy