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

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

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

There is a newer version: 6.60.0-alpha.1731982519
Show newest version
// *** 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 WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationS3FileLocationArgs extends com.pulumi.resources.ResourceArgs {

    public static final WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationS3FileLocationArgs Empty = new WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationS3FileLocationArgs();

    /**
     * Specifies the S3 bucket for the customer input file.
     * 
     */
    @Import(name="bucket")
    private @Nullable Output bucket;

    /**
     * @return Specifies the S3 bucket for the customer input file.
     * 
     */
    public Optional> bucket() {
        return Optional.ofNullable(this.bucket);
    }

    /**
     * The name assigned to the file when it was created in S3. You use the object key to retrieve the object.
     * 
     */
    @Import(name="key")
    private @Nullable Output key;

    /**
     * @return The name assigned to the file when it was created in S3. You use the object key to retrieve the object.
     * 
     */
    public Optional> key() {
        return Optional.ofNullable(this.key);
    }

    private WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationS3FileLocationArgs() {}

    private WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationS3FileLocationArgs(WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationS3FileLocationArgs $) {
        this.bucket = $.bucket;
        this.key = $.key;
    }

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

    public static final class Builder {
        private WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationS3FileLocationArgs $;

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

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

        /**
         * @param bucket Specifies the S3 bucket for the customer input file.
         * 
         * @return builder
         * 
         */
        public Builder bucket(@Nullable Output bucket) {
            $.bucket = bucket;
            return this;
        }

        /**
         * @param bucket Specifies the S3 bucket for the customer input file.
         * 
         * @return builder
         * 
         */
        public Builder bucket(String bucket) {
            return bucket(Output.of(bucket));
        }

        /**
         * @param key The name assigned to the file when it was created in S3. You use the object key to retrieve the object.
         * 
         * @return builder
         * 
         */
        public Builder key(@Nullable Output key) {
            $.key = key;
            return this;
        }

        /**
         * @param key The name assigned to the file when it was created in S3. You use the object key to retrieve the object.
         * 
         * @return builder
         * 
         */
        public Builder key(String key) {
            return key(Output.of(key));
        }

        public WorkflowOnExceptionStepDecryptStepDetailsDestinationFileLocationS3FileLocationArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy