software.amazon.awssdk.services.verifiedpermissions.model.GetPolicyTemplateResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of verifiedpermissions Show documentation
Show all versions of verifiedpermissions Show documentation
The AWS Java SDK for Verified Permissions module holds the client classes that are used for
communicating with Verified Permissions.
/*
* 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.HashMap;
import java.util.List;
import java.util.Map;
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 GetPolicyTemplateResponse extends VerifiedPermissionsResponse implements
ToCopyableBuilder {
private static final SdkField POLICY_STORE_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("policyStoreId").getter(getter(GetPolicyTemplateResponse::policyStoreId))
.setter(setter(Builder::policyStoreId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("policyStoreId").build()).build();
private static final SdkField POLICY_TEMPLATE_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("policyTemplateId").getter(getter(GetPolicyTemplateResponse::policyTemplateId))
.setter(setter(Builder::policyTemplateId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("policyTemplateId").build()).build();
private static final SdkField DESCRIPTION_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("description").getter(getter(GetPolicyTemplateResponse::description))
.setter(setter(Builder::description))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("description").build()).build();
private static final SdkField STATEMENT_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("statement").getter(getter(GetPolicyTemplateResponse::statement)).setter(setter(Builder::statement))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("statement").build()).build();
private static final SdkField CREATED_DATE_FIELD = SdkField
. builder(MarshallingType.INSTANT)
.memberName("createdDate")
.getter(getter(GetPolicyTemplateResponse::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(GetPolicyTemplateResponse::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,
POLICY_TEMPLATE_ID_FIELD, DESCRIPTION_FIELD, STATEMENT_FIELD, CREATED_DATE_FIELD, LAST_UPDATED_DATE_FIELD));
private static final Map> SDK_NAME_TO_FIELD = memberNameToFieldInitializer();
private final String policyStoreId;
private final String policyTemplateId;
private final String description;
private final String statement;
private final Instant createdDate;
private final Instant lastUpdatedDate;
private GetPolicyTemplateResponse(BuilderImpl builder) {
super(builder);
this.policyStoreId = builder.policyStoreId;
this.policyTemplateId = builder.policyTemplateId;
this.description = builder.description;
this.statement = builder.statement;
this.createdDate = builder.createdDate;
this.lastUpdatedDate = builder.lastUpdatedDate;
}
/**
*
* The ID of the policy store that contains the policy template.
*
*
* @return The ID of the policy store that contains the policy template.
*/
public final String policyStoreId() {
return policyStoreId;
}
/**
*
* The ID of the policy template.
*
*
* @return The ID of the policy template.
*/
public final String policyTemplateId() {
return policyTemplateId;
}
/**
*
* The description of the policy template.
*
*
* @return The description of the policy template.
*/
public final String description() {
return description;
}
/**
*
* The content of the body of the policy template written in the Cedar policy language.
*
*
* @return The content of the body of the policy template written in the Cedar policy language.
*/
public final String statement() {
return statement;
}
/**
*
* The date and time that the policy template was originally created.
*
*
* @return The date and time that the policy template was originally created.
*/
public final Instant createdDate() {
return createdDate;
}
/**
*
* The date and time that the policy template was most recently updated.
*
*
* @return The date and time that the policy template 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 extends Builder> 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(policyTemplateId());
hashCode = 31 * hashCode + Objects.hashCode(description());
hashCode = 31 * hashCode + Objects.hashCode(statement());
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 GetPolicyTemplateResponse)) {
return false;
}
GetPolicyTemplateResponse other = (GetPolicyTemplateResponse) obj;
return Objects.equals(policyStoreId(), other.policyStoreId())
&& Objects.equals(policyTemplateId(), other.policyTemplateId())
&& Objects.equals(description(), other.description()) && Objects.equals(statement(), other.statement())
&& 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("GetPolicyTemplateResponse").add("PolicyStoreId", policyStoreId())
.add("PolicyTemplateId", policyTemplateId())
.add("Description", description() == null ? null : "*** Sensitive Data Redacted ***")
.add("Statement", statement() == null ? null : "*** Sensitive Data Redacted ***")
.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 "policyTemplateId":
return Optional.ofNullable(clazz.cast(policyTemplateId()));
case "description":
return Optional.ofNullable(clazz.cast(description()));
case "statement":
return Optional.ofNullable(clazz.cast(statement()));
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;
}
@Override
public final Map> sdkFieldNameToField() {
return SDK_NAME_TO_FIELD;
}
private static Map> memberNameToFieldInitializer() {
Map> map = new HashMap<>();
map.put("policyStoreId", POLICY_STORE_ID_FIELD);
map.put("policyTemplateId", POLICY_TEMPLATE_ID_FIELD);
map.put("description", DESCRIPTION_FIELD);
map.put("statement", STATEMENT_FIELD);
map.put("createdDate", CREATED_DATE_FIELD);
map.put("lastUpdatedDate", LAST_UPDATED_DATE_FIELD);
return Collections.unmodifiableMap(map);
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy