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

com.amazonaws.services.mediapackagev2.model.UpdateChannelGroupResult Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Elemental MediaPackage v2 module holds the client classes that are used for communicating with AWS Elemental MediaPackage v2 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.mediapackagev2.model;

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

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

    /**
     * 

* The name that describes the channel group. The name is the primary identifier for the channel group, and must be * unique for your account in the AWS Region. *

*/ private String channelGroupName; /** *

* The Amazon Resource Name (ARN) associated with the resource. *

*/ private String arn; /** *

* The output domain where the source stream is sent. Integrate the domain with a downstream CDN (such as Amazon * CloudFront) or playback device. *

*/ private String egressDomain; /** *

* The date and time the channel group was created. *

*/ private java.util.Date createdAt; /** *

* The date and time the channel group was modified. *

*/ private java.util.Date modifiedAt; /** *

* The description for your channel group. *

*/ private String description; /** *

* The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent * updates to the resource. *

*/ private String eTag; /** *

* The comma-separated list of tag key:value pairs assigned to the channel group. *

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

* The name that describes the channel group. The name is the primary identifier for the channel group, and must be * unique for your account in the AWS Region. *

* * @param channelGroupName * The name that describes the channel group. The name is the primary identifier for the channel group, and * must be unique for your account in the AWS Region. */ public void setChannelGroupName(String channelGroupName) { this.channelGroupName = channelGroupName; } /** *

* The name that describes the channel group. The name is the primary identifier for the channel group, and must be * unique for your account in the AWS Region. *

* * @return The name that describes the channel group. The name is the primary identifier for the channel group, and * must be unique for your account in the AWS Region. */ public String getChannelGroupName() { return this.channelGroupName; } /** *

* The name that describes the channel group. The name is the primary identifier for the channel group, and must be * unique for your account in the AWS Region. *

* * @param channelGroupName * The name that describes the channel group. The name is the primary identifier for the channel group, and * must be unique for your account in the AWS Region. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateChannelGroupResult withChannelGroupName(String channelGroupName) { setChannelGroupName(channelGroupName); return this; } /** *

* The Amazon Resource Name (ARN) associated with the resource. *

* * @param arn * The Amazon Resource Name (ARN) associated with the resource. */ public void setArn(String arn) { this.arn = arn; } /** *

* The Amazon Resource Name (ARN) associated with the resource. *

* * @return The Amazon Resource Name (ARN) associated with the resource. */ public String getArn() { return this.arn; } /** *

* The Amazon Resource Name (ARN) associated with the resource. *

* * @param arn * The Amazon Resource Name (ARN) associated with the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateChannelGroupResult withArn(String arn) { setArn(arn); return this; } /** *

* The output domain where the source stream is sent. Integrate the domain with a downstream CDN (such as Amazon * CloudFront) or playback device. *

* * @param egressDomain * The output domain where the source stream is sent. Integrate the domain with a downstream CDN (such as * Amazon CloudFront) or playback device. */ public void setEgressDomain(String egressDomain) { this.egressDomain = egressDomain; } /** *

* The output domain where the source stream is sent. Integrate the domain with a downstream CDN (such as Amazon * CloudFront) or playback device. *

* * @return The output domain where the source stream is sent. Integrate the domain with a downstream CDN (such as * Amazon CloudFront) or playback device. */ public String getEgressDomain() { return this.egressDomain; } /** *

* The output domain where the source stream is sent. Integrate the domain with a downstream CDN (such as Amazon * CloudFront) or playback device. *

* * @param egressDomain * The output domain where the source stream is sent. Integrate the domain with a downstream CDN (such as * Amazon CloudFront) or playback device. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateChannelGroupResult withEgressDomain(String egressDomain) { setEgressDomain(egressDomain); return this; } /** *

* The date and time the channel group was created. *

* * @param createdAt * The date and time the channel group was created. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** *

* The date and time the channel group was created. *

* * @return The date and time the channel group was created. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** *

* The date and time the channel group was created. *

* * @param createdAt * The date and time the channel group was created. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateChannelGroupResult withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); return this; } /** *

* The date and time the channel group was modified. *

* * @param modifiedAt * The date and time the channel group was modified. */ public void setModifiedAt(java.util.Date modifiedAt) { this.modifiedAt = modifiedAt; } /** *

* The date and time the channel group was modified. *

* * @return The date and time the channel group was modified. */ public java.util.Date getModifiedAt() { return this.modifiedAt; } /** *

* The date and time the channel group was modified. *

* * @param modifiedAt * The date and time the channel group was modified. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateChannelGroupResult withModifiedAt(java.util.Date modifiedAt) { setModifiedAt(modifiedAt); return this; } /** *

* The description for your channel group. *

* * @param description * The description for your channel group. */ public void setDescription(String description) { this.description = description; } /** *

* The description for your channel group. *

* * @return The description for your channel group. */ public String getDescription() { return this.description; } /** *

* The description for your channel group. *

* * @param description * The description for your channel group. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateChannelGroupResult withDescription(String description) { setDescription(description); return this; } /** *

* The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent * updates to the resource. *

* * @param eTag * The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make * concurrent updates to the resource. */ public void setETag(String eTag) { this.eTag = eTag; } /** *

* The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent * updates to the resource. *

* * @return The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make * concurrent updates to the resource. */ public String getETag() { return this.eTag; } /** *

* The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent * updates to the resource. *

* * @param eTag * The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make * concurrent updates to the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateChannelGroupResult withETag(String eTag) { setETag(eTag); return this; } /** *

* The comma-separated list of tag key:value pairs assigned to the channel group. *

* * @return The comma-separated list of tag key:value pairs assigned to the channel group. */ public java.util.Map getTags() { return tags; } /** *

* The comma-separated list of tag key:value pairs assigned to the channel group. *

* * @param tags * The comma-separated list of tag key:value pairs assigned to the channel group. */ public void setTags(java.util.Map tags) { this.tags = tags; } /** *

* The comma-separated list of tag key:value pairs assigned to the channel group. *

* * @param tags * The comma-separated list of tag key:value pairs assigned to the channel group. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateChannelGroupResult withTags(java.util.Map tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see UpdateChannelGroupResult#withTags * @returns a reference to this object so that method calls can be chained together. */ public UpdateChannelGroupResult 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 UpdateChannelGroupResult clearTagsEntries() { this.tags = null; 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 (getChannelGroupName() != null) sb.append("ChannelGroupName: ").append(getChannelGroupName()).append(","); if (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getEgressDomain() != null) sb.append("EgressDomain: ").append(getEgressDomain()).append(","); if (getCreatedAt() != null) sb.append("CreatedAt: ").append(getCreatedAt()).append(","); if (getModifiedAt() != null) sb.append("ModifiedAt: ").append(getModifiedAt()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getETag() != null) sb.append("ETag: ").append(getETag()).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 UpdateChannelGroupResult == false) return false; UpdateChannelGroupResult other = (UpdateChannelGroupResult) obj; if (other.getChannelGroupName() == null ^ this.getChannelGroupName() == null) return false; if (other.getChannelGroupName() != null && other.getChannelGroupName().equals(this.getChannelGroupName()) == false) return false; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getEgressDomain() == null ^ this.getEgressDomain() == null) return false; if (other.getEgressDomain() != null && other.getEgressDomain().equals(this.getEgressDomain()) == false) return false; if (other.getCreatedAt() == null ^ this.getCreatedAt() == null) return false; if (other.getCreatedAt() != null && other.getCreatedAt().equals(this.getCreatedAt()) == false) return false; if (other.getModifiedAt() == null ^ this.getModifiedAt() == null) return false; if (other.getModifiedAt() != null && other.getModifiedAt().equals(this.getModifiedAt()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getETag() == null ^ this.getETag() == null) return false; if (other.getETag() != null && other.getETag().equals(this.getETag()) == 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 + ((getChannelGroupName() == null) ? 0 : getChannelGroupName().hashCode()); hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getEgressDomain() == null) ? 0 : getEgressDomain().hashCode()); hashCode = prime * hashCode + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode()); hashCode = prime * hashCode + ((getModifiedAt() == null) ? 0 : getModifiedAt().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getETag() == null) ? 0 : getETag().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public UpdateChannelGroupResult clone() { try { return (UpdateChannelGroupResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy