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

software.amazon.awssdk.services.iotanalytics.model.ChannelSummary Maven / Gradle / Ivy

/*
 * Copyright 2014-2019 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.iotanalytics.model;

import java.io.Serializable;
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;

/**
 * 

* A summary of information about a channel. *

*/ @Generated("software.amazon.awssdk:codegen") public final class ChannelSummary implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField CHANNEL_NAME_FIELD = SdkField. builder(MarshallingType.STRING) .getter(getter(ChannelSummary::channelName)).setter(setter(Builder::channelName)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("channelName").build()).build(); private static final SdkField STATUS_FIELD = SdkField. builder(MarshallingType.STRING) .getter(getter(ChannelSummary::statusAsString)).setter(setter(Builder::status)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("status").build()).build(); private static final SdkField CREATION_TIME_FIELD = SdkField. builder(MarshallingType.INSTANT) .getter(getter(ChannelSummary::creationTime)).setter(setter(Builder::creationTime)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("creationTime").build()).build(); private static final SdkField LAST_UPDATE_TIME_FIELD = SdkField. builder(MarshallingType.INSTANT) .getter(getter(ChannelSummary::lastUpdateTime)).setter(setter(Builder::lastUpdateTime)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("lastUpdateTime").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(CHANNEL_NAME_FIELD, STATUS_FIELD, CREATION_TIME_FIELD, LAST_UPDATE_TIME_FIELD)); private static final long serialVersionUID = 1L; private final String channelName; private final String status; private final Instant creationTime; private final Instant lastUpdateTime; private ChannelSummary(BuilderImpl builder) { this.channelName = builder.channelName; this.status = builder.status; this.creationTime = builder.creationTime; this.lastUpdateTime = builder.lastUpdateTime; } /** *

* The name of the channel. *

* * @return The name of the channel. */ public String channelName() { return channelName; } /** *

* The status of the channel. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #status} will * return {@link ChannelStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #statusAsString}. *

* * @return The status of the channel. * @see ChannelStatus */ public ChannelStatus status() { return ChannelStatus.fromValue(status); } /** *

* The status of the channel. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #status} will * return {@link ChannelStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #statusAsString}. *

* * @return The status of the channel. * @see ChannelStatus */ public String statusAsString() { return status; } /** *

* When the channel was created. *

* * @return When the channel was created. */ public Instant creationTime() { return creationTime; } /** *

* The last time the channel was updated. *

* * @return The last time the channel was updated. */ public Instant lastUpdateTime() { return lastUpdateTime; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(channelName()); hashCode = 31 * hashCode + Objects.hashCode(statusAsString()); hashCode = 31 * hashCode + Objects.hashCode(creationTime()); hashCode = 31 * hashCode + Objects.hashCode(lastUpdateTime()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof ChannelSummary)) { return false; } ChannelSummary other = (ChannelSummary) obj; return Objects.equals(channelName(), other.channelName()) && Objects.equals(statusAsString(), other.statusAsString()) && Objects.equals(creationTime(), other.creationTime()) && Objects.equals(lastUpdateTime(), other.lastUpdateTime()); } /** * 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 String toString() { return ToString.builder("ChannelSummary").add("ChannelName", channelName()).add("Status", statusAsString()) .add("CreationTime", creationTime()).add("LastUpdateTime", lastUpdateTime()).build(); } public Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "channelName": return Optional.ofNullable(clazz.cast(channelName())); case "status": return Optional.ofNullable(clazz.cast(statusAsString())); case "creationTime": return Optional.ofNullable(clazz.cast(creationTime())); case "lastUpdateTime": return Optional.ofNullable(clazz.cast(lastUpdateTime())); default: return Optional.empty(); } } @Override public List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((ChannelSummary) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The name of the channel. *

* * @param channelName * The name of the channel. * @return Returns a reference to this object so that method calls can be chained together. */ Builder channelName(String channelName); /** *

* The status of the channel. *

* * @param status * The status of the channel. * @see ChannelStatus * @return Returns a reference to this object so that method calls can be chained together. * @see ChannelStatus */ Builder status(String status); /** *

* The status of the channel. *

* * @param status * The status of the channel. * @see ChannelStatus * @return Returns a reference to this object so that method calls can be chained together. * @see ChannelStatus */ Builder status(ChannelStatus status); /** *

* When the channel was created. *

* * @param creationTime * When the channel was created. * @return Returns a reference to this object so that method calls can be chained together. */ Builder creationTime(Instant creationTime); /** *

* The last time the channel was updated. *

* * @param lastUpdateTime * The last time the channel was updated. * @return Returns a reference to this object so that method calls can be chained together. */ Builder lastUpdateTime(Instant lastUpdateTime); } static final class BuilderImpl implements Builder { private String channelName; private String status; private Instant creationTime; private Instant lastUpdateTime; private BuilderImpl() { } private BuilderImpl(ChannelSummary model) { channelName(model.channelName); status(model.status); creationTime(model.creationTime); lastUpdateTime(model.lastUpdateTime); } public final String getChannelName() { return channelName; } @Override public final Builder channelName(String channelName) { this.channelName = channelName; return this; } public final void setChannelName(String channelName) { this.channelName = channelName; } public final String getStatusAsString() { return status; } @Override public final Builder status(String status) { this.status = status; return this; } @Override public final Builder status(ChannelStatus status) { this.status(status.toString()); return this; } public final void setStatus(String status) { this.status = status; } public final Instant getCreationTime() { return creationTime; } @Override public final Builder creationTime(Instant creationTime) { this.creationTime = creationTime; return this; } public final void setCreationTime(Instant creationTime) { this.creationTime = creationTime; } public final Instant getLastUpdateTime() { return lastUpdateTime; } @Override public final Builder lastUpdateTime(Instant lastUpdateTime) { this.lastUpdateTime = lastUpdateTime; return this; } public final void setLastUpdateTime(Instant lastUpdateTime) { this.lastUpdateTime = lastUpdateTime; } @Override public ChannelSummary build() { return new ChannelSummary(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy