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

com.amazonaws.services.vpclattice.model.GetRuleResult Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon VPC Lattice module holds the client classes that are used for communicating with Amazon VPC Lattice Service

There is a newer version: 1.12.772
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.vpclattice.model;

import java.io.Serializable;
import javax.annotation.Generated;

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

    /**
     * 

* The action for the default rule. *

*/ private RuleAction action; /** *

* The Amazon Resource Name (ARN) of the listener. *

*/ private String arn; /** *

* The date and time that the listener rule was created, specified in ISO-8601 format. *

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

* The ID of the listener. *

*/ private String id; /** *

* Indicates whether this is the default rule. *

*/ private Boolean isDefault; /** *

* The date and time that the listener rule was last updated, specified in ISO-8601 format. *

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

* The rule match. *

*/ private RuleMatch match; /** *

* The name of the listener. *

*/ private String name; /** *

* The priority level for the specified rule. *

*/ private Integer priority; /** *

* The action for the default rule. *

* * @param action * The action for the default rule. */ public void setAction(RuleAction action) { this.action = action; } /** *

* The action for the default rule. *

* * @return The action for the default rule. */ public RuleAction getAction() { return this.action; } /** *

* The action for the default rule. *

* * @param action * The action for the default rule. * @return Returns a reference to this object so that method calls can be chained together. */ public GetRuleResult withAction(RuleAction action) { setAction(action); return this; } /** *

* The Amazon Resource Name (ARN) of the listener. *

* * @param arn * The Amazon Resource Name (ARN) of the listener. */ public void setArn(String arn) { this.arn = arn; } /** *

* The Amazon Resource Name (ARN) of the listener. *

* * @return The Amazon Resource Name (ARN) of the listener. */ public String getArn() { return this.arn; } /** *

* The Amazon Resource Name (ARN) of the listener. *

* * @param arn * The Amazon Resource Name (ARN) of the listener. * @return Returns a reference to this object so that method calls can be chained together. */ public GetRuleResult withArn(String arn) { setArn(arn); return this; } /** *

* The date and time that the listener rule was created, specified in ISO-8601 format. *

* * @param createdAt * The date and time that the listener rule was created, specified in ISO-8601 format. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** *

* The date and time that the listener rule was created, specified in ISO-8601 format. *

* * @return The date and time that the listener rule was created, specified in ISO-8601 format. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** *

* The date and time that the listener rule was created, specified in ISO-8601 format. *

* * @param createdAt * The date and time that the listener rule was created, specified in ISO-8601 format. * @return Returns a reference to this object so that method calls can be chained together. */ public GetRuleResult withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); return this; } /** *

* The ID of the listener. *

* * @param id * The ID of the listener. */ public void setId(String id) { this.id = id; } /** *

* The ID of the listener. *

* * @return The ID of the listener. */ public String getId() { return this.id; } /** *

* The ID of the listener. *

* * @param id * The ID of the listener. * @return Returns a reference to this object so that method calls can be chained together. */ public GetRuleResult withId(String id) { setId(id); return this; } /** *

* Indicates whether this is the default rule. *

* * @param isDefault * Indicates whether this is the default rule. */ public void setIsDefault(Boolean isDefault) { this.isDefault = isDefault; } /** *

* Indicates whether this is the default rule. *

* * @return Indicates whether this is the default rule. */ public Boolean getIsDefault() { return this.isDefault; } /** *

* Indicates whether this is the default rule. *

* * @param isDefault * Indicates whether this is the default rule. * @return Returns a reference to this object so that method calls can be chained together. */ public GetRuleResult withIsDefault(Boolean isDefault) { setIsDefault(isDefault); return this; } /** *

* Indicates whether this is the default rule. *

* * @return Indicates whether this is the default rule. */ public Boolean isDefault() { return this.isDefault; } /** *

* The date and time that the listener rule was last updated, specified in ISO-8601 format. *

* * @param lastUpdatedAt * The date and time that the listener rule was last updated, specified in ISO-8601 format. */ public void setLastUpdatedAt(java.util.Date lastUpdatedAt) { this.lastUpdatedAt = lastUpdatedAt; } /** *

* The date and time that the listener rule was last updated, specified in ISO-8601 format. *

* * @return The date and time that the listener rule was last updated, specified in ISO-8601 format. */ public java.util.Date getLastUpdatedAt() { return this.lastUpdatedAt; } /** *

* The date and time that the listener rule was last updated, specified in ISO-8601 format. *

* * @param lastUpdatedAt * The date and time that the listener rule was last updated, specified in ISO-8601 format. * @return Returns a reference to this object so that method calls can be chained together. */ public GetRuleResult withLastUpdatedAt(java.util.Date lastUpdatedAt) { setLastUpdatedAt(lastUpdatedAt); return this; } /** *

* The rule match. *

* * @param match * The rule match. */ public void setMatch(RuleMatch match) { this.match = match; } /** *

* The rule match. *

* * @return The rule match. */ public RuleMatch getMatch() { return this.match; } /** *

* The rule match. *

* * @param match * The rule match. * @return Returns a reference to this object so that method calls can be chained together. */ public GetRuleResult withMatch(RuleMatch match) { setMatch(match); return this; } /** *

* The name of the listener. *

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

* The name of the listener. *

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

* The name of the listener. *

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

* The priority level for the specified rule. *

* * @param priority * The priority level for the specified rule. */ public void setPriority(Integer priority) { this.priority = priority; } /** *

* The priority level for the specified rule. *

* * @return The priority level for the specified rule. */ public Integer getPriority() { return this.priority; } /** *

* The priority level for the specified rule. *

* * @param priority * The priority level for the specified rule. * @return Returns a reference to this object so that method calls can be chained together. */ public GetRuleResult withPriority(Integer priority) { setPriority(priority); 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 (getAction() != null) sb.append("Action: ").append(getAction()).append(","); if (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getCreatedAt() != null) sb.append("CreatedAt: ").append(getCreatedAt()).append(","); if (getId() != null) sb.append("Id: ").append(getId()).append(","); if (getIsDefault() != null) sb.append("IsDefault: ").append(getIsDefault()).append(","); if (getLastUpdatedAt() != null) sb.append("LastUpdatedAt: ").append(getLastUpdatedAt()).append(","); if (getMatch() != null) sb.append("Match: ").append(getMatch()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getPriority() != null) sb.append("Priority: ").append(getPriority()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetRuleResult == false) return false; GetRuleResult other = (GetRuleResult) obj; if (other.getAction() == null ^ this.getAction() == null) return false; if (other.getAction() != null && other.getAction().equals(this.getAction()) == false) return false; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getCreatedAt() == null ^ this.getCreatedAt() == null) return false; if (other.getCreatedAt() != null && other.getCreatedAt().equals(this.getCreatedAt()) == false) return false; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == false) return false; if (other.getIsDefault() == null ^ this.getIsDefault() == null) return false; if (other.getIsDefault() != null && other.getIsDefault().equals(this.getIsDefault()) == false) return false; if (other.getLastUpdatedAt() == null ^ this.getLastUpdatedAt() == null) return false; if (other.getLastUpdatedAt() != null && other.getLastUpdatedAt().equals(this.getLastUpdatedAt()) == false) return false; if (other.getMatch() == null ^ this.getMatch() == null) return false; if (other.getMatch() != null && other.getMatch().equals(this.getMatch()) == 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.getPriority() == null ^ this.getPriority() == null) return false; if (other.getPriority() != null && other.getPriority().equals(this.getPriority()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAction() == null) ? 0 : getAction().hashCode()); hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode()); hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getIsDefault() == null) ? 0 : getIsDefault().hashCode()); hashCode = prime * hashCode + ((getLastUpdatedAt() == null) ? 0 : getLastUpdatedAt().hashCode()); hashCode = prime * hashCode + ((getMatch() == null) ? 0 : getMatch().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getPriority() == null) ? 0 : getPriority().hashCode()); return hashCode; } @Override public GetRuleResult clone() { try { return (GetRuleResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy