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

com.pulumi.aws.transfer.inputs.WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs Maven / Gradle / Ivy

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

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs extends com.pulumi.resources.ResourceArgs {

    public static final WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs Empty = new WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs();

    /**
     * The ID of the file system, assigned by Amazon EFS.
     * 
     */
    @Import(name="fileSystemId")
    private @Nullable Output fileSystemId;

    /**
     * @return The ID of the file system, assigned by Amazon EFS.
     * 
     */
    public Optional> fileSystemId() {
        return Optional.ofNullable(this.fileSystemId);
    }

    /**
     * The pathname for the folder being used by a workflow.
     * 
     */
    @Import(name="path")
    private @Nullable Output path;

    /**
     * @return The pathname for the folder being used by a workflow.
     * 
     */
    public Optional> path() {
        return Optional.ofNullable(this.path);
    }

    private WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs() {}

    private WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs(WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs $) {
        this.fileSystemId = $.fileSystemId;
        this.path = $.path;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs $;

        public Builder() {
            $ = new WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs();
        }

        public Builder(WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs defaults) {
            $ = new WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param fileSystemId The ID of the file system, assigned by Amazon EFS.
         * 
         * @return builder
         * 
         */
        public Builder fileSystemId(@Nullable Output fileSystemId) {
            $.fileSystemId = fileSystemId;
            return this;
        }

        /**
         * @param fileSystemId The ID of the file system, assigned by Amazon EFS.
         * 
         * @return builder
         * 
         */
        public Builder fileSystemId(String fileSystemId) {
            return fileSystemId(Output.of(fileSystemId));
        }

        /**
         * @param path The pathname for the folder being used by a workflow.
         * 
         * @return builder
         * 
         */
        public Builder path(@Nullable Output path) {
            $.path = path;
            return this;
        }

        /**
         * @param path The pathname for the folder being used by a workflow.
         * 
         * @return builder
         * 
         */
        public Builder path(String path) {
            return path(Output.of(path));
        }

        public WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy