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

com.amazonaws.services.cloudwatchevents.model.ApiDestination Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon CloudWatch Events module holds the client classes that are used for communicating with Amazon CloudWatch Events 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.cloudwatchevents.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Contains details about an API destination. *

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

* The ARN of the API destination. *

*/ private String apiDestinationArn; /** *

* The name of the API destination. *

*/ private String name; /** *

* The state of the API destination. *

*/ private String apiDestinationState; /** *

* The ARN of the connection specified for the API destination. *

*/ private String connectionArn; /** *

* The URL to the endpoint for the API destination. *

*/ private String invocationEndpoint; /** *

* The method to use to connect to the HTTP endpoint. *

*/ private String httpMethod; /** *

* The maximum number of invocations per second to send to the HTTP endpoint. *

*/ private Integer invocationRateLimitPerSecond; /** *

* A time stamp for the time that the API destination was created. *

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

* A time stamp for the time that the API destination was last modified. *

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

* The ARN of the API destination. *

* * @param apiDestinationArn * The ARN of the API destination. */ public void setApiDestinationArn(String apiDestinationArn) { this.apiDestinationArn = apiDestinationArn; } /** *

* The ARN of the API destination. *

* * @return The ARN of the API destination. */ public String getApiDestinationArn() { return this.apiDestinationArn; } /** *

* The ARN of the API destination. *

* * @param apiDestinationArn * The ARN of the API destination. * @return Returns a reference to this object so that method calls can be chained together. */ public ApiDestination withApiDestinationArn(String apiDestinationArn) { setApiDestinationArn(apiDestinationArn); return this; } /** *

* The name of the API destination. *

* * @param name * The name of the API destination. */ public void setName(String name) { this.name = name; } /** *

* The name of the API destination. *

* * @return The name of the API destination. */ public String getName() { return this.name; } /** *

* The name of the API destination. *

* * @param name * The name of the API destination. * @return Returns a reference to this object so that method calls can be chained together. */ public ApiDestination withName(String name) { setName(name); return this; } /** *

* The state of the API destination. *

* * @param apiDestinationState * The state of the API destination. * @see ApiDestinationState */ public void setApiDestinationState(String apiDestinationState) { this.apiDestinationState = apiDestinationState; } /** *

* The state of the API destination. *

* * @return The state of the API destination. * @see ApiDestinationState */ public String getApiDestinationState() { return this.apiDestinationState; } /** *

* The state of the API destination. *

* * @param apiDestinationState * The state of the API destination. * @return Returns a reference to this object so that method calls can be chained together. * @see ApiDestinationState */ public ApiDestination withApiDestinationState(String apiDestinationState) { setApiDestinationState(apiDestinationState); return this; } /** *

* The state of the API destination. *

* * @param apiDestinationState * The state of the API destination. * @return Returns a reference to this object so that method calls can be chained together. * @see ApiDestinationState */ public ApiDestination withApiDestinationState(ApiDestinationState apiDestinationState) { this.apiDestinationState = apiDestinationState.toString(); return this; } /** *

* The ARN of the connection specified for the API destination. *

* * @param connectionArn * The ARN of the connection specified for the API destination. */ public void setConnectionArn(String connectionArn) { this.connectionArn = connectionArn; } /** *

* The ARN of the connection specified for the API destination. *

* * @return The ARN of the connection specified for the API destination. */ public String getConnectionArn() { return this.connectionArn; } /** *

* The ARN of the connection specified for the API destination. *

* * @param connectionArn * The ARN of the connection specified for the API destination. * @return Returns a reference to this object so that method calls can be chained together. */ public ApiDestination withConnectionArn(String connectionArn) { setConnectionArn(connectionArn); return this; } /** *

* The URL to the endpoint for the API destination. *

* * @param invocationEndpoint * The URL to the endpoint for the API destination. */ public void setInvocationEndpoint(String invocationEndpoint) { this.invocationEndpoint = invocationEndpoint; } /** *

* The URL to the endpoint for the API destination. *

* * @return The URL to the endpoint for the API destination. */ public String getInvocationEndpoint() { return this.invocationEndpoint; } /** *

* The URL to the endpoint for the API destination. *

* * @param invocationEndpoint * The URL to the endpoint for the API destination. * @return Returns a reference to this object so that method calls can be chained together. */ public ApiDestination withInvocationEndpoint(String invocationEndpoint) { setInvocationEndpoint(invocationEndpoint); return this; } /** *

* The method to use to connect to the HTTP endpoint. *

* * @param httpMethod * The method to use to connect to the HTTP endpoint. * @see ApiDestinationHttpMethod */ public void setHttpMethod(String httpMethod) { this.httpMethod = httpMethod; } /** *

* The method to use to connect to the HTTP endpoint. *

* * @return The method to use to connect to the HTTP endpoint. * @see ApiDestinationHttpMethod */ public String getHttpMethod() { return this.httpMethod; } /** *

* The method to use to connect to the HTTP endpoint. *

* * @param httpMethod * The method to use to connect to the HTTP endpoint. * @return Returns a reference to this object so that method calls can be chained together. * @see ApiDestinationHttpMethod */ public ApiDestination withHttpMethod(String httpMethod) { setHttpMethod(httpMethod); return this; } /** *

* The method to use to connect to the HTTP endpoint. *

* * @param httpMethod * The method to use to connect to the HTTP endpoint. * @return Returns a reference to this object so that method calls can be chained together. * @see ApiDestinationHttpMethod */ public ApiDestination withHttpMethod(ApiDestinationHttpMethod httpMethod) { this.httpMethod = httpMethod.toString(); return this; } /** *

* The maximum number of invocations per second to send to the HTTP endpoint. *

* * @param invocationRateLimitPerSecond * The maximum number of invocations per second to send to the HTTP endpoint. */ public void setInvocationRateLimitPerSecond(Integer invocationRateLimitPerSecond) { this.invocationRateLimitPerSecond = invocationRateLimitPerSecond; } /** *

* The maximum number of invocations per second to send to the HTTP endpoint. *

* * @return The maximum number of invocations per second to send to the HTTP endpoint. */ public Integer getInvocationRateLimitPerSecond() { return this.invocationRateLimitPerSecond; } /** *

* The maximum number of invocations per second to send to the HTTP endpoint. *

* * @param invocationRateLimitPerSecond * The maximum number of invocations per second to send to the HTTP endpoint. * @return Returns a reference to this object so that method calls can be chained together. */ public ApiDestination withInvocationRateLimitPerSecond(Integer invocationRateLimitPerSecond) { setInvocationRateLimitPerSecond(invocationRateLimitPerSecond); return this; } /** *

* A time stamp for the time that the API destination was created. *

* * @param creationTime * A time stamp for the time that the API destination was created. */ public void setCreationTime(java.util.Date creationTime) { this.creationTime = creationTime; } /** *

* A time stamp for the time that the API destination was created. *

* * @return A time stamp for the time that the API destination was created. */ public java.util.Date getCreationTime() { return this.creationTime; } /** *

* A time stamp for the time that the API destination was created. *

* * @param creationTime * A time stamp for the time that the API destination was created. * @return Returns a reference to this object so that method calls can be chained together. */ public ApiDestination withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); return this; } /** *

* A time stamp for the time that the API destination was last modified. *

* * @param lastModifiedTime * A time stamp for the time that the API destination was last modified. */ public void setLastModifiedTime(java.util.Date lastModifiedTime) { this.lastModifiedTime = lastModifiedTime; } /** *

* A time stamp for the time that the API destination was last modified. *

* * @return A time stamp for the time that the API destination was last modified. */ public java.util.Date getLastModifiedTime() { return this.lastModifiedTime; } /** *

* A time stamp for the time that the API destination was last modified. *

* * @param lastModifiedTime * A time stamp for the time that the API destination was last modified. * @return Returns a reference to this object so that method calls can be chained together. */ public ApiDestination withLastModifiedTime(java.util.Date lastModifiedTime) { setLastModifiedTime(lastModifiedTime); 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 (getApiDestinationArn() != null) sb.append("ApiDestinationArn: ").append(getApiDestinationArn()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getApiDestinationState() != null) sb.append("ApiDestinationState: ").append(getApiDestinationState()).append(","); if (getConnectionArn() != null) sb.append("ConnectionArn: ").append(getConnectionArn()).append(","); if (getInvocationEndpoint() != null) sb.append("InvocationEndpoint: ").append(getInvocationEndpoint()).append(","); if (getHttpMethod() != null) sb.append("HttpMethod: ").append(getHttpMethod()).append(","); if (getInvocationRateLimitPerSecond() != null) sb.append("InvocationRateLimitPerSecond: ").append(getInvocationRateLimitPerSecond()).append(","); if (getCreationTime() != null) sb.append("CreationTime: ").append(getCreationTime()).append(","); if (getLastModifiedTime() != null) sb.append("LastModifiedTime: ").append(getLastModifiedTime()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ApiDestination == false) return false; ApiDestination other = (ApiDestination) obj; if (other.getApiDestinationArn() == null ^ this.getApiDestinationArn() == null) return false; if (other.getApiDestinationArn() != null && other.getApiDestinationArn().equals(this.getApiDestinationArn()) == 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.getApiDestinationState() == null ^ this.getApiDestinationState() == null) return false; if (other.getApiDestinationState() != null && other.getApiDestinationState().equals(this.getApiDestinationState()) == false) return false; if (other.getConnectionArn() == null ^ this.getConnectionArn() == null) return false; if (other.getConnectionArn() != null && other.getConnectionArn().equals(this.getConnectionArn()) == false) return false; if (other.getInvocationEndpoint() == null ^ this.getInvocationEndpoint() == null) return false; if (other.getInvocationEndpoint() != null && other.getInvocationEndpoint().equals(this.getInvocationEndpoint()) == false) return false; if (other.getHttpMethod() == null ^ this.getHttpMethod() == null) return false; if (other.getHttpMethod() != null && other.getHttpMethod().equals(this.getHttpMethod()) == false) return false; if (other.getInvocationRateLimitPerSecond() == null ^ this.getInvocationRateLimitPerSecond() == null) return false; if (other.getInvocationRateLimitPerSecond() != null && other.getInvocationRateLimitPerSecond().equals(this.getInvocationRateLimitPerSecond()) == false) return false; if (other.getCreationTime() == null ^ this.getCreationTime() == null) return false; if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false) return false; if (other.getLastModifiedTime() == null ^ this.getLastModifiedTime() == null) return false; if (other.getLastModifiedTime() != null && other.getLastModifiedTime().equals(this.getLastModifiedTime()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getApiDestinationArn() == null) ? 0 : getApiDestinationArn().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getApiDestinationState() == null) ? 0 : getApiDestinationState().hashCode()); hashCode = prime * hashCode + ((getConnectionArn() == null) ? 0 : getConnectionArn().hashCode()); hashCode = prime * hashCode + ((getInvocationEndpoint() == null) ? 0 : getInvocationEndpoint().hashCode()); hashCode = prime * hashCode + ((getHttpMethod() == null) ? 0 : getHttpMethod().hashCode()); hashCode = prime * hashCode + ((getInvocationRateLimitPerSecond() == null) ? 0 : getInvocationRateLimitPerSecond().hashCode()); hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode()); hashCode = prime * hashCode + ((getLastModifiedTime() == null) ? 0 : getLastModifiedTime().hashCode()); return hashCode; } @Override public ApiDestination clone() { try { return (ApiDestination) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.cloudwatchevents.model.transform.ApiDestinationMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy