/* * 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.cloudwatchevidently.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class EvaluateFeatureRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* An internal ID that represents a unique user of the application. This entityID is checked against * any override rules assigned for this feature. *

*/ private String entityId; /** *

* A JSON object of attributes that you can optionally pass in as part of the evaluation event sent to Evidently * from the user session. Evidently can use this value to match user sessions with defined audience segments. For * more information, see Use * segments to focus your audience. *

*

* If you include this parameter, the value must be a JSON object. A JSON array is not supported. *

*/ private String evaluationContext; /** *

* The name of the feature being evaluated. *

*/ private String feature; /** *

* The name or ARN of the project that contains this feature. *

*/ private String project; /** *

* An internal ID that represents a unique user of the application. This entityID is checked against * any override rules assigned for this feature. *

* * @param entityId * An internal ID that represents a unique user of the application. This entityID is checked * against any override rules assigned for this feature. */ public void setEntityId(String entityId) { this.entityId = entityId; } /** *

* An internal ID that represents a unique user of the application. This entityID is checked against * any override rules assigned for this feature. *

* * @return An internal ID that represents a unique user of the application. This entityID is checked * against any override rules assigned for this feature. */ public String getEntityId() { return this.entityId; } /** *

* An internal ID that represents a unique user of the application. This entityID is checked against * any override rules assigned for this feature. *

* * @param entityId * An internal ID that represents a unique user of the application. This entityID is checked * against any override rules assigned for this feature. * @return Returns a reference to this object so that method calls can be chained together. */ public EvaluateFeatureRequest withEntityId(String entityId) { setEntityId(entityId); return this; } /** *

* A JSON object of attributes that you can optionally pass in as part of the evaluation event sent to Evidently * from the user session. Evidently can use this value to match user sessions with defined audience segments. For * more information, see Use * segments to focus your audience. *

*

* If you include this parameter, the value must be a JSON object. A JSON array is not supported. *

*

* This field's value must be valid JSON according to RFC 7159, including the opening and closing braces. For * example: '{"key": "value"}'. *

*

* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. * Users of the SDK should not perform Base64 encoding on this field. *

* * @param evaluationContext * A JSON object of attributes that you can optionally pass in as part of the evaluation event sent to * Evidently from the user session. Evidently can use this value to match user sessions with defined audience * segments. For more information, see Use segments to focus your audience.

*

* If you include this parameter, the value must be a JSON object. A JSON array is not supported. */ public void setEvaluationContext(String evaluationContext) { this.evaluationContext = evaluationContext; } /** *

* A JSON object of attributes that you can optionally pass in as part of the evaluation event sent to Evidently * from the user session. Evidently can use this value to match user sessions with defined audience segments. For * more information, see Use * segments to focus your audience. *

*

* If you include this parameter, the value must be a JSON object. A JSON array is not supported. *

*

* This field's value will be valid JSON according to RFC 7159, including the opening and closing braces. For * example: '{"key": "value"}'. *

* * @return A JSON object of attributes that you can optionally pass in as part of the evaluation event sent to * Evidently from the user session. Evidently can use this value to match user sessions with defined * audience segments. For more information, see Use * segments to focus your audience.

*

* If you include this parameter, the value must be a JSON object. A JSON array is not supported. */ public String getEvaluationContext() { return this.evaluationContext; } /** *

* A JSON object of attributes that you can optionally pass in as part of the evaluation event sent to Evidently * from the user session. Evidently can use this value to match user sessions with defined audience segments. For * more information, see Use * segments to focus your audience. *

*

* If you include this parameter, the value must be a JSON object. A JSON array is not supported. *

*

* This field's value must be valid JSON according to RFC 7159, including the opening and closing braces. For * example: '{"key": "value"}'. *

*

* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. * Users of the SDK should not perform Base64 encoding on this field. *

* * @param evaluationContext * A JSON object of attributes that you can optionally pass in as part of the evaluation event sent to * Evidently from the user session. Evidently can use this value to match user sessions with defined audience * segments. For more information, see Use segments to focus your audience.

*

* If you include this parameter, the value must be a JSON object. A JSON array is not supported. * @return Returns a reference to this object so that method calls can be chained together. */ public EvaluateFeatureRequest withEvaluationContext(String evaluationContext) { setEvaluationContext(evaluationContext); return this; } /** *

* The name of the feature being evaluated. *

* * @param feature * The name of the feature being evaluated. */ public void setFeature(String feature) { this.feature = feature; } /** *

* The name of the feature being evaluated. *

* * @return The name of the feature being evaluated. */ public String getFeature() { return this.feature; } /** *

* The name of the feature being evaluated. *

* * @param feature * The name of the feature being evaluated. * @return Returns a reference to this object so that method calls can be chained together. */ public EvaluateFeatureRequest withFeature(String feature) { setFeature(feature); return this; } /** *

* The name or ARN of the project that contains this feature. *

* * @param project * The name or ARN of the project that contains this feature. */ public void setProject(String project) { this.project = project; } /** *

* The name or ARN of the project that contains this feature. *

* * @return The name or ARN of the project that contains this feature. */ public String getProject() { return this.project; } /** *

* The name or ARN of the project that contains this feature. *

* * @param project * The name or ARN of the project that contains this feature. * @return Returns a reference to this object so that method calls can be chained together. */ public EvaluateFeatureRequest withProject(String project) { setProject(project); 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 (getEntityId() != null) sb.append("EntityId: ").append(getEntityId()).append(","); if (getEvaluationContext() != null) sb.append("EvaluationContext: ").append(getEvaluationContext()).append(","); if (getFeature() != null) sb.append("Feature: ").append(getFeature()).append(","); if (getProject() != null) sb.append("Project: ").append(getProject()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof EvaluateFeatureRequest == false) return false; EvaluateFeatureRequest other = (EvaluateFeatureRequest) obj; if (other.getEntityId() == null ^ this.getEntityId() == null) return false; if (other.getEntityId() != null && other.getEntityId().equals(this.getEntityId()) == false) return false; if (other.getEvaluationContext() == null ^ this.getEvaluationContext() == null) return false; if (other.getEvaluationContext() != null && other.getEvaluationContext().equals(this.getEvaluationContext()) == false) return false; if (other.getFeature() == null ^ this.getFeature() == null) return false; if (other.getFeature() != null && other.getFeature().equals(this.getFeature()) == false) return false; if (other.getProject() == null ^ this.getProject() == null) return false; if (other.getProject() != null && other.getProject().equals(this.getProject()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getEntityId() == null) ? 0 : getEntityId().hashCode()); hashCode = prime * hashCode + ((getEvaluationContext() == null) ? 0 : getEvaluationContext().hashCode()); hashCode = prime * hashCode + ((getFeature() == null) ? 0 : getFeature().hashCode()); hashCode = prime * hashCode + ((getProject() == null) ? 0 : getProject().hashCode()); return hashCode; } @Override public EvaluateFeatureRequest clone() { return (EvaluateFeatureRequest) super.clone(); } }