com.amazonaws.services.location.model.AssociateTrackerConsumerRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-location Show documentation
/*
* 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.location.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 AssociateTrackerConsumerRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The name of the tracker resource to be associated with a geofence collection.
*
*/
private String trackerName;
/**
*
* The Amazon Resource Name (ARN) for the geofence collection to be associated to tracker resource. Used when you
* need to specify a resource across all Amazon Web Services.
*
*
* -
*
* Format example: arn:aws:geo:region:account-id:geofence-collection/ExampleGeofenceCollectionConsumer
*
*
*
*/
private String consumerArn;
/**
*
* The name of the tracker resource to be associated with a geofence collection.
*
*
* @param trackerName
* The name of the tracker resource to be associated with a geofence collection.
*/
public void setTrackerName(String trackerName) {
this.trackerName = trackerName;
}
/**
*
* The name of the tracker resource to be associated with a geofence collection.
*
*
* @return The name of the tracker resource to be associated with a geofence collection.
*/
public String getTrackerName() {
return this.trackerName;
}
/**
*
* The name of the tracker resource to be associated with a geofence collection.
*
*
* @param trackerName
* The name of the tracker resource to be associated with a geofence collection.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AssociateTrackerConsumerRequest withTrackerName(String trackerName) {
setTrackerName(trackerName);
return this;
}
/**
*
* The Amazon Resource Name (ARN) for the geofence collection to be associated to tracker resource. Used when you
* need to specify a resource across all Amazon Web Services.
*
*
* -
*
* Format example: arn:aws:geo:region:account-id:geofence-collection/ExampleGeofenceCollectionConsumer
*
*
*
*
* @param consumerArn
* The Amazon Resource Name (ARN) for the geofence collection to be associated to tracker resource. Used when
* you need to specify a resource across all Amazon Web Services.
*
* -
*
* Format example:
* arn:aws:geo:region:account-id:geofence-collection/ExampleGeofenceCollectionConsumer
*
*
*/
public void setConsumerArn(String consumerArn) {
this.consumerArn = consumerArn;
}
/**
*
* The Amazon Resource Name (ARN) for the geofence collection to be associated to tracker resource. Used when you
* need to specify a resource across all Amazon Web Services.
*
*
* -
*
* Format example: arn:aws:geo:region:account-id:geofence-collection/ExampleGeofenceCollectionConsumer
*
*
*
*
* @return The Amazon Resource Name (ARN) for the geofence collection to be associated to tracker resource. Used
* when you need to specify a resource across all Amazon Web Services.
*
* -
*
* Format example:
* arn:aws:geo:region:account-id:geofence-collection/ExampleGeofenceCollectionConsumer
*
*
*/
public String getConsumerArn() {
return this.consumerArn;
}
/**
*
* The Amazon Resource Name (ARN) for the geofence collection to be associated to tracker resource. Used when you
* need to specify a resource across all Amazon Web Services.
*
*
* -
*
* Format example: arn:aws:geo:region:account-id:geofence-collection/ExampleGeofenceCollectionConsumer
*
*
*
*
* @param consumerArn
* The Amazon Resource Name (ARN) for the geofence collection to be associated to tracker resource. Used when
* you need to specify a resource across all Amazon Web Services.
*
* -
*
* Format example:
* arn:aws:geo:region:account-id:geofence-collection/ExampleGeofenceCollectionConsumer
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AssociateTrackerConsumerRequest withConsumerArn(String consumerArn) {
setConsumerArn(consumerArn);
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 (getTrackerName() != null)
sb.append("TrackerName: ").append(getTrackerName()).append(",");
if (getConsumerArn() != null)
sb.append("ConsumerArn: ").append(getConsumerArn());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof AssociateTrackerConsumerRequest == false)
return false;
AssociateTrackerConsumerRequest other = (AssociateTrackerConsumerRequest) obj;
if (other.getTrackerName() == null ^ this.getTrackerName() == null)
return false;
if (other.getTrackerName() != null && other.getTrackerName().equals(this.getTrackerName()) == false)
return false;
if (other.getConsumerArn() == null ^ this.getConsumerArn() == null)
return false;
if (other.getConsumerArn() != null && other.getConsumerArn().equals(this.getConsumerArn()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getTrackerName() == null) ? 0 : getTrackerName().hashCode());
hashCode = prime * hashCode + ((getConsumerArn() == null) ? 0 : getConsumerArn().hashCode());
return hashCode;
}
@Override
public AssociateTrackerConsumerRequest clone() {
return (AssociateTrackerConsumerRequest) super.clone();
}
}