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

com.amazonaws.services.iotevents.model.CreateDetectorModelRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS IoT Events module holds the client classes that are used for communicating with AWS IoT Events 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.iotevents.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 CreateDetectorModelRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The name of the detector model. *

*/ private String detectorModelName; /** *

* Information that defines how the detectors operate. *

*/ private DetectorModelDefinition detectorModelDefinition; /** *

* A brief description of the detector model. *

*/ private String detectorModelDescription; /** *

* The input attribute key used to identify a device or system to create a detector (an instance of the detector * model) and then to route each input received to the appropriate detector (instance). This parameter uses a * JSON-path expression in the message payload of each input to specify the attribute-value pair that is used to * identify the device associated with the input. *

*/ private String key; /** *

* The ARN of the role that grants permission to AWS IoT Events to perform its operations. *

*/ private String roleArn; /** *

* Metadata that can be used to manage the detector model. *

*/ private java.util.List tags; /** *

* Information about the order in which events are evaluated and how actions are executed. *

*/ private String evaluationMethod; /** *

* The name of the detector model. *

* * @param detectorModelName * The name of the detector model. */ public void setDetectorModelName(String detectorModelName) { this.detectorModelName = detectorModelName; } /** *

* The name of the detector model. *

* * @return The name of the detector model. */ public String getDetectorModelName() { return this.detectorModelName; } /** *

* The name of the detector model. *

* * @param detectorModelName * The name of the detector model. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDetectorModelRequest withDetectorModelName(String detectorModelName) { setDetectorModelName(detectorModelName); return this; } /** *

* Information that defines how the detectors operate. *

* * @param detectorModelDefinition * Information that defines how the detectors operate. */ public void setDetectorModelDefinition(DetectorModelDefinition detectorModelDefinition) { this.detectorModelDefinition = detectorModelDefinition; } /** *

* Information that defines how the detectors operate. *

* * @return Information that defines how the detectors operate. */ public DetectorModelDefinition getDetectorModelDefinition() { return this.detectorModelDefinition; } /** *

* Information that defines how the detectors operate. *

* * @param detectorModelDefinition * Information that defines how the detectors operate. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDetectorModelRequest withDetectorModelDefinition(DetectorModelDefinition detectorModelDefinition) { setDetectorModelDefinition(detectorModelDefinition); return this; } /** *

* A brief description of the detector model. *

* * @param detectorModelDescription * A brief description of the detector model. */ public void setDetectorModelDescription(String detectorModelDescription) { this.detectorModelDescription = detectorModelDescription; } /** *

* A brief description of the detector model. *

* * @return A brief description of the detector model. */ public String getDetectorModelDescription() { return this.detectorModelDescription; } /** *

* A brief description of the detector model. *

* * @param detectorModelDescription * A brief description of the detector model. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDetectorModelRequest withDetectorModelDescription(String detectorModelDescription) { setDetectorModelDescription(detectorModelDescription); return this; } /** *

* The input attribute key used to identify a device or system to create a detector (an instance of the detector * model) and then to route each input received to the appropriate detector (instance). This parameter uses a * JSON-path expression in the message payload of each input to specify the attribute-value pair that is used to * identify the device associated with the input. *

* * @param key * The input attribute key used to identify a device or system to create a detector (an instance of the * detector model) and then to route each input received to the appropriate detector (instance). This * parameter uses a JSON-path expression in the message payload of each input to specify the attribute-value * pair that is used to identify the device associated with the input. */ public void setKey(String key) { this.key = key; } /** *

* The input attribute key used to identify a device or system to create a detector (an instance of the detector * model) and then to route each input received to the appropriate detector (instance). This parameter uses a * JSON-path expression in the message payload of each input to specify the attribute-value pair that is used to * identify the device associated with the input. *

* * @return The input attribute key used to identify a device or system to create a detector (an instance of the * detector model) and then to route each input received to the appropriate detector (instance). This * parameter uses a JSON-path expression in the message payload of each input to specify the attribute-value * pair that is used to identify the device associated with the input. */ public String getKey() { return this.key; } /** *

* The input attribute key used to identify a device or system to create a detector (an instance of the detector * model) and then to route each input received to the appropriate detector (instance). This parameter uses a * JSON-path expression in the message payload of each input to specify the attribute-value pair that is used to * identify the device associated with the input. *

* * @param key * The input attribute key used to identify a device or system to create a detector (an instance of the * detector model) and then to route each input received to the appropriate detector (instance). This * parameter uses a JSON-path expression in the message payload of each input to specify the attribute-value * pair that is used to identify the device associated with the input. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDetectorModelRequest withKey(String key) { setKey(key); return this; } /** *

* The ARN of the role that grants permission to AWS IoT Events to perform its operations. *

* * @param roleArn * The ARN of the role that grants permission to AWS IoT Events to perform its operations. */ public void setRoleArn(String roleArn) { this.roleArn = roleArn; } /** *

* The ARN of the role that grants permission to AWS IoT Events to perform its operations. *

* * @return The ARN of the role that grants permission to AWS IoT Events to perform its operations. */ public String getRoleArn() { return this.roleArn; } /** *

* The ARN of the role that grants permission to AWS IoT Events to perform its operations. *

* * @param roleArn * The ARN of the role that grants permission to AWS IoT Events to perform its operations. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDetectorModelRequest withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** *

* Metadata that can be used to manage the detector model. *

* * @return Metadata that can be used to manage the detector model. */ public java.util.List getTags() { return tags; } /** *

* Metadata that can be used to manage the detector model. *

* * @param tags * Metadata that can be used to manage the detector model. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* Metadata that can be used to manage the detector model. *

*

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

* * @param tags * Metadata that can be used to manage the detector model. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDetectorModelRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* Metadata that can be used to manage the detector model. *

* * @param tags * Metadata that can be used to manage the detector model. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDetectorModelRequest withTags(java.util.Collection tags) { setTags(tags); return this; } /** *

* Information about the order in which events are evaluated and how actions are executed. *

* * @param evaluationMethod * Information about the order in which events are evaluated and how actions are executed. * @see EvaluationMethod */ public void setEvaluationMethod(String evaluationMethod) { this.evaluationMethod = evaluationMethod; } /** *

* Information about the order in which events are evaluated and how actions are executed. *

* * @return Information about the order in which events are evaluated and how actions are executed. * @see EvaluationMethod */ public String getEvaluationMethod() { return this.evaluationMethod; } /** *

* Information about the order in which events are evaluated and how actions are executed. *

* * @param evaluationMethod * Information about the order in which events are evaluated and how actions are executed. * @return Returns a reference to this object so that method calls can be chained together. * @see EvaluationMethod */ public CreateDetectorModelRequest withEvaluationMethod(String evaluationMethod) { setEvaluationMethod(evaluationMethod); return this; } /** *

* Information about the order in which events are evaluated and how actions are executed. *

* * @param evaluationMethod * Information about the order in which events are evaluated and how actions are executed. * @return Returns a reference to this object so that method calls can be chained together. * @see EvaluationMethod */ public CreateDetectorModelRequest withEvaluationMethod(EvaluationMethod evaluationMethod) { this.evaluationMethod = evaluationMethod.toString(); 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 (getDetectorModelName() != null) sb.append("DetectorModelName: ").append(getDetectorModelName()).append(","); if (getDetectorModelDefinition() != null) sb.append("DetectorModelDefinition: ").append(getDetectorModelDefinition()).append(","); if (getDetectorModelDescription() != null) sb.append("DetectorModelDescription: ").append(getDetectorModelDescription()).append(","); if (getKey() != null) sb.append("Key: ").append(getKey()).append(","); if (getRoleArn() != null) sb.append("RoleArn: ").append(getRoleArn()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getEvaluationMethod() != null) sb.append("EvaluationMethod: ").append(getEvaluationMethod()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateDetectorModelRequest == false) return false; CreateDetectorModelRequest other = (CreateDetectorModelRequest) obj; if (other.getDetectorModelName() == null ^ this.getDetectorModelName() == null) return false; if (other.getDetectorModelName() != null && other.getDetectorModelName().equals(this.getDetectorModelName()) == false) return false; if (other.getDetectorModelDefinition() == null ^ this.getDetectorModelDefinition() == null) return false; if (other.getDetectorModelDefinition() != null && other.getDetectorModelDefinition().equals(this.getDetectorModelDefinition()) == false) return false; if (other.getDetectorModelDescription() == null ^ this.getDetectorModelDescription() == null) return false; if (other.getDetectorModelDescription() != null && other.getDetectorModelDescription().equals(this.getDetectorModelDescription()) == false) return false; if (other.getKey() == null ^ this.getKey() == null) return false; if (other.getKey() != null && other.getKey().equals(this.getKey()) == false) return false; if (other.getRoleArn() == null ^ this.getRoleArn() == null) return false; if (other.getRoleArn() != null && other.getRoleArn().equals(this.getRoleArn()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getEvaluationMethod() == null ^ this.getEvaluationMethod() == null) return false; if (other.getEvaluationMethod() != null && other.getEvaluationMethod().equals(this.getEvaluationMethod()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDetectorModelName() == null) ? 0 : getDetectorModelName().hashCode()); hashCode = prime * hashCode + ((getDetectorModelDefinition() == null) ? 0 : getDetectorModelDefinition().hashCode()); hashCode = prime * hashCode + ((getDetectorModelDescription() == null) ? 0 : getDetectorModelDescription().hashCode()); hashCode = prime * hashCode + ((getKey() == null) ? 0 : getKey().hashCode()); hashCode = prime * hashCode + ((getRoleArn() == null) ? 0 : getRoleArn().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getEvaluationMethod() == null) ? 0 : getEvaluationMethod().hashCode()); return hashCode; } @Override public CreateDetectorModelRequest clone() { return (CreateDetectorModelRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy