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

com.amazonaws.services.ivs.model.CreateRecordingConfigurationRequest Maven / Gradle / Ivy

/*
 * Copyright 2017-2022 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.ivs.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 CreateRecordingConfigurationRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* A complex type that contains a destination configuration for where recorded video will be stored. *

*/ private DestinationConfiguration destinationConfiguration; /** *

* Recording-configuration name. The value does not need to be unique. *

*/ private String name; /** *

* Array of 1-50 maps, each of the form string:string (key:value). *

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

* A complex type that allows you to enable/disable the recording of thumbnails for a live session and modify the * interval at which thumbnails are generated for the live session. *

*/ private ThumbnailConfiguration thumbnailConfiguration; /** *

* A complex type that contains a destination configuration for where recorded video will be stored. *

* * @param destinationConfiguration * A complex type that contains a destination configuration for where recorded video will be stored. */ public void setDestinationConfiguration(DestinationConfiguration destinationConfiguration) { this.destinationConfiguration = destinationConfiguration; } /** *

* A complex type that contains a destination configuration for where recorded video will be stored. *

* * @return A complex type that contains a destination configuration for where recorded video will be stored. */ public DestinationConfiguration getDestinationConfiguration() { return this.destinationConfiguration; } /** *

* A complex type that contains a destination configuration for where recorded video will be stored. *

* * @param destinationConfiguration * A complex type that contains a destination configuration for where recorded video will be stored. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecordingConfigurationRequest withDestinationConfiguration(DestinationConfiguration destinationConfiguration) { setDestinationConfiguration(destinationConfiguration); return this; } /** *

* Recording-configuration name. The value does not need to be unique. *

* * @param name * Recording-configuration name. The value does not need to be unique. */ public void setName(String name) { this.name = name; } /** *

* Recording-configuration name. The value does not need to be unique. *

* * @return Recording-configuration name. The value does not need to be unique. */ public String getName() { return this.name; } /** *

* Recording-configuration name. The value does not need to be unique. *

* * @param name * Recording-configuration name. The value does not need to be unique. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecordingConfigurationRequest withName(String name) { setName(name); return this; } /** *

* Array of 1-50 maps, each of the form string:string (key:value). *

* * @return Array of 1-50 maps, each of the form string:string (key:value). */ public java.util.Map getTags() { return tags; } /** *

* Array of 1-50 maps, each of the form string:string (key:value). *

* * @param tags * Array of 1-50 maps, each of the form string:string (key:value). */ public void setTags(java.util.Map tags) { this.tags = tags; } /** *

* Array of 1-50 maps, each of the form string:string (key:value). *

* * @param tags * Array of 1-50 maps, each of the form string:string (key:value). * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecordingConfigurationRequest withTags(java.util.Map tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see CreateRecordingConfigurationRequest#withTags * @returns a reference to this object so that method calls can be chained together. */ public CreateRecordingConfigurationRequest addTagsEntry(String key, String value) { if (null == this.tags) { this.tags = new java.util.HashMap(); } if (this.tags.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.tags.put(key, value); return this; } /** * Removes all the entries added into Tags. * * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecordingConfigurationRequest clearTagsEntries() { this.tags = null; return this; } /** *

* A complex type that allows you to enable/disable the recording of thumbnails for a live session and modify the * interval at which thumbnails are generated for the live session. *

* * @param thumbnailConfiguration * A complex type that allows you to enable/disable the recording of thumbnails for a live session and modify * the interval at which thumbnails are generated for the live session. */ public void setThumbnailConfiguration(ThumbnailConfiguration thumbnailConfiguration) { this.thumbnailConfiguration = thumbnailConfiguration; } /** *

* A complex type that allows you to enable/disable the recording of thumbnails for a live session and modify the * interval at which thumbnails are generated for the live session. *

* * @return A complex type that allows you to enable/disable the recording of thumbnails for a live session and * modify the interval at which thumbnails are generated for the live session. */ public ThumbnailConfiguration getThumbnailConfiguration() { return this.thumbnailConfiguration; } /** *

* A complex type that allows you to enable/disable the recording of thumbnails for a live session and modify the * interval at which thumbnails are generated for the live session. *

* * @param thumbnailConfiguration * A complex type that allows you to enable/disable the recording of thumbnails for a live session and modify * the interval at which thumbnails are generated for the live session. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRecordingConfigurationRequest withThumbnailConfiguration(ThumbnailConfiguration thumbnailConfiguration) { setThumbnailConfiguration(thumbnailConfiguration); 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 (getDestinationConfiguration() != null) sb.append("DestinationConfiguration: ").append(getDestinationConfiguration()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getThumbnailConfiguration() != null) sb.append("ThumbnailConfiguration: ").append(getThumbnailConfiguration()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateRecordingConfigurationRequest == false) return false; CreateRecordingConfigurationRequest other = (CreateRecordingConfigurationRequest) obj; if (other.getDestinationConfiguration() == null ^ this.getDestinationConfiguration() == null) return false; if (other.getDestinationConfiguration() != null && other.getDestinationConfiguration().equals(this.getDestinationConfiguration()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getThumbnailConfiguration() == null ^ this.getThumbnailConfiguration() == null) return false; if (other.getThumbnailConfiguration() != null && other.getThumbnailConfiguration().equals(this.getThumbnailConfiguration()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDestinationConfiguration() == null) ? 0 : getDestinationConfiguration().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getThumbnailConfiguration() == null) ? 0 : getThumbnailConfiguration().hashCode()); return hashCode; } @Override public CreateRecordingConfigurationRequest clone() { return (CreateRecordingConfigurationRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy