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

com.amazonaws.services.chimesdkmediapipelines.model.CreateMediaStreamPipelineRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Chime SDK Media Pipelines module holds the client classes that are used for communicating with Amazon Chime SDK Media Pipelines Service

The 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.chimesdkmediapipelines.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 
 * @see AWS API Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateMediaStreamPipelineRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The data sources for the media pipeline. *

*/ private java.util.List sources; /** *

* The data sink for the media pipeline. *

*/ private java.util.List sinks; /** *

* The token assigned to the client making the request. *

*/ private String clientRequestToken; /** *

* The tags assigned to the media pipeline. *

*/ private java.util.List tags; /** *

* The data sources for the media pipeline. *

* * @return The data sources for the media pipeline. */ public java.util.List getSources() { return sources; } /** *

* The data sources for the media pipeline. *

* * @param sources * The data sources for the media pipeline. */ public void setSources(java.util.Collection sources) { if (sources == null) { this.sources = null; return; } this.sources = new java.util.ArrayList(sources); } /** *

* The data sources for the media pipeline. *

*

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

* * @param sources * The data sources for the media pipeline. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateMediaStreamPipelineRequest withSources(MediaStreamSource... sources) { if (this.sources == null) { setSources(new java.util.ArrayList(sources.length)); } for (MediaStreamSource ele : sources) { this.sources.add(ele); } return this; } /** *

* The data sources for the media pipeline. *

* * @param sources * The data sources for the media pipeline. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateMediaStreamPipelineRequest withSources(java.util.Collection sources) { setSources(sources); return this; } /** *

* The data sink for the media pipeline. *

* * @return The data sink for the media pipeline. */ public java.util.List getSinks() { return sinks; } /** *

* The data sink for the media pipeline. *

* * @param sinks * The data sink for the media pipeline. */ public void setSinks(java.util.Collection sinks) { if (sinks == null) { this.sinks = null; return; } this.sinks = new java.util.ArrayList(sinks); } /** *

* The data sink for the media pipeline. *

*

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

* * @param sinks * The data sink for the media pipeline. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateMediaStreamPipelineRequest withSinks(MediaStreamSink... sinks) { if (this.sinks == null) { setSinks(new java.util.ArrayList(sinks.length)); } for (MediaStreamSink ele : sinks) { this.sinks.add(ele); } return this; } /** *

* The data sink for the media pipeline. *

* * @param sinks * The data sink for the media pipeline. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateMediaStreamPipelineRequest withSinks(java.util.Collection sinks) { setSinks(sinks); return this; } /** *

* The token assigned to the client making the request. *

* * @param clientRequestToken * The token assigned to the client making the request. */ public void setClientRequestToken(String clientRequestToken) { this.clientRequestToken = clientRequestToken; } /** *

* The token assigned to the client making the request. *

* * @return The token assigned to the client making the request. */ public String getClientRequestToken() { return this.clientRequestToken; } /** *

* The token assigned to the client making the request. *

* * @param clientRequestToken * The token assigned to the client making the request. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateMediaStreamPipelineRequest withClientRequestToken(String clientRequestToken) { setClientRequestToken(clientRequestToken); return this; } /** *

* The tags assigned to the media pipeline. *

* * @return The tags assigned to the media pipeline. */ public java.util.List getTags() { return tags; } /** *

* The tags assigned to the media pipeline. *

* * @param tags * The tags assigned to the media pipeline. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* The tags assigned to the media pipeline. *

*

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

* * @param tags * The tags assigned to the media pipeline. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateMediaStreamPipelineRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* The tags assigned to the media pipeline. *

* * @param tags * The tags assigned to the media pipeline. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateMediaStreamPipelineRequest withTags(java.util.Collection tags) { setTags(tags); 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 (getSources() != null) sb.append("Sources: ").append(getSources()).append(","); if (getSinks() != null) sb.append("Sinks: ").append(getSinks()).append(","); if (getClientRequestToken() != null) sb.append("ClientRequestToken: ").append("***Sensitive Data Redacted***").append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateMediaStreamPipelineRequest == false) return false; CreateMediaStreamPipelineRequest other = (CreateMediaStreamPipelineRequest) obj; if (other.getSources() == null ^ this.getSources() == null) return false; if (other.getSources() != null && other.getSources().equals(this.getSources()) == false) return false; if (other.getSinks() == null ^ this.getSinks() == null) return false; if (other.getSinks() != null && other.getSinks().equals(this.getSinks()) == false) return false; if (other.getClientRequestToken() == null ^ this.getClientRequestToken() == null) return false; if (other.getClientRequestToken() != null && other.getClientRequestToken().equals(this.getClientRequestToken()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getSources() == null) ? 0 : getSources().hashCode()); hashCode = prime * hashCode + ((getSinks() == null) ? 0 : getSinks().hashCode()); hashCode = prime * hashCode + ((getClientRequestToken() == null) ? 0 : getClientRequestToken().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CreateMediaStreamPipelineRequest clone() { return (CreateMediaStreamPipelineRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy