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

com.pulumi.aws.appflow.inputs.FlowSourceFlowConfigSourceConnectorPropertiesVeevaArgs 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 com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final FlowSourceFlowConfigSourceConnectorPropertiesVeevaArgs Empty = new FlowSourceFlowConfigSourceConnectorPropertiesVeevaArgs();

    /**
     * Document type specified in the Veeva document extract flow.
     * 
     */
    @Import(name="documentType")
    private @Nullable Output documentType;

    /**
     * @return Document type specified in the Veeva document extract flow.
     * 
     */
    public Optional> documentType() {
        return Optional.ofNullable(this.documentType);
    }

    /**
     * Boolean value to include All Versions of files in Veeva document extract flow.
     * 
     */
    @Import(name="includeAllVersions")
    private @Nullable Output includeAllVersions;

    /**
     * @return Boolean value to include All Versions of files in Veeva document extract flow.
     * 
     */
    public Optional> includeAllVersions() {
        return Optional.ofNullable(this.includeAllVersions);
    }

    /**
     * Boolean value to include file renditions in Veeva document extract flow.
     * 
     */
    @Import(name="includeRenditions")
    private @Nullable Output includeRenditions;

    /**
     * @return Boolean value to include file renditions in Veeva document extract flow.
     * 
     */
    public Optional> includeRenditions() {
        return Optional.ofNullable(this.includeRenditions);
    }

    /**
     * Boolean value to include source files in Veeva document extract flow.
     * 
     */
    @Import(name="includeSourceFiles")
    private @Nullable Output includeSourceFiles;

    /**
     * @return Boolean value to include source files in Veeva document extract flow.
     * 
     */
    public Optional> includeSourceFiles() {
        return Optional.ofNullable(this.includeSourceFiles);
    }

    @Import(name="object", required=true)
    private Output object;

    public Output object() {
        return this.object;
    }

    private FlowSourceFlowConfigSourceConnectorPropertiesVeevaArgs() {}

    private FlowSourceFlowConfigSourceConnectorPropertiesVeevaArgs(FlowSourceFlowConfigSourceConnectorPropertiesVeevaArgs $) {
        this.documentType = $.documentType;
        this.includeAllVersions = $.includeAllVersions;
        this.includeRenditions = $.includeRenditions;
        this.includeSourceFiles = $.includeSourceFiles;
        this.object = $.object;
    }

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

    public static final class Builder {
        private FlowSourceFlowConfigSourceConnectorPropertiesVeevaArgs $;

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

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

        /**
         * @param documentType Document type specified in the Veeva document extract flow.
         * 
         * @return builder
         * 
         */
        public Builder documentType(@Nullable Output documentType) {
            $.documentType = documentType;
            return this;
        }

        /**
         * @param documentType Document type specified in the Veeva document extract flow.
         * 
         * @return builder
         * 
         */
        public Builder documentType(String documentType) {
            return documentType(Output.of(documentType));
        }

        /**
         * @param includeAllVersions Boolean value to include All Versions of files in Veeva document extract flow.
         * 
         * @return builder
         * 
         */
        public Builder includeAllVersions(@Nullable Output includeAllVersions) {
            $.includeAllVersions = includeAllVersions;
            return this;
        }

        /**
         * @param includeAllVersions Boolean value to include All Versions of files in Veeva document extract flow.
         * 
         * @return builder
         * 
         */
        public Builder includeAllVersions(Boolean includeAllVersions) {
            return includeAllVersions(Output.of(includeAllVersions));
        }

        /**
         * @param includeRenditions Boolean value to include file renditions in Veeva document extract flow.
         * 
         * @return builder
         * 
         */
        public Builder includeRenditions(@Nullable Output includeRenditions) {
            $.includeRenditions = includeRenditions;
            return this;
        }

        /**
         * @param includeRenditions Boolean value to include file renditions in Veeva document extract flow.
         * 
         * @return builder
         * 
         */
        public Builder includeRenditions(Boolean includeRenditions) {
            return includeRenditions(Output.of(includeRenditions));
        }

        /**
         * @param includeSourceFiles Boolean value to include source files in Veeva document extract flow.
         * 
         * @return builder
         * 
         */
        public Builder includeSourceFiles(@Nullable Output includeSourceFiles) {
            $.includeSourceFiles = includeSourceFiles;
            return this;
        }

        /**
         * @param includeSourceFiles Boolean value to include source files in Veeva document extract flow.
         * 
         * @return builder
         * 
         */
        public Builder includeSourceFiles(Boolean includeSourceFiles) {
            return includeSourceFiles(Output.of(includeSourceFiles));
        }

        public Builder object(Output object) {
            $.object = object;
            return this;
        }

        public Builder object(String object) {
            return object(Output.of(object));
        }

        public FlowSourceFlowConfigSourceConnectorPropertiesVeevaArgs build() {
            if ($.object == null) {
                throw new MissingRequiredPropertyException("FlowSourceFlowConfigSourceConnectorPropertiesVeevaArgs", "object");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy