/* * Copyright 2018-2023 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; /** ** If logging is supported for the resource type, indicates whether the component has configured logs to be * monitored. *
*/ private String componentRemarks; /** ** The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application * ELB, and SQS Queue. *
*/ private String resourceType; /** ** The operating system of the component. *
*/ private String osType; /** ** The stack tier of the application component. *
*/ private String tier; /** ** Indicates whether the application component is monitored. *
*/ private Boolean monitor; /** ** Workloads detected in the application component. *
*/ private java.util.Map* 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; } /** ** If logging is supported for the resource type, indicates whether the component has configured logs to be * monitored. *
* * @param componentRemarks * If logging is supported for the resource type, indicates whether the component has configured logs to be * monitored. */ public void setComponentRemarks(String componentRemarks) { this.componentRemarks = componentRemarks; } /** ** If logging is supported for the resource type, indicates whether the component has configured logs to be * monitored. *
* * @return If logging is supported for the resource type, indicates whether the component has configured logs to be * monitored. */ public String getComponentRemarks() { return this.componentRemarks; } /** ** If logging is supported for the resource type, indicates whether the component has configured logs to be * monitored. *
* * @param componentRemarks * If logging is supported for the resource type, indicates whether the component has configured logs to be * monitored. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationComponent withComponentRemarks(String componentRemarks) { setComponentRemarks(componentRemarks); 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 operating system of the component. *
* * @param osType * The operating system of the component. * @see OsType */ public void setOsType(String osType) { this.osType = osType; } /** ** The operating system of the component. *
* * @return The operating system of the component. * @see OsType */ public String getOsType() { return this.osType; } /** ** The operating system of the component. *
* * @param osType * The operating system of the component. * @return Returns a reference to this object so that method calls can be chained together. * @see OsType */ public ApplicationComponent withOsType(String osType) { setOsType(osType); return this; } /** ** The operating system of the component. *
* * @param osType * The operating system of the component. * @return Returns a reference to this object so that method calls can be chained together. * @see OsType */ public ApplicationComponent withOsType(OsType osType) { this.osType = osType.toString(); return this; } /** ** The stack tier of the application component. *
* * @param tier * The stack tier of the application component. * @see Tier */ public void setTier(String tier) { this.tier = tier; } /** ** The stack tier of the application component. *
* * @return The stack tier of the application component. * @see Tier */ 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. * @see Tier */ public ApplicationComponent withTier(String tier) { setTier(tier); return this; } /** ** 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. * @see Tier */ public ApplicationComponent withTier(Tier tier) { this.tier = tier.toString(); 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; } /** ** Workloads detected in the application component. *
* * @return Workloads detected in the application component. */ public java.util.Map* Workloads detected in the application component. *
* * @param detectedWorkload * Workloads detected in the application component. */ public void setDetectedWorkload(java.util.Map* Workloads detected in the application component. *
* * @param detectedWorkload * Workloads detected in the application component. * @return Returns a reference to this object so that method calls can be chained together. */ public ApplicationComponent withDetectedWorkload(java.util.Map