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

software.amazon.awssdk.aws.greengrass.model.GetThingShadowRequest Maven / Gradle / Ivy

There is a newer version: 1.21.0
Show newest version
/**
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 *
 * This file is generated.
 */

package software.amazon.awssdk.aws.greengrass.model;

import com.google.gson.annotations.Expose;
import java.lang.Object;
import java.lang.Override;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import software.amazon.awssdk.eventstreamrpc.model.EventStreamJsonMessage;

public class GetThingShadowRequest implements EventStreamJsonMessage {
  public static final String APPLICATION_MODEL_TYPE = "aws.greengrass#GetThingShadowRequest";

  public static final GetThingShadowRequest VOID;

  static {
    VOID = new GetThingShadowRequest() {
      @Override
      public boolean isVoid() {
        return true;
      }
    };
  }

  @Expose(
      serialize = true,
      deserialize = true
  )
  private Optional thingName;

  @Expose(
      serialize = true,
      deserialize = true
  )
  private Optional shadowName;

  public GetThingShadowRequest() {
    this.thingName = Optional.empty();
    this.shadowName = Optional.empty();
  }

  /**
   * The name of the thing.
   */
  public String getThingName() {
    if (thingName.isPresent()) {
      return thingName.get();
    }
    return null;
  }

  /**
   * The name of the thing.
   */
  public void setThingName(final String thingName) {
    this.thingName = Optional.ofNullable(thingName);
  }

  /**
   * The name of the thing.
   */
  public GetThingShadowRequest withThingName(final String thingName) {
    setThingName(thingName);
    return this;
  }

  /**
   * The name of the shadow. To specify the thing's classic shadow, set this parameter to an empty string ("").
   */
  public String getShadowName() {
    if (shadowName.isPresent()) {
      return shadowName.get();
    }
    return null;
  }

  /**
   * The name of the shadow. To specify the thing's classic shadow, set this parameter to an empty string ("").
   */
  public void setShadowName(final String shadowName) {
    this.shadowName = Optional.ofNullable(shadowName);
  }

  /**
   * The name of the shadow. To specify the thing's classic shadow, set this parameter to an empty string ("").
   */
  public GetThingShadowRequest withShadowName(final String shadowName) {
    setShadowName(shadowName);
    return this;
  }

  @Override
  public String getApplicationModelType() {
    return APPLICATION_MODEL_TYPE;
  }

  @Override
  public boolean equals(Object rhs) {
    if (rhs == null) return false;
    if (!(rhs instanceof GetThingShadowRequest)) return false;
    if (this == rhs) return true;
    final GetThingShadowRequest other = (GetThingShadowRequest)rhs;
    boolean isEquals = true;
    isEquals = isEquals && this.thingName.equals(other.thingName);
    isEquals = isEquals && this.shadowName.equals(other.shadowName);
    return isEquals;
  }

  @Override
  public int hashCode() {
    return Objects.hash(thingName, shadowName);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy