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

com.amazonaws.services.backup.model.Condition Maven / Gradle / Ivy

Go to download

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

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

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

/**
 * 

* Contains an array of triplets made up of a condition type (such as StringEquals), a key, and a value. * Used to filter resources using their tags and assign them to a backup plan. Case sensitive. *

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

* An operation applied to a key-value pair used to assign resources to your backup plan. Condition only supports * StringEquals. For more flexible assignment options, including StringLike and the * ability to exclude resources from your backup plan, use Conditions (with an "s" on the end) for your * * BackupSelection . *

*/ private String conditionType; /** *

* The key in a key-value pair. For example, in the tag Department: Accounting, Department * is the key. *

*/ private String conditionKey; /** *

* The value in a key-value pair. For example, in the tag Department: Accounting, * Accounting is the value. *

*/ private String conditionValue; /** *

* An operation applied to a key-value pair used to assign resources to your backup plan. Condition only supports * StringEquals. For more flexible assignment options, including StringLike and the * ability to exclude resources from your backup plan, use Conditions (with an "s" on the end) for your * * BackupSelection . *

* * @param conditionType * An operation applied to a key-value pair used to assign resources to your backup plan. Condition only * supports StringEquals. For more flexible assignment options, including * StringLike and the ability to exclude resources from your backup plan, use * Conditions (with an "s" on the end) for your * BackupSelection . * @see ConditionType */ public void setConditionType(String conditionType) { this.conditionType = conditionType; } /** *

* An operation applied to a key-value pair used to assign resources to your backup plan. Condition only supports * StringEquals. For more flexible assignment options, including StringLike and the * ability to exclude resources from your backup plan, use Conditions (with an "s" on the end) for your * * BackupSelection . *

* * @return An operation applied to a key-value pair used to assign resources to your backup plan. Condition only * supports StringEquals. For more flexible assignment options, including * StringLike and the ability to exclude resources from your backup plan, use * Conditions (with an "s" on the end) for your * BackupSelection . * @see ConditionType */ public String getConditionType() { return this.conditionType; } /** *

* An operation applied to a key-value pair used to assign resources to your backup plan. Condition only supports * StringEquals. For more flexible assignment options, including StringLike and the * ability to exclude resources from your backup plan, use Conditions (with an "s" on the end) for your * * BackupSelection . *

* * @param conditionType * An operation applied to a key-value pair used to assign resources to your backup plan. Condition only * supports StringEquals. For more flexible assignment options, including * StringLike and the ability to exclude resources from your backup plan, use * Conditions (with an "s" on the end) for your * BackupSelection . * @return Returns a reference to this object so that method calls can be chained together. * @see ConditionType */ public Condition withConditionType(String conditionType) { setConditionType(conditionType); return this; } /** *

* An operation applied to a key-value pair used to assign resources to your backup plan. Condition only supports * StringEquals. For more flexible assignment options, including StringLike and the * ability to exclude resources from your backup plan, use Conditions (with an "s" on the end) for your * * BackupSelection . *

* * @param conditionType * An operation applied to a key-value pair used to assign resources to your backup plan. Condition only * supports StringEquals. For more flexible assignment options, including * StringLike and the ability to exclude resources from your backup plan, use * Conditions (with an "s" on the end) for your * BackupSelection . * @return Returns a reference to this object so that method calls can be chained together. * @see ConditionType */ public Condition withConditionType(ConditionType conditionType) { this.conditionType = conditionType.toString(); return this; } /** *

* The key in a key-value pair. For example, in the tag Department: Accounting, Department * is the key. *

* * @param conditionKey * The key in a key-value pair. For example, in the tag Department: Accounting, * Department is the key. */ public void setConditionKey(String conditionKey) { this.conditionKey = conditionKey; } /** *

* The key in a key-value pair. For example, in the tag Department: Accounting, Department * is the key. *

* * @return The key in a key-value pair. For example, in the tag Department: Accounting, * Department is the key. */ public String getConditionKey() { return this.conditionKey; } /** *

* The key in a key-value pair. For example, in the tag Department: Accounting, Department * is the key. *

* * @param conditionKey * The key in a key-value pair. For example, in the tag Department: Accounting, * Department is the key. * @return Returns a reference to this object so that method calls can be chained together. */ public Condition withConditionKey(String conditionKey) { setConditionKey(conditionKey); return this; } /** *

* The value in a key-value pair. For example, in the tag Department: Accounting, * Accounting is the value. *

* * @param conditionValue * The value in a key-value pair. For example, in the tag Department: Accounting, * Accounting is the value. */ public void setConditionValue(String conditionValue) { this.conditionValue = conditionValue; } /** *

* The value in a key-value pair. For example, in the tag Department: Accounting, * Accounting is the value. *

* * @return The value in a key-value pair. For example, in the tag Department: Accounting, * Accounting is the value. */ public String getConditionValue() { return this.conditionValue; } /** *

* The value in a key-value pair. For example, in the tag Department: Accounting, * Accounting is the value. *

* * @param conditionValue * The value in a key-value pair. For example, in the tag Department: Accounting, * Accounting is the value. * @return Returns a reference to this object so that method calls can be chained together. */ public Condition withConditionValue(String conditionValue) { setConditionValue(conditionValue); 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 (getConditionType() != null) sb.append("ConditionType: ").append(getConditionType()).append(","); if (getConditionKey() != null) sb.append("ConditionKey: ").append(getConditionKey()).append(","); if (getConditionValue() != null) sb.append("ConditionValue: ").append(getConditionValue()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Condition == false) return false; Condition other = (Condition) obj; if (other.getConditionType() == null ^ this.getConditionType() == null) return false; if (other.getConditionType() != null && other.getConditionType().equals(this.getConditionType()) == false) return false; if (other.getConditionKey() == null ^ this.getConditionKey() == null) return false; if (other.getConditionKey() != null && other.getConditionKey().equals(this.getConditionKey()) == false) return false; if (other.getConditionValue() == null ^ this.getConditionValue() == null) return false; if (other.getConditionValue() != null && other.getConditionValue().equals(this.getConditionValue()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getConditionType() == null) ? 0 : getConditionType().hashCode()); hashCode = prime * hashCode + ((getConditionKey() == null) ? 0 : getConditionKey().hashCode()); hashCode = prime * hashCode + ((getConditionValue() == null) ? 0 : getConditionValue().hashCode()); return hashCode; } @Override public Condition clone() { try { return (Condition) 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.backup.model.transform.ConditionMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy