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

software.amazon.awssdk.services.iot.model.PolicyVersion Maven / Gradle / Ivy

/*
 * 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.iot.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;

/**
 * 

* Describes a policy version. *

*/ @Generated("software.amazon.awssdk:codegen") public final class PolicyVersion implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField VERSION_ID_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("versionId").getter(getter(PolicyVersion::versionId)).setter(setter(Builder::versionId)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("versionId").build()).build(); private static final SdkField IS_DEFAULT_VERSION_FIELD = SdkField. builder(MarshallingType.BOOLEAN) .memberName("isDefaultVersion").getter(getter(PolicyVersion::isDefaultVersion)) .setter(setter(Builder::isDefaultVersion)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("isDefaultVersion").build()).build(); private static final SdkField CREATE_DATE_FIELD = SdkField. builder(MarshallingType.INSTANT) .memberName("createDate").getter(getter(PolicyVersion::createDate)).setter(setter(Builder::createDate)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("createDate").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(VERSION_ID_FIELD, IS_DEFAULT_VERSION_FIELD, CREATE_DATE_FIELD)); private static final long serialVersionUID = 1L; private final String versionId; private final Boolean isDefaultVersion; private final Instant createDate; private PolicyVersion(BuilderImpl builder) { this.versionId = builder.versionId; this.isDefaultVersion = builder.isDefaultVersion; this.createDate = builder.createDate; } /** *

* The policy version ID. *

* * @return The policy version ID. */ public final String versionId() { return versionId; } /** *

* Specifies whether the policy version is the default. *

* * @return Specifies whether the policy version is the default. */ public final Boolean isDefaultVersion() { return isDefaultVersion; } /** *

* The date and time the policy was created. *

* * @return The date and time the policy was created. */ public final Instant createDate() { return createDate; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(versionId()); hashCode = 31 * hashCode + Objects.hashCode(isDefaultVersion()); hashCode = 31 * hashCode + Objects.hashCode(createDate()); return hashCode; } @Override public final boolean equals(Object obj) { return equalsBySdkFields(obj); } @Override public final boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof PolicyVersion)) { return false; } PolicyVersion other = (PolicyVersion) obj; return Objects.equals(versionId(), other.versionId()) && Objects.equals(isDefaultVersion(), other.isDefaultVersion()) && Objects.equals(createDate(), other.createDate()); } /** * 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("PolicyVersion").add("VersionId", versionId()).add("IsDefaultVersion", isDefaultVersion()) .add("CreateDate", createDate()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "versionId": return Optional.ofNullable(clazz.cast(versionId())); case "isDefaultVersion": return Optional.ofNullable(clazz.cast(isDefaultVersion())); case "createDate": return Optional.ofNullable(clazz.cast(createDate())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((PolicyVersion) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The policy version ID. *

* * @param versionId * The policy version ID. * @return Returns a reference to this object so that method calls can be chained together. */ Builder versionId(String versionId); /** *

* Specifies whether the policy version is the default. *

* * @param isDefaultVersion * Specifies whether the policy version is the default. * @return Returns a reference to this object so that method calls can be chained together. */ Builder isDefaultVersion(Boolean isDefaultVersion); /** *

* The date and time the policy was created. *

* * @param createDate * The date and time the policy was created. * @return Returns a reference to this object so that method calls can be chained together. */ Builder createDate(Instant createDate); } static final class BuilderImpl implements Builder { private String versionId; private Boolean isDefaultVersion; private Instant createDate; private BuilderImpl() { } private BuilderImpl(PolicyVersion model) { versionId(model.versionId); isDefaultVersion(model.isDefaultVersion); createDate(model.createDate); } public final String getVersionId() { return versionId; } public final void setVersionId(String versionId) { this.versionId = versionId; } @Override public final Builder versionId(String versionId) { this.versionId = versionId; return this; } public final Boolean getIsDefaultVersion() { return isDefaultVersion; } public final void setIsDefaultVersion(Boolean isDefaultVersion) { this.isDefaultVersion = isDefaultVersion; } @Override public final Builder isDefaultVersion(Boolean isDefaultVersion) { this.isDefaultVersion = isDefaultVersion; return this; } public final Instant getCreateDate() { return createDate; } public final void setCreateDate(Instant createDate) { this.createDate = createDate; } @Override public final Builder createDate(Instant createDate) { this.createDate = createDate; return this; } @Override public PolicyVersion build() { return new PolicyVersion(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy