com.pulumi.aws.transfer.outputs.WorkflowOnExceptionStepDeleteStepDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.transfer.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class WorkflowOnExceptionStepDeleteStepDetails {
/**
* @return The name of the step, used as an identifier.
*
*/
private @Nullable String name;
/**
* @return Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow. Enter ${previous.file} to use the previous file as the input. In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value. Enter ${original.file} to use the originally-uploaded file location as input for this step.
*
*/
private @Nullable String sourceFileLocation;
private WorkflowOnExceptionStepDeleteStepDetails() {}
/**
* @return The name of the step, used as an identifier.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
/**
* @return Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow. Enter ${previous.file} to use the previous file as the input. In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value. Enter ${original.file} to use the originally-uploaded file location as input for this step.
*
*/
public Optional sourceFileLocation() {
return Optional.ofNullable(this.sourceFileLocation);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WorkflowOnExceptionStepDeleteStepDetails defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String name;
private @Nullable String sourceFileLocation;
public Builder() {}
public Builder(WorkflowOnExceptionStepDeleteStepDetails defaults) {
Objects.requireNonNull(defaults);
this.name = defaults.name;
this.sourceFileLocation = defaults.sourceFileLocation;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
@CustomType.Setter
public Builder sourceFileLocation(@Nullable String sourceFileLocation) {
this.sourceFileLocation = sourceFileLocation;
return this;
}
public WorkflowOnExceptionStepDeleteStepDetails build() {
final var _resultValue = new WorkflowOnExceptionStepDeleteStepDetails();
_resultValue.name = name;
_resultValue.sourceFileLocation = sourceFileLocation;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy