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

com.pulumi.aws.customerprofiles.inputs.DomainRuleBasedMatchingExportingConfigS3ExportingArgs 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.customerprofiles.inputs;

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


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

    public static final DomainRuleBasedMatchingExportingConfigS3ExportingArgs Empty = new DomainRuleBasedMatchingExportingConfigS3ExportingArgs();

    /**
     * The name of the S3 bucket where Identity Resolution Jobs write result files.
     * 
     */
    @Import(name="s3BucketName", required=true)
    private Output s3BucketName;

    /**
     * @return The name of the S3 bucket where Identity Resolution Jobs write result files.
     * 
     */
    public Output s3BucketName() {
        return this.s3BucketName;
    }

    /**
     * The S3 key name of the location where Identity Resolution Jobs write result files.
     * 
     */
    @Import(name="s3KeyName")
    private @Nullable Output s3KeyName;

    /**
     * @return The S3 key name of the location where Identity Resolution Jobs write result files.
     * 
     */
    public Optional> s3KeyName() {
        return Optional.ofNullable(this.s3KeyName);
    }

    private DomainRuleBasedMatchingExportingConfigS3ExportingArgs() {}

    private DomainRuleBasedMatchingExportingConfigS3ExportingArgs(DomainRuleBasedMatchingExportingConfigS3ExportingArgs $) {
        this.s3BucketName = $.s3BucketName;
        this.s3KeyName = $.s3KeyName;
    }

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

    public static final class Builder {
        private DomainRuleBasedMatchingExportingConfigS3ExportingArgs $;

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

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

        /**
         * @param s3BucketName The name of the S3 bucket where Identity Resolution Jobs write result files.
         * 
         * @return builder
         * 
         */
        public Builder s3BucketName(Output s3BucketName) {
            $.s3BucketName = s3BucketName;
            return this;
        }

        /**
         * @param s3BucketName The name of the S3 bucket where Identity Resolution Jobs write result files.
         * 
         * @return builder
         * 
         */
        public Builder s3BucketName(String s3BucketName) {
            return s3BucketName(Output.of(s3BucketName));
        }

        /**
         * @param s3KeyName The S3 key name of the location where Identity Resolution Jobs write result files.
         * 
         * @return builder
         * 
         */
        public Builder s3KeyName(@Nullable Output s3KeyName) {
            $.s3KeyName = s3KeyName;
            return this;
        }

        /**
         * @param s3KeyName The S3 key name of the location where Identity Resolution Jobs write result files.
         * 
         * @return builder
         * 
         */
        public Builder s3KeyName(String s3KeyName) {
            return s3KeyName(Output.of(s3KeyName));
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy