software.amazon.awssdk.services.pinpoint.model.WriteTreatmentResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinpoint Show documentation
Show all versions of pinpoint Show documentation
The AWS Java SDK for Amazon Pinpoint module holds the client classes that are used for communicating
with Amazon Pinpoint Service
/*
* 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.pinpoint.model;
import java.io.Serializable;
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.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.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
* Used to create a campaign treatment.
*/
@Generated("software.amazon.awssdk:codegen")
public final class WriteTreatmentResource implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField MESSAGE_CONFIGURATION_FIELD = SdkField
. builder(MarshallingType.SDK_POJO)
.getter(getter(WriteTreatmentResource::messageConfiguration)).setter(setter(Builder::messageConfiguration))
.constructor(MessageConfiguration::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MessageConfiguration").build())
.build();
private static final SdkField SCHEDULE_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
.getter(getter(WriteTreatmentResource::schedule)).setter(setter(Builder::schedule)).constructor(Schedule::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Schedule").build()).build();
private static final SdkField SIZE_PERCENT_FIELD = SdkField. builder(MarshallingType.INTEGER)
.getter(getter(WriteTreatmentResource::sizePercent)).setter(setter(Builder::sizePercent))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SizePercent").build()).build();
private static final SdkField TREATMENT_DESCRIPTION_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(WriteTreatmentResource::treatmentDescription)).setter(setter(Builder::treatmentDescription))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TreatmentDescription").build())
.build();
private static final SdkField TREATMENT_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(WriteTreatmentResource::treatmentName)).setter(setter(Builder::treatmentName))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TreatmentName").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(MESSAGE_CONFIGURATION_FIELD,
SCHEDULE_FIELD, SIZE_PERCENT_FIELD, TREATMENT_DESCRIPTION_FIELD, TREATMENT_NAME_FIELD));
private static final long serialVersionUID = 1L;
private final MessageConfiguration messageConfiguration;
private final Schedule schedule;
private final Integer sizePercent;
private final String treatmentDescription;
private final String treatmentName;
private WriteTreatmentResource(BuilderImpl builder) {
this.messageConfiguration = builder.messageConfiguration;
this.schedule = builder.schedule;
this.sizePercent = builder.sizePercent;
this.treatmentDescription = builder.treatmentDescription;
this.treatmentName = builder.treatmentName;
}
/**
* The message configuration settings.
*
* @return The message configuration settings.
*/
public MessageConfiguration messageConfiguration() {
return messageConfiguration;
}
/**
* The campaign schedule.
*
* @return The campaign schedule.
*/
public Schedule schedule() {
return schedule;
}
/**
* The allocated percentage of users for this treatment.
*
* @return The allocated percentage of users for this treatment.
*/
public Integer sizePercent() {
return sizePercent;
}
/**
* A custom description for the treatment.
*
* @return A custom description for the treatment.
*/
public String treatmentDescription() {
return treatmentDescription;
}
/**
* The custom name of a variation of the campaign used for A/B testing.
*
* @return The custom name of a variation of the campaign used for A/B testing.
*/
public String treatmentName() {
return treatmentName;
}
@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 int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(messageConfiguration());
hashCode = 31 * hashCode + Objects.hashCode(schedule());
hashCode = 31 * hashCode + Objects.hashCode(sizePercent());
hashCode = 31 * hashCode + Objects.hashCode(treatmentDescription());
hashCode = 31 * hashCode + Objects.hashCode(treatmentName());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof WriteTreatmentResource)) {
return false;
}
WriteTreatmentResource other = (WriteTreatmentResource) obj;
return Objects.equals(messageConfiguration(), other.messageConfiguration())
&& Objects.equals(schedule(), other.schedule()) && Objects.equals(sizePercent(), other.sizePercent())
&& Objects.equals(treatmentDescription(), other.treatmentDescription())
&& Objects.equals(treatmentName(), other.treatmentName());
}
/**
* 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("WriteTreatmentResource").add("MessageConfiguration", messageConfiguration())
.add("Schedule", schedule()).add("SizePercent", sizePercent())
.add("TreatmentDescription", treatmentDescription()).add("TreatmentName", treatmentName()).build();
}
public Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "MessageConfiguration":
return Optional.ofNullable(clazz.cast(messageConfiguration()));
case "Schedule":
return Optional.ofNullable(clazz.cast(schedule()));
case "SizePercent":
return Optional.ofNullable(clazz.cast(sizePercent()));
case "TreatmentDescription":
return Optional.ofNullable(clazz.cast(treatmentDescription()));
case "TreatmentName":
return Optional.ofNullable(clazz.cast(treatmentName()));
default:
return Optional.empty();
}
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
private static Function