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

com.amazonaws.services.applicationinsights.model.ApplicationComponent Maven / Gradle / Ivy

/*
 * Copyright 2014-2019 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.applicationinsights.model;

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

/**
 * 

* Describes a standalone resource or similarly grouped resources that the application is made up of. *

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

* The name of the component. *

*/ private String componentName; /** *

* The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application * ELB, and SQS Queue. *

*/ private String resourceType; /** *

* The stack tier of the application component. *

*/ private String tier; /** *

* Indicates whether the application component is monitored. *

*/ private Boolean monitor; /** *

* The name of the component. *

* * @param componentName * The name of the component. */ public void setComponentName(String componentName) { this.componentName = componentName; } /** *

* The name of the component. *

* * @return The name of the component. */ public String getComponentName() { return this.componentName; } /** *

* The name of the component. *

* * @param componentName * The name of the component. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationComponent withComponentName(String componentName) { setComponentName(componentName); return this; } /** *

* The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application * ELB, and SQS Queue. *

* * @param resourceType * The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, * Application ELB, and SQS Queue. */ public void setResourceType(String resourceType) { this.resourceType = resourceType; } /** *

* The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application * ELB, and SQS Queue. *

* * @return The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, * Application ELB, and SQS Queue. */ public String getResourceType() { return this.resourceType; } /** *

* The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application * ELB, and SQS Queue. *

* * @param resourceType * The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, * Application ELB, and SQS Queue. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationComponent withResourceType(String resourceType) { setResourceType(resourceType); return this; } /** *

* The stack tier of the application component. *

* * @param tier * The stack tier of the application component. */ public void setTier(String tier) { this.tier = tier; } /** *

* The stack tier of the application component. *

* * @return The stack tier of the application component. */ public String getTier() { return this.tier; } /** *

* The stack tier of the application component. *

* * @param tier * The stack tier of the application component. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationComponent withTier(String tier) { setTier(tier); return this; } /** *

* Indicates whether the application component is monitored. *

* * @param monitor * Indicates whether the application component is monitored. */ public void setMonitor(Boolean monitor) { this.monitor = monitor; } /** *

* Indicates whether the application component is monitored. *

* * @return Indicates whether the application component is monitored. */ public Boolean getMonitor() { return this.monitor; } /** *

* Indicates whether the application component is monitored. *

* * @param monitor * Indicates whether the application component is monitored. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationComponent withMonitor(Boolean monitor) { setMonitor(monitor); return this; } /** *

* Indicates whether the application component is monitored. *

* * @return Indicates whether the application component is monitored. */ public Boolean isMonitor() { return this.monitor; } /** * 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 (getComponentName() != null) sb.append("ComponentName: ").append(getComponentName()).append(","); if (getResourceType() != null) sb.append("ResourceType: ").append(getResourceType()).append(","); if (getTier() != null) sb.append("Tier: ").append(getTier()).append(","); if (getMonitor() != null) sb.append("Monitor: ").append(getMonitor()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ApplicationComponent == false) return false; ApplicationComponent other = (ApplicationComponent) obj; if (other.getComponentName() == null ^ this.getComponentName() == null) return false; if (other.getComponentName() != null && other.getComponentName().equals(this.getComponentName()) == false) return false; if (other.getResourceType() == null ^ this.getResourceType() == null) return false; if (other.getResourceType() != null && other.getResourceType().equals(this.getResourceType()) == false) return false; if (other.getTier() == null ^ this.getTier() == null) return false; if (other.getTier() != null && other.getTier().equals(this.getTier()) == false) return false; if (other.getMonitor() == null ^ this.getMonitor() == null) return false; if (other.getMonitor() != null && other.getMonitor().equals(this.getMonitor()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getComponentName() == null) ? 0 : getComponentName().hashCode()); hashCode = prime * hashCode + ((getResourceType() == null) ? 0 : getResourceType().hashCode()); hashCode = prime * hashCode + ((getTier() == null) ? 0 : getTier().hashCode()); hashCode = prime * hashCode + ((getMonitor() == null) ? 0 : getMonitor().hashCode()); return hashCode; } @Override public ApplicationComponent clone() { try { return (ApplicationComponent) 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.applicationinsights.model.transform.ApplicationComponentMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy