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

software.amazon.awssdk.services.glue.model.Predecessor Maven / Gradle / Ivy

/*
 * 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.glue.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.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;

/**
 * 

* A job run that was used in the predicate of a conditional trigger that triggered this job run. *

*/ @Generated("software.amazon.awssdk:codegen") public final class Predecessor implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField JOB_NAME_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("JobName").getter(getter(Predecessor::jobName)).setter(setter(Builder::jobName)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("JobName").build()).build(); private static final SdkField RUN_ID_FIELD = SdkField. builder(MarshallingType.STRING).memberName("RunId") .getter(getter(Predecessor::runId)).setter(setter(Builder::runId)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("RunId").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(JOB_NAME_FIELD, RUN_ID_FIELD)); private static final long serialVersionUID = 1L; private final String jobName; private final String runId; private Predecessor(BuilderImpl builder) { this.jobName = builder.jobName; this.runId = builder.runId; } /** *

* The name of the job definition used by the predecessor job run. *

* * @return The name of the job definition used by the predecessor job run. */ public final String jobName() { return jobName; } /** *

* The job-run ID of the predecessor job run. *

* * @return The job-run ID of the predecessor job run. */ public final String runId() { return runId; } @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(jobName()); hashCode = 31 * hashCode + Objects.hashCode(runId()); 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 Predecessor)) { return false; } Predecessor other = (Predecessor) obj; return Objects.equals(jobName(), other.jobName()) && Objects.equals(runId(), other.runId()); } /** * 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("Predecessor").add("JobName", jobName()).add("RunId", runId()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "JobName": return Optional.ofNullable(clazz.cast(jobName())); case "RunId": return Optional.ofNullable(clazz.cast(runId())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((Predecessor) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The name of the job definition used by the predecessor job run. *

* * @param jobName * The name of the job definition used by the predecessor job run. * @return Returns a reference to this object so that method calls can be chained together. */ Builder jobName(String jobName); /** *

* The job-run ID of the predecessor job run. *

* * @param runId * The job-run ID of the predecessor job run. * @return Returns a reference to this object so that method calls can be chained together. */ Builder runId(String runId); } static final class BuilderImpl implements Builder { private String jobName; private String runId; private BuilderImpl() { } private BuilderImpl(Predecessor model) { jobName(model.jobName); runId(model.runId); } public final String getJobName() { return jobName; } public final void setJobName(String jobName) { this.jobName = jobName; } @Override public final Builder jobName(String jobName) { this.jobName = jobName; return this; } public final String getRunId() { return runId; } public final void setRunId(String runId) { this.runId = runId; } @Override public final Builder runId(String runId) { this.runId = runId; return this; } @Override public Predecessor build() { return new Predecessor(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy