software.amazon.awssdk.services.cleanroomsml.model.AudienceExportJobSummary Maven / Gradle / Ivy
Show all versions of cleanroomsml Show documentation
/*
* 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.cleanroomsml.model;
import java.io.Serializable;
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.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.TimestampFormatTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* Provides information about the audience export job.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class AudienceExportJobSummary implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField CREATE_TIME_FIELD = SdkField
. builder(MarshallingType.INSTANT)
.memberName("createTime")
.getter(getter(AudienceExportJobSummary::createTime))
.setter(setter(Builder::createTime))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("createTime").build(),
TimestampFormatTrait.create(TimestampFormatTrait.Format.ISO_8601)).build();
private static final SdkField UPDATE_TIME_FIELD = SdkField
. builder(MarshallingType.INSTANT)
.memberName("updateTime")
.getter(getter(AudienceExportJobSummary::updateTime))
.setter(setter(Builder::updateTime))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("updateTime").build(),
TimestampFormatTrait.create(TimestampFormatTrait.Format.ISO_8601)).build();
private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("name")
.getter(getter(AudienceExportJobSummary::name)).setter(setter(Builder::name))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("name").build()).build();
private static final SdkField AUDIENCE_GENERATION_JOB_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("audienceGenerationJobArn").getter(getter(AudienceExportJobSummary::audienceGenerationJobArn))
.setter(setter(Builder::audienceGenerationJobArn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("audienceGenerationJobArn").build())
.build();
private static final SdkField AUDIENCE_SIZE_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
.memberName("audienceSize").getter(getter(AudienceExportJobSummary::audienceSize))
.setter(setter(Builder::audienceSize)).constructor(AudienceSize::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("audienceSize").build()).build();
private static final SdkField DESCRIPTION_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("description").getter(getter(AudienceExportJobSummary::description)).setter(setter(Builder::description))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("description").build()).build();
private static final SdkField STATUS_FIELD = SdkField. builder(MarshallingType.STRING).memberName("status")
.getter(getter(AudienceExportJobSummary::statusAsString)).setter(setter(Builder::status))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("status").build()).build();
private static final SdkField STATUS_DETAILS_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("statusDetails")
.getter(getter(AudienceExportJobSummary::statusDetails)).setter(setter(Builder::statusDetails))
.constructor(StatusDetails::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("statusDetails").build()).build();
private static final SdkField OUTPUT_LOCATION_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("outputLocation").getter(getter(AudienceExportJobSummary::outputLocation))
.setter(setter(Builder::outputLocation))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("outputLocation").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(CREATE_TIME_FIELD,
UPDATE_TIME_FIELD, NAME_FIELD, AUDIENCE_GENERATION_JOB_ARN_FIELD, AUDIENCE_SIZE_FIELD, DESCRIPTION_FIELD,
STATUS_FIELD, STATUS_DETAILS_FIELD, OUTPUT_LOCATION_FIELD));
private static final Map> SDK_NAME_TO_FIELD = Collections
.unmodifiableMap(new HashMap>() {
{
put("createTime", CREATE_TIME_FIELD);
put("updateTime", UPDATE_TIME_FIELD);
put("name", NAME_FIELD);
put("audienceGenerationJobArn", AUDIENCE_GENERATION_JOB_ARN_FIELD);
put("audienceSize", AUDIENCE_SIZE_FIELD);
put("description", DESCRIPTION_FIELD);
put("status", STATUS_FIELD);
put("statusDetails", STATUS_DETAILS_FIELD);
put("outputLocation", OUTPUT_LOCATION_FIELD);
}
});
private static final long serialVersionUID = 1L;
private final Instant createTime;
private final Instant updateTime;
private final String name;
private final String audienceGenerationJobArn;
private final AudienceSize audienceSize;
private final String description;
private final String status;
private final StatusDetails statusDetails;
private final String outputLocation;
private AudienceExportJobSummary(BuilderImpl builder) {
this.createTime = builder.createTime;
this.updateTime = builder.updateTime;
this.name = builder.name;
this.audienceGenerationJobArn = builder.audienceGenerationJobArn;
this.audienceSize = builder.audienceSize;
this.description = builder.description;
this.status = builder.status;
this.statusDetails = builder.statusDetails;
this.outputLocation = builder.outputLocation;
}
/**
*
* The time at which the audience export job was created.
*
*
* @return The time at which the audience export job was created.
*/
public final Instant createTime() {
return createTime;
}
/**
*
* The most recent time at which the audience export job was updated.
*
*
* @return The most recent time at which the audience export job was updated.
*/
public final Instant updateTime() {
return updateTime;
}
/**
*
* The name of the audience export job.
*
*
* @return The name of the audience export job.
*/
public final String name() {
return name;
}
/**
*
* The Amazon Resource Name (ARN) of the audience generation job that was exported.
*
*
* @return The Amazon Resource Name (ARN) of the audience generation job that was exported.
*/
public final String audienceGenerationJobArn() {
return audienceGenerationJobArn;
}
/**
* Returns the value of the AudienceSize property for this object.
*
* @return The value of the AudienceSize property for this object.
*/
public final AudienceSize audienceSize() {
return audienceSize;
}
/**
*
* The description of the audience export job.
*
*
* @return The description of the audience export job.
*/
public final String description() {
return description;
}
/**
*
* The status of the audience export job.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #status} will
* return {@link AudienceExportJobStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available
* from {@link #statusAsString}.
*
*
* @return The status of the audience export job.
* @see AudienceExportJobStatus
*/
public final AudienceExportJobStatus status() {
return AudienceExportJobStatus.fromValue(status);
}
/**
*
* The status of the audience export job.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #status} will
* return {@link AudienceExportJobStatus#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available
* from {@link #statusAsString}.
*
*
* @return The status of the audience export job.
* @see AudienceExportJobStatus
*/
public final String statusAsString() {
return status;
}
/**
* Returns the value of the StatusDetails property for this object.
*
* @return The value of the StatusDetails property for this object.
*/
public final StatusDetails statusDetails() {
return statusDetails;
}
/**
*
* The Amazon S3 bucket where the audience export is stored.
*
*
* @return The Amazon S3 bucket where the audience export is stored.
*/
public final String outputLocation() {
return outputLocation;
}
@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 + Objects.hashCode(createTime());
hashCode = 31 * hashCode + Objects.hashCode(updateTime());
hashCode = 31 * hashCode + Objects.hashCode(name());
hashCode = 31 * hashCode + Objects.hashCode(audienceGenerationJobArn());
hashCode = 31 * hashCode + Objects.hashCode(audienceSize());
hashCode = 31 * hashCode + Objects.hashCode(description());
hashCode = 31 * hashCode + Objects.hashCode(statusAsString());
hashCode = 31 * hashCode + Objects.hashCode(statusDetails());
hashCode = 31 * hashCode + Objects.hashCode(outputLocation());
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 AudienceExportJobSummary)) {
return false;
}
AudienceExportJobSummary other = (AudienceExportJobSummary) obj;
return Objects.equals(createTime(), other.createTime()) && Objects.equals(updateTime(), other.updateTime())
&& Objects.equals(name(), other.name())
&& Objects.equals(audienceGenerationJobArn(), other.audienceGenerationJobArn())
&& Objects.equals(audienceSize(), other.audienceSize()) && Objects.equals(description(), other.description())
&& Objects.equals(statusAsString(), other.statusAsString())
&& Objects.equals(statusDetails(), other.statusDetails())
&& Objects.equals(outputLocation(), other.outputLocation());
}
/**
* 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("AudienceExportJobSummary").add("CreateTime", createTime()).add("UpdateTime", updateTime())
.add("Name", name()).add("AudienceGenerationJobArn", audienceGenerationJobArn())
.add("AudienceSize", audienceSize()).add("Description", description()).add("Status", statusAsString())
.add("StatusDetails", statusDetails()).add("OutputLocation", outputLocation()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "createTime":
return Optional.ofNullable(clazz.cast(createTime()));
case "updateTime":
return Optional.ofNullable(clazz.cast(updateTime()));
case "name":
return Optional.ofNullable(clazz.cast(name()));
case "audienceGenerationJobArn":
return Optional.ofNullable(clazz.cast(audienceGenerationJobArn()));
case "audienceSize":
return Optional.ofNullable(clazz.cast(audienceSize()));
case "description":
return Optional.ofNullable(clazz.cast(description()));
case "status":
return Optional.ofNullable(clazz.cast(statusAsString()));
case "statusDetails":
return Optional.ofNullable(clazz.cast(statusDetails()));
case "outputLocation":
return Optional.ofNullable(clazz.cast(outputLocation()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
@Override
public final Map> sdkFieldNameToField() {
return SDK_NAME_TO_FIELD;
}
private static Function