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

software.amazon.awssdk.services.pinpointemail.model.DomainDeliverabilityTrackingOption Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.30.1
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.pinpointemail.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.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;

/**
 * 

* An object that contains information about the Deliverability dashboard subscription for a verified domain that you * use to send email and currently has an active Deliverability dashboard subscription. If a Deliverability dashboard * subscription is active for a domain, you gain access to reputation, inbox placement, and other metrics for the * domain. *

*/ @Generated("software.amazon.awssdk:codegen") public final class DomainDeliverabilityTrackingOption implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField DOMAIN_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Domain") .getter(getter(DomainDeliverabilityTrackingOption::domain)).setter(setter(Builder::domain)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Domain").build()).build(); private static final SdkField SUBSCRIPTION_START_DATE_FIELD = SdkField. builder(MarshallingType.INSTANT) .memberName("SubscriptionStartDate").getter(getter(DomainDeliverabilityTrackingOption::subscriptionStartDate)) .setter(setter(Builder::subscriptionStartDate)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SubscriptionStartDate").build()) .build(); private static final SdkField INBOX_PLACEMENT_TRACKING_OPTION_FIELD = SdkField . builder(MarshallingType.SDK_POJO) .memberName("InboxPlacementTrackingOption") .getter(getter(DomainDeliverabilityTrackingOption::inboxPlacementTrackingOption)) .setter(setter(Builder::inboxPlacementTrackingOption)) .constructor(InboxPlacementTrackingOption::builder) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("InboxPlacementTrackingOption") .build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(DOMAIN_FIELD, SUBSCRIPTION_START_DATE_FIELD, INBOX_PLACEMENT_TRACKING_OPTION_FIELD)); private static final long serialVersionUID = 1L; private final String domain; private final Instant subscriptionStartDate; private final InboxPlacementTrackingOption inboxPlacementTrackingOption; private DomainDeliverabilityTrackingOption(BuilderImpl builder) { this.domain = builder.domain; this.subscriptionStartDate = builder.subscriptionStartDate; this.inboxPlacementTrackingOption = builder.inboxPlacementTrackingOption; } /** *

* A verified domain that’s associated with your AWS account and currently has an active Deliverability dashboard * subscription. *

* * @return A verified domain that’s associated with your AWS account and currently has an active Deliverability * dashboard subscription. */ public final String domain() { return domain; } /** *

* The date, in Unix time format, when you enabled the Deliverability dashboard for the domain. *

* * @return The date, in Unix time format, when you enabled the Deliverability dashboard for the domain. */ public final Instant subscriptionStartDate() { return subscriptionStartDate; } /** *

* An object that contains information about the inbox placement data settings for the domain. *

* * @return An object that contains information about the inbox placement data settings for the domain. */ public final InboxPlacementTrackingOption inboxPlacementTrackingOption() { return inboxPlacementTrackingOption; } @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(domain()); hashCode = 31 * hashCode + Objects.hashCode(subscriptionStartDate()); hashCode = 31 * hashCode + Objects.hashCode(inboxPlacementTrackingOption()); 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 DomainDeliverabilityTrackingOption)) { return false; } DomainDeliverabilityTrackingOption other = (DomainDeliverabilityTrackingOption) obj; return Objects.equals(domain(), other.domain()) && Objects.equals(subscriptionStartDate(), other.subscriptionStartDate()) && Objects.equals(inboxPlacementTrackingOption(), other.inboxPlacementTrackingOption()); } /** * 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("DomainDeliverabilityTrackingOption").add("Domain", domain()) .add("SubscriptionStartDate", subscriptionStartDate()) .add("InboxPlacementTrackingOption", inboxPlacementTrackingOption()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "Domain": return Optional.ofNullable(clazz.cast(domain())); case "SubscriptionStartDate": return Optional.ofNullable(clazz.cast(subscriptionStartDate())); case "InboxPlacementTrackingOption": return Optional.ofNullable(clazz.cast(inboxPlacementTrackingOption())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((DomainDeliverabilityTrackingOption) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* A verified domain that’s associated with your AWS account and currently has an active Deliverability * dashboard subscription. *

* * @param domain * A verified domain that’s associated with your AWS account and currently has an active Deliverability * dashboard subscription. * @return Returns a reference to this object so that method calls can be chained together. */ Builder domain(String domain); /** *

* The date, in Unix time format, when you enabled the Deliverability dashboard for the domain. *

* * @param subscriptionStartDate * The date, in Unix time format, when you enabled the Deliverability dashboard for the domain. * @return Returns a reference to this object so that method calls can be chained together. */ Builder subscriptionStartDate(Instant subscriptionStartDate); /** *

* An object that contains information about the inbox placement data settings for the domain. *

* * @param inboxPlacementTrackingOption * An object that contains information about the inbox placement data settings for the domain. * @return Returns a reference to this object so that method calls can be chained together. */ Builder inboxPlacementTrackingOption(InboxPlacementTrackingOption inboxPlacementTrackingOption); /** *

* An object that contains information about the inbox placement data settings for the domain. *

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

* When the {@link Consumer} completes, {@link InboxPlacementTrackingOption.Builder#build()} is called * immediately and its result is passed to {@link #inboxPlacementTrackingOption(InboxPlacementTrackingOption)}. * * @param inboxPlacementTrackingOption * a consumer that will call methods on {@link InboxPlacementTrackingOption.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #inboxPlacementTrackingOption(InboxPlacementTrackingOption) */ default Builder inboxPlacementTrackingOption(Consumer inboxPlacementTrackingOption) { return inboxPlacementTrackingOption(InboxPlacementTrackingOption.builder() .applyMutation(inboxPlacementTrackingOption).build()); } } static final class BuilderImpl implements Builder { private String domain; private Instant subscriptionStartDate; private InboxPlacementTrackingOption inboxPlacementTrackingOption; private BuilderImpl() { } private BuilderImpl(DomainDeliverabilityTrackingOption model) { domain(model.domain); subscriptionStartDate(model.subscriptionStartDate); inboxPlacementTrackingOption(model.inboxPlacementTrackingOption); } public final String getDomain() { return domain; } public final void setDomain(String domain) { this.domain = domain; } @Override public final Builder domain(String domain) { this.domain = domain; return this; } public final Instant getSubscriptionStartDate() { return subscriptionStartDate; } public final void setSubscriptionStartDate(Instant subscriptionStartDate) { this.subscriptionStartDate = subscriptionStartDate; } @Override public final Builder subscriptionStartDate(Instant subscriptionStartDate) { this.subscriptionStartDate = subscriptionStartDate; return this; } public final InboxPlacementTrackingOption.Builder getInboxPlacementTrackingOption() { return inboxPlacementTrackingOption != null ? inboxPlacementTrackingOption.toBuilder() : null; } public final void setInboxPlacementTrackingOption(InboxPlacementTrackingOption.BuilderImpl inboxPlacementTrackingOption) { this.inboxPlacementTrackingOption = inboxPlacementTrackingOption != null ? inboxPlacementTrackingOption.build() : null; } @Override public final Builder inboxPlacementTrackingOption(InboxPlacementTrackingOption inboxPlacementTrackingOption) { this.inboxPlacementTrackingOption = inboxPlacementTrackingOption; return this; } @Override public DomainDeliverabilityTrackingOption build() { return new DomainDeliverabilityTrackingOption(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy