software.amazon.awssdk.aws.greengrass.model.GetComponentDetailsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-iot-device-sdk Show documentation
Show all versions of aws-iot-device-sdk Show documentation
Java bindings for the AWS IoT Core Service
/**
* 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 GetComponentDetailsRequest implements EventStreamJsonMessage {
public static final String APPLICATION_MODEL_TYPE = "aws.greengrass#GetComponentDetailsRequest";
public static final GetComponentDetailsRequest VOID;
static {
VOID = new GetComponentDetailsRequest() {
@Override
public boolean isVoid() {
return true;
}
};
}
@Expose(
serialize = true,
deserialize = true
)
private Optional componentName;
public GetComponentDetailsRequest() {
this.componentName = Optional.empty();
}
/**
* The name of the component to get.
*/
public String getComponentName() {
if (componentName.isPresent()) {
return componentName.get();
}
return null;
}
/**
* The name of the component to get.
*/
public void setComponentName(final String componentName) {
this.componentName = Optional.ofNullable(componentName);
}
/**
* The name of the component to get.
*/
public GetComponentDetailsRequest withComponentName(final String componentName) {
setComponentName(componentName);
return this;
}
@Override
public String getApplicationModelType() {
return APPLICATION_MODEL_TYPE;
}
@Override
public boolean equals(Object rhs) {
if (rhs == null) return false;
if (!(rhs instanceof GetComponentDetailsRequest)) return false;
if (this == rhs) return true;
final GetComponentDetailsRequest other = (GetComponentDetailsRequest)rhs;
boolean isEquals = true;
isEquals = isEquals && this.componentName.equals(other.componentName);
return isEquals;
}
@Override
public int hashCode() {
return Objects.hash(componentName);
}
}