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

com.amazonaws.services.simplesystemsmanagement.model.InventoryAggregator Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Simple Systems Management Service holds the client classes that are used for communicating with the AWS Simple Systems Management 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.simplesystemsmanagement.model;

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

/**
 * 

* Specifies the inventory type and attribute for the aggregation execution. *

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

* The inventory type and attribute name for aggregation. *

*/ private String expression; /** *

* Nested aggregators to further refine aggregation for an inventory type. *

*/ private com.amazonaws.internal.SdkInternalList aggregators; /** *

* A user-defined set of one or more filters on which to aggregate inventory data. Groups return a count of * resources that match and don't match the specified criteria. *

*/ private com.amazonaws.internal.SdkInternalList groups; /** *

* The inventory type and attribute name for aggregation. *

* * @param expression * The inventory type and attribute name for aggregation. */ public void setExpression(String expression) { this.expression = expression; } /** *

* The inventory type and attribute name for aggregation. *

* * @return The inventory type and attribute name for aggregation. */ public String getExpression() { return this.expression; } /** *

* The inventory type and attribute name for aggregation. *

* * @param expression * The inventory type and attribute name for aggregation. * @return Returns a reference to this object so that method calls can be chained together. */ public InventoryAggregator withExpression(String expression) { setExpression(expression); return this; } /** *

* Nested aggregators to further refine aggregation for an inventory type. *

* * @return Nested aggregators to further refine aggregation for an inventory type. */ public java.util.List getAggregators() { if (aggregators == null) { aggregators = new com.amazonaws.internal.SdkInternalList(); } return aggregators; } /** *

* Nested aggregators to further refine aggregation for an inventory type. *

* * @param aggregators * Nested aggregators to further refine aggregation for an inventory type. */ public void setAggregators(java.util.Collection aggregators) { if (aggregators == null) { this.aggregators = null; return; } this.aggregators = new com.amazonaws.internal.SdkInternalList(aggregators); } /** *

* Nested aggregators to further refine aggregation for an inventory type. *

*

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

* * @param aggregators * Nested aggregators to further refine aggregation for an inventory type. * @return Returns a reference to this object so that method calls can be chained together. */ public InventoryAggregator withAggregators(InventoryAggregator... aggregators) { if (this.aggregators == null) { setAggregators(new com.amazonaws.internal.SdkInternalList(aggregators.length)); } for (InventoryAggregator ele : aggregators) { this.aggregators.add(ele); } return this; } /** *

* Nested aggregators to further refine aggregation for an inventory type. *

* * @param aggregators * Nested aggregators to further refine aggregation for an inventory type. * @return Returns a reference to this object so that method calls can be chained together. */ public InventoryAggregator withAggregators(java.util.Collection aggregators) { setAggregators(aggregators); return this; } /** *

* A user-defined set of one or more filters on which to aggregate inventory data. Groups return a count of * resources that match and don't match the specified criteria. *

* * @return A user-defined set of one or more filters on which to aggregate inventory data. Groups return a count of * resources that match and don't match the specified criteria. */ public java.util.List getGroups() { if (groups == null) { groups = new com.amazonaws.internal.SdkInternalList(); } return groups; } /** *

* A user-defined set of one or more filters on which to aggregate inventory data. Groups return a count of * resources that match and don't match the specified criteria. *

* * @param groups * A user-defined set of one or more filters on which to aggregate inventory data. Groups return a count of * resources that match and don't match the specified criteria. */ public void setGroups(java.util.Collection groups) { if (groups == null) { this.groups = null; return; } this.groups = new com.amazonaws.internal.SdkInternalList(groups); } /** *

* A user-defined set of one or more filters on which to aggregate inventory data. Groups return a count of * resources that match and don't match the specified criteria. *

*

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

* * @param groups * A user-defined set of one or more filters on which to aggregate inventory data. Groups return a count of * resources that match and don't match the specified criteria. * @return Returns a reference to this object so that method calls can be chained together. */ public InventoryAggregator withGroups(InventoryGroup... groups) { if (this.groups == null) { setGroups(new com.amazonaws.internal.SdkInternalList(groups.length)); } for (InventoryGroup ele : groups) { this.groups.add(ele); } return this; } /** *

* A user-defined set of one or more filters on which to aggregate inventory data. Groups return a count of * resources that match and don't match the specified criteria. *

* * @param groups * A user-defined set of one or more filters on which to aggregate inventory data. Groups return a count of * resources that match and don't match the specified criteria. * @return Returns a reference to this object so that method calls can be chained together. */ public InventoryAggregator withGroups(java.util.Collection groups) { setGroups(groups); 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 (getExpression() != null) sb.append("Expression: ").append(getExpression()).append(","); if (getAggregators() != null) sb.append("Aggregators: ").append(getAggregators()).append(","); if (getGroups() != null) sb.append("Groups: ").append(getGroups()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof InventoryAggregator == false) return false; InventoryAggregator other = (InventoryAggregator) obj; if (other.getExpression() == null ^ this.getExpression() == null) return false; if (other.getExpression() != null && other.getExpression().equals(this.getExpression()) == false) return false; if (other.getAggregators() == null ^ this.getAggregators() == null) return false; if (other.getAggregators() != null && other.getAggregators().equals(this.getAggregators()) == false) return false; if (other.getGroups() == null ^ this.getGroups() == null) return false; if (other.getGroups() != null && other.getGroups().equals(this.getGroups()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getExpression() == null) ? 0 : getExpression().hashCode()); hashCode = prime * hashCode + ((getAggregators() == null) ? 0 : getAggregators().hashCode()); hashCode = prime * hashCode + ((getGroups() == null) ? 0 : getGroups().hashCode()); return hashCode; } @Override public InventoryAggregator clone() { try { return (InventoryAggregator) 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.simplesystemsmanagement.model.transform.InventoryAggregatorMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy