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

shiver.me.timbers.aws.ssm.AssociationTarget Maven / Gradle / Ivy


package shiver.me.timbers.aws.ssm;

import java.util.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
import shiver.me.timbers.aws.Property;


/**
 * AssociationTarget
 * 

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-target.html * */ @JsonInclude(JsonInclude.Include.NON_EMPTY) @JsonPropertyOrder({ "Key", "Values" }) public class AssociationTarget implements Property { /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-target.html#cfn-ssm-association-target-key * */ @JsonProperty("Key") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-target.html#cfn-ssm-association-target-key") private CharSequence key; /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-target.html#cfn-ssm-association-target-values * */ @JsonProperty("Values") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-target.html#cfn-ssm-association-target-values") private List values = new ArrayList(); /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-target.html#cfn-ssm-association-target-key * */ @JsonIgnore public CharSequence getKey() { return key; } /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-target.html#cfn-ssm-association-target-key * */ @JsonIgnore public void setKey(CharSequence key) { this.key = key; } public AssociationTarget withKey(CharSequence key) { this.key = key; return this; } /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-target.html#cfn-ssm-association-target-values * */ @JsonIgnore public List getValues() { return values; } /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-target.html#cfn-ssm-association-target-values * */ @JsonIgnore public void setValues(List values) { this.values = values; } public AssociationTarget withValues(List values) { this.values = values; return this; } @Override public String toString() { return new ToStringBuilder(this).append("key", key).append("values", values).toString(); } @Override public int hashCode() { return new HashCodeBuilder().append(key).append(values).toHashCode(); } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof AssociationTarget) == false) { return false; } AssociationTarget rhs = ((AssociationTarget) other); return new EqualsBuilder().append(key, rhs.key).append(values, rhs.values).isEquals(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy