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

software.amazon.awssdk.services.sfn.model.ExecutionListItem Maven / Gradle / Ivy

Go to download

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

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

/**
 * 

* Contains details about an execution. *

*/ @Generated("software.amazon.awssdk:codegen") public final class ExecutionListItem implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField EXECUTION_ARN_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("executionArn").getter(getter(ExecutionListItem::executionArn)).setter(setter(Builder::executionArn)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("executionArn").build()).build(); private static final SdkField STATE_MACHINE_ARN_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("stateMachineArn").getter(getter(ExecutionListItem::stateMachineArn)) .setter(setter(Builder::stateMachineArn)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("stateMachineArn").build()).build(); private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("name") .getter(getter(ExecutionListItem::name)).setter(setter(Builder::name)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("name").build()).build(); private static final SdkField STATUS_FIELD = SdkField. builder(MarshallingType.STRING).memberName("status") .getter(getter(ExecutionListItem::statusAsString)).setter(setter(Builder::status)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("status").build()).build(); private static final SdkField START_DATE_FIELD = SdkField. builder(MarshallingType.INSTANT) .memberName("startDate").getter(getter(ExecutionListItem::startDate)).setter(setter(Builder::startDate)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("startDate").build()).build(); private static final SdkField STOP_DATE_FIELD = SdkField. builder(MarshallingType.INSTANT) .memberName("stopDate").getter(getter(ExecutionListItem::stopDate)).setter(setter(Builder::stopDate)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("stopDate").build()).build(); private static final SdkField MAP_RUN_ARN_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("mapRunArn").getter(getter(ExecutionListItem::mapRunArn)).setter(setter(Builder::mapRunArn)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("mapRunArn").build()).build(); private static final SdkField ITEM_COUNT_FIELD = SdkField. builder(MarshallingType.INTEGER) .memberName("itemCount").getter(getter(ExecutionListItem::itemCount)).setter(setter(Builder::itemCount)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("itemCount").build()).build(); private static final SdkField STATE_MACHINE_VERSION_ARN_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("stateMachineVersionArn").getter(getter(ExecutionListItem::stateMachineVersionArn)) .setter(setter(Builder::stateMachineVersionArn)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("stateMachineVersionArn").build()) .build(); private static final SdkField STATE_MACHINE_ALIAS_ARN_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("stateMachineAliasArn").getter(getter(ExecutionListItem::stateMachineAliasArn)) .setter(setter(Builder::stateMachineAliasArn)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("stateMachineAliasArn").build()) .build(); private static final SdkField REDRIVE_COUNT_FIELD = SdkField. builder(MarshallingType.INTEGER) .memberName("redriveCount").getter(getter(ExecutionListItem::redriveCount)).setter(setter(Builder::redriveCount)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("redriveCount").build()).build(); private static final SdkField REDRIVE_DATE_FIELD = SdkField. builder(MarshallingType.INSTANT) .memberName("redriveDate").getter(getter(ExecutionListItem::redriveDate)).setter(setter(Builder::redriveDate)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("redriveDate").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(EXECUTION_ARN_FIELD, STATE_MACHINE_ARN_FIELD, NAME_FIELD, STATUS_FIELD, START_DATE_FIELD, STOP_DATE_FIELD, MAP_RUN_ARN_FIELD, ITEM_COUNT_FIELD, STATE_MACHINE_VERSION_ARN_FIELD, STATE_MACHINE_ALIAS_ARN_FIELD, REDRIVE_COUNT_FIELD, REDRIVE_DATE_FIELD)); private static final long serialVersionUID = 1L; private final String executionArn; private final String stateMachineArn; private final String name; private final String status; private final Instant startDate; private final Instant stopDate; private final String mapRunArn; private final Integer itemCount; private final String stateMachineVersionArn; private final String stateMachineAliasArn; private final Integer redriveCount; private final Instant redriveDate; private ExecutionListItem(BuilderImpl builder) { this.executionArn = builder.executionArn; this.stateMachineArn = builder.stateMachineArn; this.name = builder.name; this.status = builder.status; this.startDate = builder.startDate; this.stopDate = builder.stopDate; this.mapRunArn = builder.mapRunArn; this.itemCount = builder.itemCount; this.stateMachineVersionArn = builder.stateMachineVersionArn; this.stateMachineAliasArn = builder.stateMachineAliasArn; this.redriveCount = builder.redriveCount; this.redriveDate = builder.redriveDate; } /** *

* The Amazon Resource Name (ARN) that identifies the execution. *

* * @return The Amazon Resource Name (ARN) that identifies the execution. */ public final String executionArn() { return executionArn; } /** *

* The Amazon Resource Name (ARN) of the state machine that ran the execution. *

* * @return The Amazon Resource Name (ARN) of the state machine that ran the execution. */ public final String stateMachineArn() { return stateMachineArn; } /** *

* The name of the execution. *

*

* A name must not contain: *

*
    *
  • *

    * white space *

    *
  • *
  • *

    * brackets < > { } [ ] *

    *
  • *
  • *

    * wildcard characters ? * *

    *
  • *
  • *

    * special characters " # % \ ^ | ~ ` $ & , ; : / *

    *
  • *
  • *

    * control characters (U+0000-001F, U+007F-009F) *

    *
  • *
*

* To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _. *

* * @return The name of the execution.

*

* A name must not contain: *

*
    *
  • *

    * white space *

    *
  • *
  • *

    * brackets < > { } [ ] *

    *
  • *
  • *

    * wildcard characters ? * *

    *
  • *
  • *

    * special characters " # % \ ^ | ~ ` $ & , ; : / *

    *
  • *
  • *

    * control characters (U+0000-001F, U+007F-009F) *

    *
  • *
*

* To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _. */ public final String name() { return name; } /** *

* The current status of the execution. *

*

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

* * @return The current status of the execution. * @see ExecutionStatus */ public final ExecutionStatus status() { return ExecutionStatus.fromValue(status); } /** *

* The current status of the execution. *

*

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

* * @return The current status of the execution. * @see ExecutionStatus */ public final String statusAsString() { return status; } /** *

* The date the execution started. *

* * @return The date the execution started. */ public final Instant startDate() { return startDate; } /** *

* If the execution already ended, the date the execution stopped. *

* * @return If the execution already ended, the date the execution stopped. */ public final Instant stopDate() { return stopDate; } /** *

* The Amazon Resource Name (ARN) of a Map Run. This field is returned only if mapRunArn was specified * in the ListExecutions API action. If stateMachineArn was specified in * ListExecutions, the mapRunArn isn't returned. *

* * @return The Amazon Resource Name (ARN) of a Map Run. This field is returned only if mapRunArn was * specified in the ListExecutions API action. If stateMachineArn was specified in * ListExecutions, the mapRunArn isn't returned. */ public final String mapRunArn() { return mapRunArn; } /** *

* The total number of items processed in a child workflow execution. This field is returned only if * mapRunArn was specified in the ListExecutions API action. If * stateMachineArn was specified in ListExecutions, the itemCount field isn't * returned. *

* * @return The total number of items processed in a child workflow execution. This field is returned only if * mapRunArn was specified in the ListExecutions API action. If * stateMachineArn was specified in ListExecutions, the itemCount * field isn't returned. */ public final Integer itemCount() { return itemCount; } /** *

* The Amazon Resource Name (ARN) of the state machine version associated with the execution. *

*

* If the state machine execution was started with an unqualified ARN, it returns null. *

*

* If the execution was started using a stateMachineAliasArn, both the * stateMachineAliasArn and stateMachineVersionArn parameters contain the respective * values. *

* * @return The Amazon Resource Name (ARN) of the state machine version associated with the execution.

*

* If the state machine execution was started with an unqualified ARN, it returns null. *

*

* If the execution was started using a stateMachineAliasArn, both the * stateMachineAliasArn and stateMachineVersionArn parameters contain the * respective values. */ public final String stateMachineVersionArn() { return stateMachineVersionArn; } /** *

* The Amazon Resource Name (ARN) of the state machine alias used to start an execution. *

*

* If the state machine execution was started with an unqualified ARN or a version ARN, it returns null. *

* * @return The Amazon Resource Name (ARN) of the state machine alias used to start an execution.

*

* If the state machine execution was started with an unqualified ARN or a version ARN, it returns null. */ public final String stateMachineAliasArn() { return stateMachineAliasArn; } /** *

* The number of times you've redriven an execution. If you have not yet redriven an execution, the * redriveCount is 0. This count is only updated when you successfully redrive an execution. *

* * @return The number of times you've redriven an execution. If you have not yet redriven an execution, the * redriveCount is 0. This count is only updated when you successfully redrive an execution. */ public final Integer redriveCount() { return redriveCount; } /** *

* The date the execution was last redriven. *

* * @return The date the execution was last redriven. */ public final Instant redriveDate() { return redriveDate; } @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(executionArn()); hashCode = 31 * hashCode + Objects.hashCode(stateMachineArn()); hashCode = 31 * hashCode + Objects.hashCode(name()); hashCode = 31 * hashCode + Objects.hashCode(statusAsString()); hashCode = 31 * hashCode + Objects.hashCode(startDate()); hashCode = 31 * hashCode + Objects.hashCode(stopDate()); hashCode = 31 * hashCode + Objects.hashCode(mapRunArn()); hashCode = 31 * hashCode + Objects.hashCode(itemCount()); hashCode = 31 * hashCode + Objects.hashCode(stateMachineVersionArn()); hashCode = 31 * hashCode + Objects.hashCode(stateMachineAliasArn()); hashCode = 31 * hashCode + Objects.hashCode(redriveCount()); hashCode = 31 * hashCode + Objects.hashCode(redriveDate()); 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 ExecutionListItem)) { return false; } ExecutionListItem other = (ExecutionListItem) obj; return Objects.equals(executionArn(), other.executionArn()) && Objects.equals(stateMachineArn(), other.stateMachineArn()) && Objects.equals(name(), other.name()) && Objects.equals(statusAsString(), other.statusAsString()) && Objects.equals(startDate(), other.startDate()) && Objects.equals(stopDate(), other.stopDate()) && Objects.equals(mapRunArn(), other.mapRunArn()) && Objects.equals(itemCount(), other.itemCount()) && Objects.equals(stateMachineVersionArn(), other.stateMachineVersionArn()) && Objects.equals(stateMachineAliasArn(), other.stateMachineAliasArn()) && Objects.equals(redriveCount(), other.redriveCount()) && Objects.equals(redriveDate(), other.redriveDate()); } /** * 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("ExecutionListItem").add("ExecutionArn", executionArn()) .add("StateMachineArn", stateMachineArn()).add("Name", name()).add("Status", statusAsString()) .add("StartDate", startDate()).add("StopDate", stopDate()).add("MapRunArn", mapRunArn()) .add("ItemCount", itemCount()).add("StateMachineVersionArn", stateMachineVersionArn()) .add("StateMachineAliasArn", stateMachineAliasArn()).add("RedriveCount", redriveCount()) .add("RedriveDate", redriveDate()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "executionArn": return Optional.ofNullable(clazz.cast(executionArn())); case "stateMachineArn": return Optional.ofNullable(clazz.cast(stateMachineArn())); case "name": return Optional.ofNullable(clazz.cast(name())); case "status": return Optional.ofNullable(clazz.cast(statusAsString())); case "startDate": return Optional.ofNullable(clazz.cast(startDate())); case "stopDate": return Optional.ofNullable(clazz.cast(stopDate())); case "mapRunArn": return Optional.ofNullable(clazz.cast(mapRunArn())); case "itemCount": return Optional.ofNullable(clazz.cast(itemCount())); case "stateMachineVersionArn": return Optional.ofNullable(clazz.cast(stateMachineVersionArn())); case "stateMachineAliasArn": return Optional.ofNullable(clazz.cast(stateMachineAliasArn())); case "redriveCount": return Optional.ofNullable(clazz.cast(redriveCount())); case "redriveDate": return Optional.ofNullable(clazz.cast(redriveDate())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((ExecutionListItem) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The Amazon Resource Name (ARN) that identifies the execution. *

* * @param executionArn * The Amazon Resource Name (ARN) that identifies the execution. * @return Returns a reference to this object so that method calls can be chained together. */ Builder executionArn(String executionArn); /** *

* The Amazon Resource Name (ARN) of the state machine that ran the execution. *

* * @param stateMachineArn * The Amazon Resource Name (ARN) of the state machine that ran the execution. * @return Returns a reference to this object so that method calls can be chained together. */ Builder stateMachineArn(String stateMachineArn); /** *

* The name of the execution. *

*

* A name must not contain: *

*
    *
  • *

    * white space *

    *
  • *
  • *

    * brackets < > { } [ ] *

    *
  • *
  • *

    * wildcard characters ? * *

    *
  • *
  • *

    * special characters " # % \ ^ | ~ ` $ & , ; : / *

    *
  • *
  • *

    * control characters (U+0000-001F, U+007F-009F) *

    *
  • *
*

* To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _. *

* * @param name * The name of the execution.

*

* A name must not contain: *

*
    *
  • *

    * white space *

    *
  • *
  • *

    * brackets < > { } [ ] *

    *
  • *
  • *

    * wildcard characters ? * *

    *
  • *
  • *

    * special characters " # % \ ^ | ~ ` $ & , ; : / *

    *
  • *
  • *

    * control characters (U+0000-001F, U+007F-009F) *

    *
  • *
*

* To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _. * @return Returns a reference to this object so that method calls can be chained together. */ Builder name(String name); /** *

* The current status of the execution. *

* * @param status * The current status of the execution. * @see ExecutionStatus * @return Returns a reference to this object so that method calls can be chained together. * @see ExecutionStatus */ Builder status(String status); /** *

* The current status of the execution. *

* * @param status * The current status of the execution. * @see ExecutionStatus * @return Returns a reference to this object so that method calls can be chained together. * @see ExecutionStatus */ Builder status(ExecutionStatus status); /** *

* The date the execution started. *

* * @param startDate * The date the execution started. * @return Returns a reference to this object so that method calls can be chained together. */ Builder startDate(Instant startDate); /** *

* If the execution already ended, the date the execution stopped. *

* * @param stopDate * If the execution already ended, the date the execution stopped. * @return Returns a reference to this object so that method calls can be chained together. */ Builder stopDate(Instant stopDate); /** *

* The Amazon Resource Name (ARN) of a Map Run. This field is returned only if mapRunArn was * specified in the ListExecutions API action. If stateMachineArn was specified in * ListExecutions, the mapRunArn isn't returned. *

* * @param mapRunArn * The Amazon Resource Name (ARN) of a Map Run. This field is returned only if mapRunArn was * specified in the ListExecutions API action. If stateMachineArn was specified * in ListExecutions, the mapRunArn isn't returned. * @return Returns a reference to this object so that method calls can be chained together. */ Builder mapRunArn(String mapRunArn); /** *

* The total number of items processed in a child workflow execution. This field is returned only if * mapRunArn was specified in the ListExecutions API action. If * stateMachineArn was specified in ListExecutions, the itemCount field * isn't returned. *

* * @param itemCount * The total number of items processed in a child workflow execution. This field is returned only if * mapRunArn was specified in the ListExecutions API action. If * stateMachineArn was specified in ListExecutions, the itemCount * field isn't returned. * @return Returns a reference to this object so that method calls can be chained together. */ Builder itemCount(Integer itemCount); /** *

* The Amazon Resource Name (ARN) of the state machine version associated with the execution. *

*

* If the state machine execution was started with an unqualified ARN, it returns null. *

*

* If the execution was started using a stateMachineAliasArn, both the * stateMachineAliasArn and stateMachineVersionArn parameters contain the respective * values. *

* * @param stateMachineVersionArn * The Amazon Resource Name (ARN) of the state machine version associated with the execution.

*

* If the state machine execution was started with an unqualified ARN, it returns null. *

*

* If the execution was started using a stateMachineAliasArn, both the * stateMachineAliasArn and stateMachineVersionArn parameters contain the * respective values. * @return Returns a reference to this object so that method calls can be chained together. */ Builder stateMachineVersionArn(String stateMachineVersionArn); /** *

* The Amazon Resource Name (ARN) of the state machine alias used to start an execution. *

*

* If the state machine execution was started with an unqualified ARN or a version ARN, it returns null. *

* * @param stateMachineAliasArn * The Amazon Resource Name (ARN) of the state machine alias used to start an execution.

*

* If the state machine execution was started with an unqualified ARN or a version ARN, it returns null. * @return Returns a reference to this object so that method calls can be chained together. */ Builder stateMachineAliasArn(String stateMachineAliasArn); /** *

* The number of times you've redriven an execution. If you have not yet redriven an execution, the * redriveCount is 0. This count is only updated when you successfully redrive an execution. *

* * @param redriveCount * The number of times you've redriven an execution. If you have not yet redriven an execution, the * redriveCount is 0. This count is only updated when you successfully redrive an execution. * @return Returns a reference to this object so that method calls can be chained together. */ Builder redriveCount(Integer redriveCount); /** *

* The date the execution was last redriven. *

* * @param redriveDate * The date the execution was last redriven. * @return Returns a reference to this object so that method calls can be chained together. */ Builder redriveDate(Instant redriveDate); } static final class BuilderImpl implements Builder { private String executionArn; private String stateMachineArn; private String name; private String status; private Instant startDate; private Instant stopDate; private String mapRunArn; private Integer itemCount; private String stateMachineVersionArn; private String stateMachineAliasArn; private Integer redriveCount; private Instant redriveDate; private BuilderImpl() { } private BuilderImpl(ExecutionListItem model) { executionArn(model.executionArn); stateMachineArn(model.stateMachineArn); name(model.name); status(model.status); startDate(model.startDate); stopDate(model.stopDate); mapRunArn(model.mapRunArn); itemCount(model.itemCount); stateMachineVersionArn(model.stateMachineVersionArn); stateMachineAliasArn(model.stateMachineAliasArn); redriveCount(model.redriveCount); redriveDate(model.redriveDate); } public final String getExecutionArn() { return executionArn; } public final void setExecutionArn(String executionArn) { this.executionArn = executionArn; } @Override public final Builder executionArn(String executionArn) { this.executionArn = executionArn; return this; } public final String getStateMachineArn() { return stateMachineArn; } public final void setStateMachineArn(String stateMachineArn) { this.stateMachineArn = stateMachineArn; } @Override public final Builder stateMachineArn(String stateMachineArn) { this.stateMachineArn = stateMachineArn; return this; } public final String getName() { return name; } public final void setName(String name) { this.name = name; } @Override public final Builder name(String name) { this.name = name; return this; } public final String getStatus() { return status; } public final void setStatus(String status) { this.status = status; } @Override public final Builder status(String status) { this.status = status; return this; } @Override public final Builder status(ExecutionStatus status) { this.status(status == null ? null : status.toString()); return this; } public final Instant getStartDate() { return startDate; } public final void setStartDate(Instant startDate) { this.startDate = startDate; } @Override public final Builder startDate(Instant startDate) { this.startDate = startDate; return this; } public final Instant getStopDate() { return stopDate; } public final void setStopDate(Instant stopDate) { this.stopDate = stopDate; } @Override public final Builder stopDate(Instant stopDate) { this.stopDate = stopDate; return this; } public final String getMapRunArn() { return mapRunArn; } public final void setMapRunArn(String mapRunArn) { this.mapRunArn = mapRunArn; } @Override public final Builder mapRunArn(String mapRunArn) { this.mapRunArn = mapRunArn; return this; } public final Integer getItemCount() { return itemCount; } public final void setItemCount(Integer itemCount) { this.itemCount = itemCount; } @Override public final Builder itemCount(Integer itemCount) { this.itemCount = itemCount; return this; } public final String getStateMachineVersionArn() { return stateMachineVersionArn; } public final void setStateMachineVersionArn(String stateMachineVersionArn) { this.stateMachineVersionArn = stateMachineVersionArn; } @Override public final Builder stateMachineVersionArn(String stateMachineVersionArn) { this.stateMachineVersionArn = stateMachineVersionArn; return this; } public final String getStateMachineAliasArn() { return stateMachineAliasArn; } public final void setStateMachineAliasArn(String stateMachineAliasArn) { this.stateMachineAliasArn = stateMachineAliasArn; } @Override public final Builder stateMachineAliasArn(String stateMachineAliasArn) { this.stateMachineAliasArn = stateMachineAliasArn; return this; } public final Integer getRedriveCount() { return redriveCount; } public final void setRedriveCount(Integer redriveCount) { this.redriveCount = redriveCount; } @Override public final Builder redriveCount(Integer redriveCount) { this.redriveCount = redriveCount; return this; } public final Instant getRedriveDate() { return redriveDate; } public final void setRedriveDate(Instant redriveDate) { this.redriveDate = redriveDate; } @Override public final Builder redriveDate(Instant redriveDate) { this.redriveDate = redriveDate; return this; } @Override public ExecutionListItem build() { return new ExecutionListItem(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy