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

software.amazon.awssdk.services.customerprofiles.model.CreateCalculatedAttributeDefinitionResponse Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.28.3
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.customerprofiles.model;

import java.time.Instant;
import java.util.Arrays;
import java.util.Collections;
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.Consumer;
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.MapTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructMap;
import software.amazon.awssdk.core.util.SdkAutoConstructMap;
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 CreateCalculatedAttributeDefinitionResponse extends CustomerProfilesResponse implements
        ToCopyableBuilder {
    private static final SdkField CALCULATED_ATTRIBUTE_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("CalculatedAttributeName")
            .getter(getter(CreateCalculatedAttributeDefinitionResponse::calculatedAttributeName))
            .setter(setter(Builder::calculatedAttributeName))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CalculatedAttributeName").build())
            .build();

    private static final SdkField DISPLAY_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("DisplayName").getter(getter(CreateCalculatedAttributeDefinitionResponse::displayName))
            .setter(setter(Builder::displayName))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("DisplayName").build()).build();

    private static final SdkField DESCRIPTION_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("Description").getter(getter(CreateCalculatedAttributeDefinitionResponse::description))
            .setter(setter(Builder::description))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Description").build()).build();

    private static final SdkField ATTRIBUTE_DETAILS_FIELD = SdkField
            . builder(MarshallingType.SDK_POJO).memberName("AttributeDetails")
            .getter(getter(CreateCalculatedAttributeDefinitionResponse::attributeDetails))
            .setter(setter(Builder::attributeDetails)).constructor(AttributeDetails::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("AttributeDetails").build()).build();

    private static final SdkField CONDITIONS_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
            .memberName("Conditions").getter(getter(CreateCalculatedAttributeDefinitionResponse::conditions))
            .setter(setter(Builder::conditions)).constructor(Conditions::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Conditions").build()).build();

    private static final SdkField STATISTIC_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("Statistic").getter(getter(CreateCalculatedAttributeDefinitionResponse::statisticAsString))
            .setter(setter(Builder::statistic))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Statistic").build()).build();

    private static final SdkField CREATED_AT_FIELD = SdkField. builder(MarshallingType.INSTANT)
            .memberName("CreatedAt").getter(getter(CreateCalculatedAttributeDefinitionResponse::createdAt))
            .setter(setter(Builder::createdAt))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CreatedAt").build()).build();

    private static final SdkField LAST_UPDATED_AT_FIELD = SdkField. builder(MarshallingType.INSTANT)
            .memberName("LastUpdatedAt").getter(getter(CreateCalculatedAttributeDefinitionResponse::lastUpdatedAt))
            .setter(setter(Builder::lastUpdatedAt))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LastUpdatedAt").build()).build();

    private static final SdkField> TAGS_FIELD = SdkField
            .> builder(MarshallingType.MAP)
            .memberName("Tags")
            .getter(getter(CreateCalculatedAttributeDefinitionResponse::tags))
            .setter(setter(Builder::tags))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Tags").build(),
                    MapTrait.builder()
                            .keyLocationName("key")
                            .valueLocationName("value")
                            .valueFieldInfo(
                                    SdkField. builder(MarshallingType.STRING)
                                            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
                                                    .locationName("value").build()).build()).build()).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(
            CALCULATED_ATTRIBUTE_NAME_FIELD, DISPLAY_NAME_FIELD, DESCRIPTION_FIELD, ATTRIBUTE_DETAILS_FIELD, CONDITIONS_FIELD,
            STATISTIC_FIELD, CREATED_AT_FIELD, LAST_UPDATED_AT_FIELD, TAGS_FIELD));

    private final String calculatedAttributeName;

    private final String displayName;

    private final String description;

    private final AttributeDetails attributeDetails;

    private final Conditions conditions;

    private final String statistic;

    private final Instant createdAt;

    private final Instant lastUpdatedAt;

    private final Map tags;

    private CreateCalculatedAttributeDefinitionResponse(BuilderImpl builder) {
        super(builder);
        this.calculatedAttributeName = builder.calculatedAttributeName;
        this.displayName = builder.displayName;
        this.description = builder.description;
        this.attributeDetails = builder.attributeDetails;
        this.conditions = builder.conditions;
        this.statistic = builder.statistic;
        this.createdAt = builder.createdAt;
        this.lastUpdatedAt = builder.lastUpdatedAt;
        this.tags = builder.tags;
    }

    /**
     * 

* The unique name of the calculated attribute. *

* * @return The unique name of the calculated attribute. */ public final String calculatedAttributeName() { return calculatedAttributeName; } /** *

* The display name of the calculated attribute. *

* * @return The display name of the calculated attribute. */ public final String displayName() { return displayName; } /** *

* The description of the calculated attribute. *

* * @return The description of the calculated attribute. */ public final String description() { return description; } /** *

* Mathematical expression and a list of attribute items specified in that expression. *

* * @return Mathematical expression and a list of attribute items specified in that expression. */ public final AttributeDetails attributeDetails() { return attributeDetails; } /** *

* The conditions including range, object count, and threshold for the calculated attribute. *

* * @return The conditions including range, object count, and threshold for the calculated attribute. */ public final Conditions conditions() { return conditions; } /** *

* The aggregation operation to perform for the calculated attribute. *

*

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

* * @return The aggregation operation to perform for the calculated attribute. * @see Statistic */ public final Statistic statistic() { return Statistic.fromValue(statistic); } /** *

* The aggregation operation to perform for the calculated attribute. *

*

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

* * @return The aggregation operation to perform for the calculated attribute. * @see Statistic */ public final String statisticAsString() { return statistic; } /** *

* The timestamp of when the calculated attribute definition was created. *

* * @return The timestamp of when the calculated attribute definition was created. */ public final Instant createdAt() { return createdAt; } /** *

* The timestamp of when the calculated attribute definition was most recently edited. *

* * @return The timestamp of when the calculated attribute definition was most recently edited. */ public final Instant lastUpdatedAt() { return lastUpdatedAt; } /** * For responses, this returns true if the service returned a value for the Tags property. This DOES NOT check that * the value is non-empty (for which, you should check the {@code isEmpty()} method on the property). This is useful * because the SDK will never return a null collection or map, but you may need to differentiate between the service * returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true * if a value for the property was specified in the request builder, and false if a value was not specified. */ public final boolean hasTags() { return tags != null && !(tags instanceof SdkAutoConstructMap); } /** *

* The tags used to organize, track, or control access for this resource. *

*

* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

*

* This method will never return null. If you would like to know whether the service returned this field (so that * you can differentiate between null and empty), you can use the {@link #hasTags} method. *

* * @return The tags used to organize, track, or control access for this resource. */ public final Map tags() { return tags; } @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(calculatedAttributeName()); hashCode = 31 * hashCode + Objects.hashCode(displayName()); hashCode = 31 * hashCode + Objects.hashCode(description()); hashCode = 31 * hashCode + Objects.hashCode(attributeDetails()); hashCode = 31 * hashCode + Objects.hashCode(conditions()); hashCode = 31 * hashCode + Objects.hashCode(statisticAsString()); hashCode = 31 * hashCode + Objects.hashCode(createdAt()); hashCode = 31 * hashCode + Objects.hashCode(lastUpdatedAt()); hashCode = 31 * hashCode + Objects.hashCode(hasTags() ? tags() : null); 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 CreateCalculatedAttributeDefinitionResponse)) { return false; } CreateCalculatedAttributeDefinitionResponse other = (CreateCalculatedAttributeDefinitionResponse) obj; return Objects.equals(calculatedAttributeName(), other.calculatedAttributeName()) && Objects.equals(displayName(), other.displayName()) && Objects.equals(description(), other.description()) && Objects.equals(attributeDetails(), other.attributeDetails()) && Objects.equals(conditions(), other.conditions()) && Objects.equals(statisticAsString(), other.statisticAsString()) && Objects.equals(createdAt(), other.createdAt()) && Objects.equals(lastUpdatedAt(), other.lastUpdatedAt()) && hasTags() == other.hasTags() && Objects.equals(tags(), other.tags()); } /** * 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("CreateCalculatedAttributeDefinitionResponse") .add("CalculatedAttributeName", calculatedAttributeName()).add("DisplayName", displayName()) .add("Description", description() == null ? null : "*** Sensitive Data Redacted ***") .add("AttributeDetails", attributeDetails() == null ? null : "*** Sensitive Data Redacted ***") .add("Conditions", conditions() == null ? null : "*** Sensitive Data Redacted ***") .add("Statistic", statisticAsString() == null ? null : "*** Sensitive Data Redacted ***") .add("CreatedAt", createdAt()).add("LastUpdatedAt", lastUpdatedAt()).add("Tags", hasTags() ? tags() : null) .build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "CalculatedAttributeName": return Optional.ofNullable(clazz.cast(calculatedAttributeName())); case "DisplayName": return Optional.ofNullable(clazz.cast(displayName())); case "Description": return Optional.ofNullable(clazz.cast(description())); case "AttributeDetails": return Optional.ofNullable(clazz.cast(attributeDetails())); case "Conditions": return Optional.ofNullable(clazz.cast(conditions())); case "Statistic": return Optional.ofNullable(clazz.cast(statisticAsString())); case "CreatedAt": return Optional.ofNullable(clazz.cast(createdAt())); case "LastUpdatedAt": return Optional.ofNullable(clazz.cast(lastUpdatedAt())); case "Tags": return Optional.ofNullable(clazz.cast(tags())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((CreateCalculatedAttributeDefinitionResponse) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends CustomerProfilesResponse.Builder, SdkPojo, CopyableBuilder { /** *

* The unique name of the calculated attribute. *

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

* The display name of the calculated attribute. *

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

* The description of the calculated attribute. *

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

* Mathematical expression and a list of attribute items specified in that expression. *

* * @param attributeDetails * Mathematical expression and a list of attribute items specified in that expression. * @return Returns a reference to this object so that method calls can be chained together. */ Builder attributeDetails(AttributeDetails attributeDetails); /** *

* Mathematical expression and a list of attribute items specified in that expression. *

* This is a convenience method that creates an instance of the {@link AttributeDetails.Builder} avoiding the * need to create one manually via {@link AttributeDetails#builder()}. * *

* When the {@link Consumer} completes, {@link AttributeDetails.Builder#build()} is called immediately and its * result is passed to {@link #attributeDetails(AttributeDetails)}. * * @param attributeDetails * a consumer that will call methods on {@link AttributeDetails.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #attributeDetails(AttributeDetails) */ default Builder attributeDetails(Consumer attributeDetails) { return attributeDetails(AttributeDetails.builder().applyMutation(attributeDetails).build()); } /** *

* The conditions including range, object count, and threshold for the calculated attribute. *

* * @param conditions * The conditions including range, object count, and threshold for the calculated attribute. * @return Returns a reference to this object so that method calls can be chained together. */ Builder conditions(Conditions conditions); /** *

* The conditions including range, object count, and threshold for the calculated attribute. *

* This is a convenience method that creates an instance of the {@link Conditions.Builder} avoiding the need to * create one manually via {@link Conditions#builder()}. * *

* When the {@link Consumer} completes, {@link Conditions.Builder#build()} is called immediately and its result * is passed to {@link #conditions(Conditions)}. * * @param conditions * a consumer that will call methods on {@link Conditions.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #conditions(Conditions) */ default Builder conditions(Consumer conditions) { return conditions(Conditions.builder().applyMutation(conditions).build()); } /** *

* The aggregation operation to perform for the calculated attribute. *

* * @param statistic * The aggregation operation to perform for the calculated attribute. * @see Statistic * @return Returns a reference to this object so that method calls can be chained together. * @see Statistic */ Builder statistic(String statistic); /** *

* The aggregation operation to perform for the calculated attribute. *

* * @param statistic * The aggregation operation to perform for the calculated attribute. * @see Statistic * @return Returns a reference to this object so that method calls can be chained together. * @see Statistic */ Builder statistic(Statistic statistic); /** *

* The timestamp of when the calculated attribute definition was created. *

* * @param createdAt * The timestamp of when the calculated attribute definition was created. * @return Returns a reference to this object so that method calls can be chained together. */ Builder createdAt(Instant createdAt); /** *

* The timestamp of when the calculated attribute definition was most recently edited. *

* * @param lastUpdatedAt * The timestamp of when the calculated attribute definition was most recently edited. * @return Returns a reference to this object so that method calls can be chained together. */ Builder lastUpdatedAt(Instant lastUpdatedAt); /** *

* The tags used to organize, track, or control access for this resource. *

* * @param tags * The tags used to organize, track, or control access for this resource. * @return Returns a reference to this object so that method calls can be chained together. */ Builder tags(Map tags); } static final class BuilderImpl extends CustomerProfilesResponse.BuilderImpl implements Builder { private String calculatedAttributeName; private String displayName; private String description; private AttributeDetails attributeDetails; private Conditions conditions; private String statistic; private Instant createdAt; private Instant lastUpdatedAt; private Map tags = DefaultSdkAutoConstructMap.getInstance(); private BuilderImpl() { } private BuilderImpl(CreateCalculatedAttributeDefinitionResponse model) { super(model); calculatedAttributeName(model.calculatedAttributeName); displayName(model.displayName); description(model.description); attributeDetails(model.attributeDetails); conditions(model.conditions); statistic(model.statistic); createdAt(model.createdAt); lastUpdatedAt(model.lastUpdatedAt); tags(model.tags); } public final String getCalculatedAttributeName() { return calculatedAttributeName; } public final void setCalculatedAttributeName(String calculatedAttributeName) { this.calculatedAttributeName = calculatedAttributeName; } @Override public final Builder calculatedAttributeName(String calculatedAttributeName) { this.calculatedAttributeName = calculatedAttributeName; return this; } public final String getDisplayName() { return displayName; } public final void setDisplayName(String displayName) { this.displayName = displayName; } @Override public final Builder displayName(String displayName) { this.displayName = displayName; return this; } public final String getDescription() { return description; } public final void setDescription(String description) { this.description = description; } @Override public final Builder description(String description) { this.description = description; return this; } public final AttributeDetails.Builder getAttributeDetails() { return attributeDetails != null ? attributeDetails.toBuilder() : null; } public final void setAttributeDetails(AttributeDetails.BuilderImpl attributeDetails) { this.attributeDetails = attributeDetails != null ? attributeDetails.build() : null; } @Override public final Builder attributeDetails(AttributeDetails attributeDetails) { this.attributeDetails = attributeDetails; return this; } public final Conditions.Builder getConditions() { return conditions != null ? conditions.toBuilder() : null; } public final void setConditions(Conditions.BuilderImpl conditions) { this.conditions = conditions != null ? conditions.build() : null; } @Override public final Builder conditions(Conditions conditions) { this.conditions = conditions; return this; } public final String getStatistic() { return statistic; } public final void setStatistic(String statistic) { this.statistic = statistic; } @Override public final Builder statistic(String statistic) { this.statistic = statistic; return this; } @Override public final Builder statistic(Statistic statistic) { this.statistic(statistic == null ? null : statistic.toString()); return this; } public final Instant getCreatedAt() { return createdAt; } public final void setCreatedAt(Instant createdAt) { this.createdAt = createdAt; } @Override public final Builder createdAt(Instant createdAt) { this.createdAt = createdAt; return this; } public final Instant getLastUpdatedAt() { return lastUpdatedAt; } public final void setLastUpdatedAt(Instant lastUpdatedAt) { this.lastUpdatedAt = lastUpdatedAt; } @Override public final Builder lastUpdatedAt(Instant lastUpdatedAt) { this.lastUpdatedAt = lastUpdatedAt; return this; } public final Map getTags() { if (tags instanceof SdkAutoConstructMap) { return null; } return tags; } public final void setTags(Map tags) { this.tags = TagMapCopier.copy(tags); } @Override public final Builder tags(Map tags) { this.tags = TagMapCopier.copy(tags); return this; } @Override public CreateCalculatedAttributeDefinitionResponse build() { return new CreateCalculatedAttributeDefinitionResponse(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy