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

com.pulumi.aws.appflow.inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfigArgs 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.appflow.inputs;

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


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

    public static final FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfigArgs Empty = new FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfigArgs();

    /**
     * Name of the Amazon S3 bucket.
     * 
     */
    @Import(name="bucketName")
    private @Nullable Output bucketName;

    /**
     * @return Name of the Amazon S3 bucket.
     * 
     */
    public Optional> bucketName() {
        return Optional.ofNullable(this.bucketName);
    }

    /**
     * Amazon S3 bucket prefix.
     * 
     */
    @Import(name="bucketPrefix")
    private @Nullable Output bucketPrefix;

    /**
     * @return Amazon S3 bucket prefix.
     * 
     */
    public Optional> bucketPrefix() {
        return Optional.ofNullable(this.bucketPrefix);
    }

    /**
     * If the flow should fail after the first instance of a failure when attempting to place data in the destination.
     * 
     */
    @Import(name="failOnFirstDestinationError")
    private @Nullable Output failOnFirstDestinationError;

    /**
     * @return If the flow should fail after the first instance of a failure when attempting to place data in the destination.
     * 
     */
    public Optional> failOnFirstDestinationError() {
        return Optional.ofNullable(this.failOnFirstDestinationError);
    }

    private FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfigArgs() {}

    private FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfigArgs(FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfigArgs $) {
        this.bucketName = $.bucketName;
        this.bucketPrefix = $.bucketPrefix;
        this.failOnFirstDestinationError = $.failOnFirstDestinationError;
    }

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

    public static final class Builder {
        private FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfigArgs $;

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

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

        /**
         * @param bucketName Name of the Amazon S3 bucket.
         * 
         * @return builder
         * 
         */
        public Builder bucketName(@Nullable Output bucketName) {
            $.bucketName = bucketName;
            return this;
        }

        /**
         * @param bucketName Name of the Amazon S3 bucket.
         * 
         * @return builder
         * 
         */
        public Builder bucketName(String bucketName) {
            return bucketName(Output.of(bucketName));
        }

        /**
         * @param bucketPrefix Amazon S3 bucket prefix.
         * 
         * @return builder
         * 
         */
        public Builder bucketPrefix(@Nullable Output bucketPrefix) {
            $.bucketPrefix = bucketPrefix;
            return this;
        }

        /**
         * @param bucketPrefix Amazon S3 bucket prefix.
         * 
         * @return builder
         * 
         */
        public Builder bucketPrefix(String bucketPrefix) {
            return bucketPrefix(Output.of(bucketPrefix));
        }

        /**
         * @param failOnFirstDestinationError If the flow should fail after the first instance of a failure when attempting to place data in the destination.
         * 
         * @return builder
         * 
         */
        public Builder failOnFirstDestinationError(@Nullable Output failOnFirstDestinationError) {
            $.failOnFirstDestinationError = failOnFirstDestinationError;
            return this;
        }

        /**
         * @param failOnFirstDestinationError If the flow should fail after the first instance of a failure when attempting to place data in the destination.
         * 
         * @return builder
         * 
         */
        public Builder failOnFirstDestinationError(Boolean failOnFirstDestinationError) {
            return failOnFirstDestinationError(Output.of(failOnFirstDestinationError));
        }

        public FlowDestinationFlowConfigDestinationConnectorPropertiesHoneycodeErrorHandlingConfigArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy