software.amazon.awssdk.services.iotdeviceadvisor.model.CreateSuiteDefinitionResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotdeviceadvisor Show documentation
Show all versions of iotdeviceadvisor Show documentation
The AWS Java SDK for Iot Device Advisor module holds the client classes that are used for
communicating with Iot Device Advisor.
/*
* Copyright 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 software.amazon.awssdk.services.iotdeviceadvisor.model;
import java.time.Instant;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*/
@Generated("software.amazon.awssdk:codegen")
public final class CreateSuiteDefinitionResponse extends IotDeviceAdvisorResponse implements
ToCopyableBuilder {
private static final SdkField SUITE_DEFINITION_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("suiteDefinitionId").getter(getter(CreateSuiteDefinitionResponse::suiteDefinitionId))
.setter(setter(Builder::suiteDefinitionId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("suiteDefinitionId").build()).build();
private static final SdkField SUITE_DEFINITION_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("suiteDefinitionArn").getter(getter(CreateSuiteDefinitionResponse::suiteDefinitionArn))
.setter(setter(Builder::suiteDefinitionArn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("suiteDefinitionArn").build())
.build();
private static final SdkField SUITE_DEFINITION_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("suiteDefinitionName").getter(getter(CreateSuiteDefinitionResponse::suiteDefinitionName))
.setter(setter(Builder::suiteDefinitionName))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("suiteDefinitionName").build())
.build();
private static final SdkField CREATED_AT_FIELD = SdkField. builder(MarshallingType.INSTANT)
.memberName("createdAt").getter(getter(CreateSuiteDefinitionResponse::createdAt)).setter(setter(Builder::createdAt))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("createdAt").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(SUITE_DEFINITION_ID_FIELD,
SUITE_DEFINITION_ARN_FIELD, SUITE_DEFINITION_NAME_FIELD, CREATED_AT_FIELD));
private final String suiteDefinitionId;
private final String suiteDefinitionArn;
private final String suiteDefinitionName;
private final Instant createdAt;
private CreateSuiteDefinitionResponse(BuilderImpl builder) {
super(builder);
this.suiteDefinitionId = builder.suiteDefinitionId;
this.suiteDefinitionArn = builder.suiteDefinitionArn;
this.suiteDefinitionName = builder.suiteDefinitionName;
this.createdAt = builder.createdAt;
}
/**
*
* The UUID of the test suite created.
*
*
* @return The UUID of the test suite created.
*/
public final String suiteDefinitionId() {
return suiteDefinitionId;
}
/**
*
* The Amazon Resource Name (ARN) of the test suite.
*
*
* @return The Amazon Resource Name (ARN) of the test suite.
*/
public final String suiteDefinitionArn() {
return suiteDefinitionArn;
}
/**
*
* The suite definition name of the test suite. This is a required parameter.
*
*
* @return The suite definition name of the test suite. This is a required parameter.
*/
public final String suiteDefinitionName() {
return suiteDefinitionName;
}
/**
*
* The timestamp of when the test suite was created.
*
*
* @return The timestamp of when the test suite was created.
*/
public final Instant createdAt() {
return createdAt;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public final int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + super.hashCode();
hashCode = 31 * hashCode + Objects.hashCode(suiteDefinitionId());
hashCode = 31 * hashCode + Objects.hashCode(suiteDefinitionArn());
hashCode = 31 * hashCode + Objects.hashCode(suiteDefinitionName());
hashCode = 31 * hashCode + Objects.hashCode(createdAt());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return super.equals(obj) && equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof CreateSuiteDefinitionResponse)) {
return false;
}
CreateSuiteDefinitionResponse other = (CreateSuiteDefinitionResponse) obj;
return Objects.equals(suiteDefinitionId(), other.suiteDefinitionId())
&& Objects.equals(suiteDefinitionArn(), other.suiteDefinitionArn())
&& Objects.equals(suiteDefinitionName(), other.suiteDefinitionName())
&& Objects.equals(createdAt(), other.createdAt());
}
/**
* 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.
*/
@Override
public final String toString() {
return ToString.builder("CreateSuiteDefinitionResponse").add("SuiteDefinitionId", suiteDefinitionId())
.add("SuiteDefinitionArn", suiteDefinitionArn()).add("SuiteDefinitionName", suiteDefinitionName())
.add("CreatedAt", createdAt()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "suiteDefinitionId":
return Optional.ofNullable(clazz.cast(suiteDefinitionId()));
case "suiteDefinitionArn":
return Optional.ofNullable(clazz.cast(suiteDefinitionArn()));
case "suiteDefinitionName":
return Optional.ofNullable(clazz.cast(suiteDefinitionName()));
case "createdAt":
return Optional.ofNullable(clazz.cast(createdAt()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy