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

com.amazonaws.services.pinpointsmsvoicev2.model.UpdateEventDestinationRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Pinpoint SMS Voice V2 module holds the client classes that are used for communicating with Amazon Pinpoint SMS Voice V2 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.pinpointsmsvoicev2.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 UpdateEventDestinationRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The configuration set to update with the new event destination. Valid values for this can be the * ConfigurationSetName or ConfigurationSetArn. *

*/ private String configurationSetName; /** *

* The name to use for the event destination. *

*/ private String eventDestinationName; /** *

* When set to true logging is enabled. *

*/ private Boolean enabled; /** *

* An array of event types that determine which events to log. *

* *

* The TEXT_SENT event type is not supported. *

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

* An object that contains information about an event destination that sends data to CloudWatch Logs. *

*/ private CloudWatchLogsDestination cloudWatchLogsDestination; /** *

* An object that contains information about an event destination for logging to Firehose. *

*/ private KinesisFirehoseDestination kinesisFirehoseDestination; /** *

* An object that contains information about an event destination that sends data to Amazon SNS. *

*/ private SnsDestination snsDestination; /** *

* The configuration set to update with the new event destination. Valid values for this can be the * ConfigurationSetName or ConfigurationSetArn. *

* * @param configurationSetName * The configuration set to update with the new event destination. Valid values for this can be the * ConfigurationSetName or ConfigurationSetArn. */ public void setConfigurationSetName(String configurationSetName) { this.configurationSetName = configurationSetName; } /** *

* The configuration set to update with the new event destination. Valid values for this can be the * ConfigurationSetName or ConfigurationSetArn. *

* * @return The configuration set to update with the new event destination. Valid values for this can be the * ConfigurationSetName or ConfigurationSetArn. */ public String getConfigurationSetName() { return this.configurationSetName; } /** *

* The configuration set to update with the new event destination. Valid values for this can be the * ConfigurationSetName or ConfigurationSetArn. *

* * @param configurationSetName * The configuration set to update with the new event destination. Valid values for this can be the * ConfigurationSetName or ConfigurationSetArn. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateEventDestinationRequest withConfigurationSetName(String configurationSetName) { setConfigurationSetName(configurationSetName); return this; } /** *

* The name to use for the event destination. *

* * @param eventDestinationName * The name to use for the event destination. */ public void setEventDestinationName(String eventDestinationName) { this.eventDestinationName = eventDestinationName; } /** *

* The name to use for the event destination. *

* * @return The name to use for the event destination. */ public String getEventDestinationName() { return this.eventDestinationName; } /** *

* The name to use for the event destination. *

* * @param eventDestinationName * The name to use for the event destination. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateEventDestinationRequest withEventDestinationName(String eventDestinationName) { setEventDestinationName(eventDestinationName); return this; } /** *

* When set to true logging is enabled. *

* * @param enabled * When set to true logging is enabled. */ public void setEnabled(Boolean enabled) { this.enabled = enabled; } /** *

* When set to true logging is enabled. *

* * @return When set to true logging is enabled. */ public Boolean getEnabled() { return this.enabled; } /** *

* When set to true logging is enabled. *

* * @param enabled * When set to true logging is enabled. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateEventDestinationRequest withEnabled(Boolean enabled) { setEnabled(enabled); return this; } /** *

* When set to true logging is enabled. *

* * @return When set to true logging is enabled. */ public Boolean isEnabled() { return this.enabled; } /** *

* An array of event types that determine which events to log. *

* *

* The TEXT_SENT event type is not supported. *

*
* * @return An array of event types that determine which events to log.

*

* The TEXT_SENT event type is not supported. *

* @see EventType */ public java.util.List getMatchingEventTypes() { return matchingEventTypes; } /** *

* An array of event types that determine which events to log. *

* *

* The TEXT_SENT event type is not supported. *

*
* * @param matchingEventTypes * An array of event types that determine which events to log.

*

* The TEXT_SENT event type is not supported. *

* @see EventType */ public void setMatchingEventTypes(java.util.Collection matchingEventTypes) { if (matchingEventTypes == null) { this.matchingEventTypes = null; return; } this.matchingEventTypes = new java.util.ArrayList(matchingEventTypes); } /** *

* An array of event types that determine which events to log. *

* *

* The TEXT_SENT event type is not supported. *

*
*

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

* * @param matchingEventTypes * An array of event types that determine which events to log.

*

* The TEXT_SENT event type is not supported. *

* @return Returns a reference to this object so that method calls can be chained together. * @see EventType */ public UpdateEventDestinationRequest withMatchingEventTypes(String... matchingEventTypes) { if (this.matchingEventTypes == null) { setMatchingEventTypes(new java.util.ArrayList(matchingEventTypes.length)); } for (String ele : matchingEventTypes) { this.matchingEventTypes.add(ele); } return this; } /** *

* An array of event types that determine which events to log. *

* *

* The TEXT_SENT event type is not supported. *

*
* * @param matchingEventTypes * An array of event types that determine which events to log.

*

* The TEXT_SENT event type is not supported. *

* @return Returns a reference to this object so that method calls can be chained together. * @see EventType */ public UpdateEventDestinationRequest withMatchingEventTypes(java.util.Collection matchingEventTypes) { setMatchingEventTypes(matchingEventTypes); return this; } /** *

* An array of event types that determine which events to log. *

* *

* The TEXT_SENT event type is not supported. *

*
* * @param matchingEventTypes * An array of event types that determine which events to log.

*

* The TEXT_SENT event type is not supported. *

* @return Returns a reference to this object so that method calls can be chained together. * @see EventType */ public UpdateEventDestinationRequest withMatchingEventTypes(EventType... matchingEventTypes) { java.util.ArrayList matchingEventTypesCopy = new java.util.ArrayList(matchingEventTypes.length); for (EventType value : matchingEventTypes) { matchingEventTypesCopy.add(value.toString()); } if (getMatchingEventTypes() == null) { setMatchingEventTypes(matchingEventTypesCopy); } else { getMatchingEventTypes().addAll(matchingEventTypesCopy); } return this; } /** *

* An object that contains information about an event destination that sends data to CloudWatch Logs. *

* * @param cloudWatchLogsDestination * An object that contains information about an event destination that sends data to CloudWatch Logs. */ public void setCloudWatchLogsDestination(CloudWatchLogsDestination cloudWatchLogsDestination) { this.cloudWatchLogsDestination = cloudWatchLogsDestination; } /** *

* An object that contains information about an event destination that sends data to CloudWatch Logs. *

* * @return An object that contains information about an event destination that sends data to CloudWatch Logs. */ public CloudWatchLogsDestination getCloudWatchLogsDestination() { return this.cloudWatchLogsDestination; } /** *

* An object that contains information about an event destination that sends data to CloudWatch Logs. *

* * @param cloudWatchLogsDestination * An object that contains information about an event destination that sends data to CloudWatch Logs. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateEventDestinationRequest withCloudWatchLogsDestination(CloudWatchLogsDestination cloudWatchLogsDestination) { setCloudWatchLogsDestination(cloudWatchLogsDestination); return this; } /** *

* An object that contains information about an event destination for logging to Firehose. *

* * @param kinesisFirehoseDestination * An object that contains information about an event destination for logging to Firehose. */ public void setKinesisFirehoseDestination(KinesisFirehoseDestination kinesisFirehoseDestination) { this.kinesisFirehoseDestination = kinesisFirehoseDestination; } /** *

* An object that contains information about an event destination for logging to Firehose. *

* * @return An object that contains information about an event destination for logging to Firehose. */ public KinesisFirehoseDestination getKinesisFirehoseDestination() { return this.kinesisFirehoseDestination; } /** *

* An object that contains information about an event destination for logging to Firehose. *

* * @param kinesisFirehoseDestination * An object that contains information about an event destination for logging to Firehose. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateEventDestinationRequest withKinesisFirehoseDestination(KinesisFirehoseDestination kinesisFirehoseDestination) { setKinesisFirehoseDestination(kinesisFirehoseDestination); return this; } /** *

* An object that contains information about an event destination that sends data to Amazon SNS. *

* * @param snsDestination * An object that contains information about an event destination that sends data to Amazon SNS. */ public void setSnsDestination(SnsDestination snsDestination) { this.snsDestination = snsDestination; } /** *

* An object that contains information about an event destination that sends data to Amazon SNS. *

* * @return An object that contains information about an event destination that sends data to Amazon SNS. */ public SnsDestination getSnsDestination() { return this.snsDestination; } /** *

* An object that contains information about an event destination that sends data to Amazon SNS. *

* * @param snsDestination * An object that contains information about an event destination that sends data to Amazon SNS. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateEventDestinationRequest withSnsDestination(SnsDestination snsDestination) { setSnsDestination(snsDestination); 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 (getConfigurationSetName() != null) sb.append("ConfigurationSetName: ").append(getConfigurationSetName()).append(","); if (getEventDestinationName() != null) sb.append("EventDestinationName: ").append(getEventDestinationName()).append(","); if (getEnabled() != null) sb.append("Enabled: ").append(getEnabled()).append(","); if (getMatchingEventTypes() != null) sb.append("MatchingEventTypes: ").append(getMatchingEventTypes()).append(","); if (getCloudWatchLogsDestination() != null) sb.append("CloudWatchLogsDestination: ").append(getCloudWatchLogsDestination()).append(","); if (getKinesisFirehoseDestination() != null) sb.append("KinesisFirehoseDestination: ").append(getKinesisFirehoseDestination()).append(","); if (getSnsDestination() != null) sb.append("SnsDestination: ").append(getSnsDestination()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateEventDestinationRequest == false) return false; UpdateEventDestinationRequest other = (UpdateEventDestinationRequest) obj; if (other.getConfigurationSetName() == null ^ this.getConfigurationSetName() == null) return false; if (other.getConfigurationSetName() != null && other.getConfigurationSetName().equals(this.getConfigurationSetName()) == false) return false; if (other.getEventDestinationName() == null ^ this.getEventDestinationName() == null) return false; if (other.getEventDestinationName() != null && other.getEventDestinationName().equals(this.getEventDestinationName()) == false) return false; if (other.getEnabled() == null ^ this.getEnabled() == null) return false; if (other.getEnabled() != null && other.getEnabled().equals(this.getEnabled()) == false) return false; if (other.getMatchingEventTypes() == null ^ this.getMatchingEventTypes() == null) return false; if (other.getMatchingEventTypes() != null && other.getMatchingEventTypes().equals(this.getMatchingEventTypes()) == false) return false; if (other.getCloudWatchLogsDestination() == null ^ this.getCloudWatchLogsDestination() == null) return false; if (other.getCloudWatchLogsDestination() != null && other.getCloudWatchLogsDestination().equals(this.getCloudWatchLogsDestination()) == false) return false; if (other.getKinesisFirehoseDestination() == null ^ this.getKinesisFirehoseDestination() == null) return false; if (other.getKinesisFirehoseDestination() != null && other.getKinesisFirehoseDestination().equals(this.getKinesisFirehoseDestination()) == false) return false; if (other.getSnsDestination() == null ^ this.getSnsDestination() == null) return false; if (other.getSnsDestination() != null && other.getSnsDestination().equals(this.getSnsDestination()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getConfigurationSetName() == null) ? 0 : getConfigurationSetName().hashCode()); hashCode = prime * hashCode + ((getEventDestinationName() == null) ? 0 : getEventDestinationName().hashCode()); hashCode = prime * hashCode + ((getEnabled() == null) ? 0 : getEnabled().hashCode()); hashCode = prime * hashCode + ((getMatchingEventTypes() == null) ? 0 : getMatchingEventTypes().hashCode()); hashCode = prime * hashCode + ((getCloudWatchLogsDestination() == null) ? 0 : getCloudWatchLogsDestination().hashCode()); hashCode = prime * hashCode + ((getKinesisFirehoseDestination() == null) ? 0 : getKinesisFirehoseDestination().hashCode()); hashCode = prime * hashCode + ((getSnsDestination() == null) ? 0 : getSnsDestination().hashCode()); return hashCode; } @Override public UpdateEventDestinationRequest clone() { return (UpdateEventDestinationRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy