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

software.amazon.awssdk.services.verifiedpermissions.model.UpdatePolicyStoreResponse Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Verified Permissions module holds the client classes that are used for communicating with Verified Permissions.

There is a newer version: 2.29.39
Show newest version
/*
 * 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.verifiedpermissions.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.core.traits.TimestampFormatTrait;
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 UpdatePolicyStoreResponse extends VerifiedPermissionsResponse implements
        ToCopyableBuilder {
    private static final SdkField POLICY_STORE_ID_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("policyStoreId").getter(getter(UpdatePolicyStoreResponse::policyStoreId))
            .setter(setter(Builder::policyStoreId))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("policyStoreId").build()).build();

    private static final SdkField ARN_FIELD = SdkField. builder(MarshallingType.STRING).memberName("arn")
            .getter(getter(UpdatePolicyStoreResponse::arn)).setter(setter(Builder::arn))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("arn").build()).build();

    private static final SdkField CREATED_DATE_FIELD = SdkField
            . builder(MarshallingType.INSTANT)
            .memberName("createdDate")
            .getter(getter(UpdatePolicyStoreResponse::createdDate))
            .setter(setter(Builder::createdDate))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("createdDate").build(),
                    TimestampFormatTrait.create(TimestampFormatTrait.Format.ISO_8601)).build();

    private static final SdkField LAST_UPDATED_DATE_FIELD = SdkField
            . builder(MarshallingType.INSTANT)
            .memberName("lastUpdatedDate")
            .getter(getter(UpdatePolicyStoreResponse::lastUpdatedDate))
            .setter(setter(Builder::lastUpdatedDate))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("lastUpdatedDate").build(),
                    TimestampFormatTrait.create(TimestampFormatTrait.Format.ISO_8601)).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(POLICY_STORE_ID_FIELD,
            ARN_FIELD, CREATED_DATE_FIELD, LAST_UPDATED_DATE_FIELD));

    private final String policyStoreId;

    private final String arn;

    private final Instant createdDate;

    private final Instant lastUpdatedDate;

    private UpdatePolicyStoreResponse(BuilderImpl builder) {
        super(builder);
        this.policyStoreId = builder.policyStoreId;
        this.arn = builder.arn;
        this.createdDate = builder.createdDate;
        this.lastUpdatedDate = builder.lastUpdatedDate;
    }

    /**
     * 

* The ID of the updated policy store. *

* * @return The ID of the updated policy store. */ public final String policyStoreId() { return policyStoreId; } /** *

* The Amazon Resource Name * (ARN) of the updated policy store. *

* * @return The Amazon Resource * Name (ARN) of the updated policy store. */ public final String arn() { return arn; } /** *

* The date and time that the policy store was originally created. *

* * @return The date and time that the policy store was originally created. */ public final Instant createdDate() { return createdDate; } /** *

* The date and time that the policy store was most recently updated. *

* * @return The date and time that the policy store was most recently updated. */ public final Instant lastUpdatedDate() { return lastUpdatedDate; } @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 + super.hashCode(); hashCode = 31 * hashCode + Objects.hashCode(policyStoreId()); hashCode = 31 * hashCode + Objects.hashCode(arn()); hashCode = 31 * hashCode + Objects.hashCode(createdDate()); hashCode = 31 * hashCode + Objects.hashCode(lastUpdatedDate()); 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 UpdatePolicyStoreResponse)) { return false; } UpdatePolicyStoreResponse other = (UpdatePolicyStoreResponse) obj; return Objects.equals(policyStoreId(), other.policyStoreId()) && Objects.equals(arn(), other.arn()) && Objects.equals(createdDate(), other.createdDate()) && Objects.equals(lastUpdatedDate(), other.lastUpdatedDate()); } /** * 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("UpdatePolicyStoreResponse").add("PolicyStoreId", policyStoreId()).add("Arn", arn()) .add("CreatedDate", createdDate()).add("LastUpdatedDate", lastUpdatedDate()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "policyStoreId": return Optional.ofNullable(clazz.cast(policyStoreId())); case "arn": return Optional.ofNullable(clazz.cast(arn())); case "createdDate": return Optional.ofNullable(clazz.cast(createdDate())); case "lastUpdatedDate": return Optional.ofNullable(clazz.cast(lastUpdatedDate())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((UpdatePolicyStoreResponse) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends VerifiedPermissionsResponse.Builder, SdkPojo, CopyableBuilder { /** *

* The ID of the updated policy store. *

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

* The Amazon Resource Name * (ARN) of the updated policy store. *

* * @param arn * The Amazon * Resource Name (ARN) of the updated policy store. * @return Returns a reference to this object so that method calls can be chained together. */ Builder arn(String arn); /** *

* The date and time that the policy store was originally created. *

* * @param createdDate * The date and time that the policy store was originally created. * @return Returns a reference to this object so that method calls can be chained together. */ Builder createdDate(Instant createdDate); /** *

* The date and time that the policy store was most recently updated. *

* * @param lastUpdatedDate * The date and time that the policy store was most recently updated. * @return Returns a reference to this object so that method calls can be chained together. */ Builder lastUpdatedDate(Instant lastUpdatedDate); } static final class BuilderImpl extends VerifiedPermissionsResponse.BuilderImpl implements Builder { private String policyStoreId; private String arn; private Instant createdDate; private Instant lastUpdatedDate; private BuilderImpl() { } private BuilderImpl(UpdatePolicyStoreResponse model) { super(model); policyStoreId(model.policyStoreId); arn(model.arn); createdDate(model.createdDate); lastUpdatedDate(model.lastUpdatedDate); } public final String getPolicyStoreId() { return policyStoreId; } public final void setPolicyStoreId(String policyStoreId) { this.policyStoreId = policyStoreId; } @Override public final Builder policyStoreId(String policyStoreId) { this.policyStoreId = policyStoreId; return this; } public final String getArn() { return arn; } public final void setArn(String arn) { this.arn = arn; } @Override public final Builder arn(String arn) { this.arn = arn; return this; } public final Instant getCreatedDate() { return createdDate; } public final void setCreatedDate(Instant createdDate) { this.createdDate = createdDate; } @Override public final Builder createdDate(Instant createdDate) { this.createdDate = createdDate; return this; } public final Instant getLastUpdatedDate() { return lastUpdatedDate; } public final void setLastUpdatedDate(Instant lastUpdatedDate) { this.lastUpdatedDate = lastUpdatedDate; } @Override public final Builder lastUpdatedDate(Instant lastUpdatedDate) { this.lastUpdatedDate = lastUpdatedDate; return this; } @Override public UpdatePolicyStoreResponse build() { return new UpdatePolicyStoreResponse(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy