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

com.pulumi.aws.kendra.inputs.DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgs 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.kendra.inputs;

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


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

    public static final DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgs Empty = new DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgs();

    /**
     * A date expressed as an ISO 8601 string. It is important for the time zone to be included in the ISO 8601 date-time format. As of this writing only UTC is supported. For example, `2012-03-25T12:30:10+00:00`.
     * 
     */
    @Import(name="dateValue")
    private @Nullable Output dateValue;

    /**
     * @return A date expressed as an ISO 8601 string. It is important for the time zone to be included in the ISO 8601 date-time format. As of this writing only UTC is supported. For example, `2012-03-25T12:30:10+00:00`.
     * 
     */
    public Optional> dateValue() {
        return Optional.ofNullable(this.dateValue);
    }

    /**
     * A long integer value.
     * 
     */
    @Import(name="longValue")
    private @Nullable Output longValue;

    /**
     * @return A long integer value.
     * 
     */
    public Optional> longValue() {
        return Optional.ofNullable(this.longValue);
    }

    /**
     * A list of strings.
     * 
     */
    @Import(name="stringListValues")
    private @Nullable Output> stringListValues;

    /**
     * @return A list of strings.
     * 
     */
    public Optional>> stringListValues() {
        return Optional.ofNullable(this.stringListValues);
    }

    @Import(name="stringValue")
    private @Nullable Output stringValue;

    public Optional> stringValue() {
        return Optional.ofNullable(this.stringValue);
    }

    private DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgs() {}

    private DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgs(DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgs $) {
        this.dateValue = $.dateValue;
        this.longValue = $.longValue;
        this.stringListValues = $.stringListValues;
        this.stringValue = $.stringValue;
    }

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

    public static final class Builder {
        private DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgs $;

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

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

        /**
         * @param dateValue A date expressed as an ISO 8601 string. It is important for the time zone to be included in the ISO 8601 date-time format. As of this writing only UTC is supported. For example, `2012-03-25T12:30:10+00:00`.
         * 
         * @return builder
         * 
         */
        public Builder dateValue(@Nullable Output dateValue) {
            $.dateValue = dateValue;
            return this;
        }

        /**
         * @param dateValue A date expressed as an ISO 8601 string. It is important for the time zone to be included in the ISO 8601 date-time format. As of this writing only UTC is supported. For example, `2012-03-25T12:30:10+00:00`.
         * 
         * @return builder
         * 
         */
        public Builder dateValue(String dateValue) {
            return dateValue(Output.of(dateValue));
        }

        /**
         * @param longValue A long integer value.
         * 
         * @return builder
         * 
         */
        public Builder longValue(@Nullable Output longValue) {
            $.longValue = longValue;
            return this;
        }

        /**
         * @param longValue A long integer value.
         * 
         * @return builder
         * 
         */
        public Builder longValue(Integer longValue) {
            return longValue(Output.of(longValue));
        }

        /**
         * @param stringListValues A list of strings.
         * 
         * @return builder
         * 
         */
        public Builder stringListValues(@Nullable Output> stringListValues) {
            $.stringListValues = stringListValues;
            return this;
        }

        /**
         * @param stringListValues A list of strings.
         * 
         * @return builder
         * 
         */
        public Builder stringListValues(List stringListValues) {
            return stringListValues(Output.of(stringListValues));
        }

        /**
         * @param stringListValues A list of strings.
         * 
         * @return builder
         * 
         */
        public Builder stringListValues(String... stringListValues) {
            return stringListValues(List.of(stringListValues));
        }

        public Builder stringValue(@Nullable Output stringValue) {
            $.stringValue = stringValue;
            return this;
        }

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

        public DataSourceCustomDocumentEnrichmentConfigurationPreExtractionHookConfigurationInvocationConditionConditionOnValueArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy